@charset "UTF-8";
/* ---------------------------------

 Page CSS - 各ページ用CSS

 --------------------------------- */
/* ---------------------------------
 page_head_cover
--------------------------------- */
.page_head_cover{
  width: 100%;
  height: 600px;
  position: relative;
}
.page_head_cover img{
  width: 100%;
  height: 600px;
  object-fit: cover;
  opacity: 0.7;
}
.page_head_cover .page_title{
  width: 90%;
  position: absolute;
  bottom: 10%;
  left: 5%;
}
.page_head_cover .page_title .page_title_en{
  font-size: 5.0rem;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 10px;
}
.page_head_cover .page_title h1.page_title_h1{
  font-size: 1.5rem;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
}
.page_head_cover .page_title h1.page_title_h1::before{
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  margin-right: 15px;
}
@media screen and (max-width: 896px) {
  .page_head_cover{
    height: 300px;
  }
  .page_head_cover img{
    height: 300px;
  }
  .page_head_cover .page_title{
    width: 94%;
    position: absolute;
    bottom: 3%;
    left: 3%;
  }
  .page_head_cover .page_title .page_title_en{
    font-size: 2.5rem;
  }
  .page_head_cover .page_title h1.page_title_h1{
    font-size: 1.0rem;
  }
}

/* ---------------------------------
 page_head_namecover #部屋ページの冒頭部分
--------------------------------- */
.page_head_namecover{
  width: 100%;
  margin-top: 200px;
}
.page_head_namecover .page_head_name_note{
  width: 80%;
  margin: 0 auto;
}
.page_head_namecover .page_head_name_note .page_head_name_title_en{
  font-size: 5.0rem;
  margin-bottom: 10px;
  line-height: 1.0;
}
.page_head_namecover .page_head_name_note .page_head_name_h1{
  font-size: 1.5rem;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
}
.page_head_namecover .page_head_name_note .page_head_name_h1::before{
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  margin-right: 15px;
}
.page_head_namecover .page_head_namecover_breadcrumb{
  width: 100%;
  margin: 20px 0;
}
.page_head_namecover .page_head_name_note .page_head_name_h2{
  font-size: 2.0rem;
  margin: 50px 0 30px 0;
  width: 100%;
}
.page_head_namecover .page_head_name_img{
  width: 90%;
  margin: 50px 0 0 10%;
}

@media screen and (max-width: 896px) {
  .page_head_namecover{
    margin-top: 100px;
  }
  .page_head_namecover .page_head_name_note{
    width: 94%;
    margin: 0 auto;
  }
  .page_head_namecover .page_head_name_note .page_head_name_title_en{
    font-size: 3.5rem;
  }
  .page_head_namecover .page_head_name_note .page_head_name_h1{
    font-size: 1.2rem;
    margin-bottom: 20px;
    width: 100%;
  }
  .page_head_namecover .page_head_name_note .page_head_name_h2{
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
  }
  .page_head_namecover .page_head_name_img{
    width: 97%;
    margin: 30px 0 0 3%;
  }
}
/* パララックス効果 */
.parallax_head_section{
  width: 100%;
  margin: 50px 0 0 0;
  height: 50vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax_head_bg_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.parallax_head_img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 896px) {
  .parallax_head_section{
    margin: 0;
    height: 30vh;
  }
}

/* ---------------------------------
 in_page_link
--------------------------------- */
.in_page_link{
  width: 80%;
  margin: 100px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.in_page_link a.in_page_link_btn{
  display: block;
  width: 31%;
  margin: 0 1% 15px 1%;
  color: #fff;
  padding: 15px;
  position: relative;
  border-bottom: 1px solid #fff;
}
.in_page_link a.in_page_link_btn.w3_btn{
  width: 31%; /* 横に3つ並ぶ */
}
.in_page_link a.in_page_link_btn.w4_btn{
  width: 23%; /* 横に4つ並ぶ */
}
.in_page_link a.in_page_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 #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  transition: 0.3s;
}
.in_page_link a.in_page_link_btn:hover {
  opacity: 1;
}
.in_page_link a.in_page_link_btn:hover::before {
  top: 7px;
}
@media screen and (max-width: 896px) {
  .in_page_link{
    width: 90%;
    margin: 50px auto 50px auto;
    justify-content:space-between;
  }
  .in_page_link a.in_page_link_btn{
    margin-bottom: 10px;
    margin: 0 0 10px 0;
  }
  .in_page_link a.in_page_link_btn.w3_btn{
    width: 100%;
  }
  .in_page_link a.in_page_link_btn.w4_btn{
    width: 100%;
  }
  /* SPのときは横2つ並び */
  .in_page_link a.in_page_link_btn.sp_w2_btn{
    width: 48%;
    font-size: 14px;
  }
}

/* ---------------------------------
 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;
}
@media screen and (max-width: 896px) {
  .page_contents{
    padding: 50px 0;
  }
  .page_contents_h2{
    font-size: 1.3rem;
  }
}

/* ---------------------------------
 page_beginning #お部屋
--------------------------------- */
.page_beginning{
  width: 100%;
  margin: 100px 0;
}
.page_beginning .page_beginning_inner{
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .page_beginning{
    margin: 50px 0;
  }
  .page_beginning .page_beginning_inner{
    width: 94%;
  }
}

/* ---------------------------------
 room #お部屋
--------------------------------- */
/* room_photo ------ */
.room_photo{
  width: 100%;
  padding-top: 100px;
  margin: 0 auto 50px auto;
}
.room_photo .room_photo_slider{
  width: 100%;
}
.room-swiper-prev,
.room-swiper-next {
  --swiper-navigation-color: #fff; 
}
@media screen and (max-width: 896px) {
  .room-swiper-prev,
  .room-swiper-next {
    --swiper-navigation-size: 20px;
  }
}
/* room_about ------ */
.room_about{
  width: 94%;
  max-width: 1400px;
  margin: 70px auto 100px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.room_about .room_about_note{
  width: 35%;
}
.room_about .room_about_data{
  width: 60%;
}
.room_about .room_about_note h3.room_name{
  width: 100%;
  margin-bottom: 10px;
  font-size: 2.0rem;
}
.room_about .room_about_note .room_name_en{
  width: 100%;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.room_about .room_about_data .room_about_data_box{
  width: 100%;
  padding: 30px;
  border: 1px solid #fff;
}
.room_about .room_about_data table.room_about_table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px 8px;
}
.room_about .room_about_data table.room_about_table th{
  width: 20%;
  text-align: left;
  vertical-align: top;
}
.room_about .room_about_data table.room_about_table td{
  width: 80%;
}
@media screen and (max-width: 896px) {
  .room_about{
    margin: 35px auto;
  }
  .room_about .room_about_note{
    width: 100%;
  }
  .room_about .room_about_data{
    width: 100%;
    margin-top: 20px;
  }
  .room_about .room_about_data .room_about_data_box{
    padding: 15px;
  }
  .room_about .room_about_note h3.room_name{
    font-size: 1.5rem;
  }
  .room_about .room_about_data table.room_about_table th{
    width: 40%;
  }
  .room_about .room_about_data table.room_about_table td{
    width: 60%;
  }
}

/* room_info ------ */
.room_info{
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  color: #0E2A47;
  padding: 150px 0;
}
.room_info .room_info_inner{
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.room_info_title_en{
  text-align: center;
  font-size: 4.0rem;
  line-height: 1.0;
  margin-bottom: 10px;
}
h3.room_info_title{
  width: 100%;
  text-align: center;
}
/* info_item --- */
.info_item{
  width: 100%;
  margin: 50px 0;
}
.info_item .info_item_slider{
  width: 100%;
}
.info_item_box_note{
  width: 100%;
  padding: 15px;
}
.info_item_box_note h4{
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.info-item-prev,
.info-item-next {
  --swiper-navigation-color: #fff; 
  --swiper-navigation-size: 30px;
}
@media screen and (max-width: 896px) {
  .info-item-prev,
  .info-item-next {
    top: 120px !important;
  }
}
/* info_table_area --- */
.info_table_area{
  width: 100%;
  margin: 50px 0;
}
@media screen and (max-width: 896px) {
  .info_table_area{
    margin: 0 0 25px 0;
  }
}
/* info_equipment --- */
.info_equipment{
  width: 100%;
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.info_equipment .info_equipment_list{
  width: 23%;
  margin: 0 1% 20px 1%;
  background-color: #0E2A47;
}
.info_equipment .info_equipment_list .info_equipment_img{
  width: 100%;
  margin: 0;
}
.info_equipment .info_equipment_list .info_equipment_h4{
  width: 100%;
  padding: 10px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 896px) {
  .info_equipment{
    margin: 25px 0;
    justify-content:space-between;
  }
  .info_equipment .info_equipment_list{
    width: 49%;
    margin: 0 0 20px 0;
  }
}

/* ---------------------------------
 meal #お食事
--------------------------------- */
.meal_list{
  width: 100%;
  padding: 100px 0 100px 0;
}
.meal_list.meal_list_dark{
  color: #0E2A47;
}
.meal_list .meal_list_inner{
  width: 80%;
  margin: 0 auto;
}
.meal_box{
  width: 100%;
  margin: 50px 0 100px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.meal_box .meal_box_photo{
  width: 60%;
}
.meal_photo_slider_thumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
}
.meal_photo_slider_thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.meal_box .meal_box_note{
  width: 35%;
}
.meal_box h3.meal_title{
  width: 100%;
  margin-bottom: 40px;
  font-size: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
}
.meal_box h3.meal_title.meal_title_dark{
  border-bottom: 2px solid #0E2A47;
}
.meal_box .meal_box_supplement{
  width: 100%;
  margin-top: 70px;
  padding: 40px;
  border: 1px solid #fff;
}
.meal_box .meal_box_supplement h4{
  width: 100%;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.meal_box .meal_box_supplement span.meal_box_supplement_rent{
  display: inline-block;
  background-color: #A0BAD5;
  color: #0E2A47;
  margin-right: 10px;
  border-radius: 5px;
  padding: 1px 10px;
}
.meal_box .meal_box_supplement .meal_box_supplement_price{
  margin-bottom: 15px;
}
.meal_box .meal_box_supplement .meal_box_supplement_price span{
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1024px) {
  .meal_box .meal_box_photo{
    width: 100%;
  }
  .meal_box .meal_box_note{
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 896px) {
  .meal_list{
    padding: 50px 0;
  }
  .meal_list .meal_list_inner{
    width: 94%;
  }
  .meal_box{
    margin: 25px 0 50px 0;
  }
  .meal_box h3.meal_title{
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  .meal_box .meal_box_supplement{
    margin-top: 30px;
    padding: 20px;
  }
  .meal_box .meal_box_supplement h4{
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  .meal_box .meal_box_supplement span.meal_box_supplement_rent{
    margin-right: 0;
    margin-bottom: 10px;
  }
  .meal_box .meal_box_supplement .meal_box_supplement_price{
    margin-bottom: 10px;
  }  
}
/* meal_cakejp --- */
.meal_cakejp{
  width: 100%;
  background-color: #fff;
  color: #0E2A47;
}
.meal_cakejp .meal_cakejp_box{
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content:space-between;
}
.meal_cakejp .meal_cakejp_box .meal_cakejp_bnr{
  width: 60%;
}
.meal_cakejp .meal_cakejp_box .meal_cakejp_note{
  width: 35%;
}
@media screen and (max-width: 896px) {
  .meal_cakejp .meal_cakejp_box .meal_cakejp_bnr{
    width: 100%;
  }
  .meal_cakejp .meal_cakejp_box .meal_cakejp_note{
    width: 100%;
  }
}

/* ---------------------------------
 dog #わんちゃんサービス
--------------------------------- */
/* dog_box */
.dog_box{
  width: 100%;
  padding: 100px 0 150px 0;
}
.dog_box.bg_lightmode{
  background-color: #173452;
}
.dog_box .dog_box_inner{
  width: 80%;
  margin: 0 auto;
}
.dog_box h3.dog_box_h3{
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.7rem;
}
.dog_box .dog_box_h3_en{
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}
.dog_box_img{
  width: 100%;
  height: 600px;
}
.dog_box_img img{
  width: 100%;
  height: 600px;
  object-fit: cover;
}
p.dog_box_img_note{
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 896px) {
  .dog_box{
    padding: 50px 0;
  }
  .dog_box .dog_box_inner{
    width: 94%;
  }
  .dog_box h3.dog_box_h3{
    font-size: 1.3rem;
  }
  .dog_box .dog_box_h3_en{
    margin-bottom: 25px;
  }
  .dog_box_img{
    height: 30vh;
  }
  .dog_box_img img{
    height: 30vh;
  }
}
/* dog_list_area ---- */
.dog_list_area{
  width: 100%;
  margin-top: 100px;
}
.dog_list_h3{
  width: 100%;
  margin-bottom: 80px;
  position: relative;
  text-align: center;
  font-size: 1.7rem;
}
.dog_list_h3::before{
  background-color: #A0BAD5;
  bottom: -20px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px;
}
.dog_list_box{
  width: 100%;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content:space-between;
}
.dog_list_box .dog_list_box_item{
  width: 47%;
  margin-bottom: 70px;
}
.dog_list_box .dog_list_box_item .dog_list_box_img{
  width: 100%;
  margin-bottom: 20px;
}
.dog_list_box .dog_list_box_item .dog_list_box_h4{
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.dog_list_box .dog_list_box_item .dog_list_box_note{
  width: 100%;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #A0BAD5;
}
.dog_list_box .dog_list_box_item .dog_list_box_annotation{
  width: 100%;
  margin-top: 20px;
  border: 1px solid #A0BAD5;
  padding: 15px;
}
@media screen and (max-width: 896px) {
  .dog_list_area{
    margin-top: 50px;
  }
  .dog_list_h3{
    margin-bottom: 50px;
    font-size: 1.5rem;
  }
  .dog_list_box .dog_list_box_item{
    width: 100%;
    margin-bottom: 50px;
  }
  .dog_list_box .dog_list_box_item .dog_list_box_img{
    width: 100%;
    margin-bottom: 20px;
  }
  .dog_list_box .dog_list_box_item .dog_list_box_h4{
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .dog_list_box .dog_list_box_item .dog_list_box_annotation{
    padding: 10px;
    font-size: 14px;
  }
}

/* dog_service_list */
.dog_service_list{
  width: 100%;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.dog_service_list .dog_service_list_box{
  width: 31%;
  margin: 0 1% 50px 1%;
  background-color: #173452;
}
.dog_service_list .dog_service_list_box .dog_service_list_img{
  width: 100%;
}
.dog_service_list .dog_service_list_box .dog_service_list_h4{
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .dog_service_list{
    margin-top: 50px;
    justify-content:space-between;
  }
  .dog_service_list .dog_service_list_box{
    width: 48%;
    margin: 0 0 30px 0;
  }
}

/* ---------------------------------
 qa #よくある質問
--------------------------------- */
.qa_box{
  width: 100%;
  margin-bottom: 100px;
}
.qa_box_item{
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 30px;
  background-color: #173452;
}
.qa_box_item dt {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  position: relative;
}
.qa_box_item dd {
  margin: 0;
  position: relative;
}
.qa_box_item dt span {
  font-weight: bold;
}
.qa_box_item dt span, .qa_box_item dd span {
  display: inline-block;
  margin-left: 34px;
  margin-top: 5px;
  line-height: 1.6;
}
.qa_box_item dt::before {
  content: "Q";
  display: inline-block;
  padding-right: 10px;
  color: #A0BAD5;
  position: absolute;
  top:-6px;
  left: 0;
  font-size: 1.5rem;
  font-family: "Chonburi", serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.qa_box_item dd::before {
  content: "A";
  display: inline-block;
  padding-right: 10px;
  position: absolute;
  top:-6px;
  left: 0;
  font-size: 1.5rem;
  font-family: "Chonburi", serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
a.qa_link_btn{
  padding: 5px 15px;
  display: inline-block;
  background-color: #003350;
  margin-top: 10px;
  border-radius: 5px;
  color: #fff;
}
.qa_list_title_h2{
  width: 100%;
  margin-bottom: 80px;
  padding-top: 70px;
  position: relative;
  text-align: center;
  font-size: 1.7rem;
}
.qa_list_title_h2::before{
  background-color: #A0BAD5;
  bottom: -20px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px;
}
@media screen and (max-width: 896px) {
  .qa_box{
    margin-bottom: 50px;
  }
}

/* ---------------------------------
 news #ニュース
--------------------------------- */
/* news single ------------------------------- */
.news_contents{
  width: 94%;
  max-width: 1200px;
  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: #fff;
  font-size: 14px;
  border-radius: 3px;
  background-color: #88A2BD;
}
.article_news{
  width: 100%;
  padding: 50px;
  background-color: #fff;
  color: #0E2A47;
}
.article_news a{
  color: #0E2A47;
  text-decoration: underline;
}
.article_news a:hover{
  text-decoration: none;
}

@media screen and (max-width: 896px) {
  h2.news_title{
    font-size: 1.2rem;
  }
  .article_news{
    padding: 20px;
  }
}
/* news_list -------------- */
h3.news_list_h3{
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.3rem;
}
ul.news_list{
  width: 100%;
  list-style:none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
ul.news_list li{
  width: 23%;
  margin: 15px 1%;
}
ul.news_list .cate{
  padding: 1px 10px;
  display: inline-block;
  background-color: #88A2BD;
  margin: 0 10px;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
}
ul.news_list li .news_list_img{
  width:100%;
  height: 200px;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 10px;
}
ul.news_list li .news_list_img img{
  width: 100%;
  height: 200px;
  transition: transform .6s ease;
  object-fit: cover;
}
ul.news_list li .news_list_img a:hover img{
  transform: scale(1.1);
}
ul.news_list li .news_list_note{
  width: 100%;
}
@media screen and (max-width: 896px) {
  ul.news_list li{
    width: 100%;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
  }
  ul.news_list li .news_list_img{
    width:35%;
    height: 120px;
    margin-bottom: 0;
  }
  ul.news_list li .news_list_img img{
    height: 120px;
  }
  ul.news_list li .news_list_note{
    width: 60%;
  }
}

/* news archive ------------------------------- */
.news_archive_area{
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 30px auto;
}
.news_archive_area .news_archive_box{
  width: 100%;
  margin: 40px 0;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  color: #0E2A47;
}
.news_archive_area .news_archive_box .news_archive_box_img{
  width: 25%;
  height: 190px;
  margin-right: 5%;
}
.news_archive_area .news_archive_box .news_archive_box_img img{
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.news_archive_area .news_archive_box .news_archive_box_note{
  width: 70%;
}
.news_archive_area .news_archive_box .news_archive_box_note .cate{
  padding: 1px 10px;
  display: inline-block;
  background-color: #88A2BD;
  margin-left: 10px;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
}
h3.news_archive_title{
  width: 100%;
  margin-top: 10px;
  font-size: 1.2rem;
  color: #0E2A47;
}
h3.news_archive_title a{
  color: #0E2A47;
}
.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: #0E2A47;
  color: #fff;
}

@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_img img{
    height: 200px;
  }
  .news_archive_area .news_archive_box .news_archive_box_note{
    width: 100%;
  }
  .news_archive_area .news_archive_box .news_archive_more{
    text-align: right;
  }
}

/* ---------------------------------
 surrounding #周辺観光
--------------------------------- */
/* surrounding_list ---------------- */
.surrounding_list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.surrounding_list.single_surrounding_list{
  justify-content: center;
}
.surrounding_list .surrounding_list_box{
  width: 31%;
  margin: 0 1% 40px 1%;
}
.surrounding_list h3.surrounding_list_h3{
  margin: 10px 0;
  font-size: 1.2rem;
}
.surrounding_more_btn{
  width: 100%;
  margin-top: 20px;
}
.surrounding_more_btn a{
  display: block;
  width: 80%;
  max-width: 200px;
  padding: 10px;
  border-radius: 99999px;
  text-align: center;
  border: 1px solid #fff;
  margin: 0 auto;
}

@media screen and (max-width: 896px) {
  .surrounding_list .surrounding_list_box{
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
  }
}
/* surrounding_main ---------------- */
.surrounding_main{
  width: 100%;
}
.surrounding_main h2.surrounding_title{
  width: 100%;
  margin-bottom: 30px;
  font-size: 1.5rem;
  padding-bottom: 15px;
  margin-bottom: 50px;
  border-bottom: 3px solid #fff;
}
.surrounding_main img{
  width: 100%;
  margin: 15px 0;
}
.surrounding_main .surrounding_txt{
  width: 100%;
  margin: 30px 0;
}
.surrounding_main dl.surrounding_dl{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #4f6a86;
}
.surrounding_main dl.surrounding_dl dt{
  width: 20%;
  padding: 10px;
  font-weight: bold;
}
.surrounding_main dl.surrounding_dl dd{
  width: 80%;
  padding: 10px;
  margin: 0;
}
.surrounding_main .surrounding_googlemap{
  width: 100%;
  margin-top: 30px;
}
.surrounding_main .surrounding_googlemap iframe{
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 896px) {
  .surrounding_main dl.surrounding_dl dt{
    width: 30%;
  }
  .surrounding_main dl.surrounding_dl dd{
    width: 70%;
  }
  .surrounding_main .surrounding_googlemap iframe{
    height: 300px;
  }
  .surrounding_main h2.surrounding_title{
    font-size: 1.3rem;
  }
}
/* activity archive */
.activity_cat{
  padding: 1px 8px;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  margin-bottom: 3px;
  border-radius: 3px;
}
/* activity single */
.activity_cat_box{
  width: 100%;
  margin-top: 15px;
}
.activity_cat_box .activity_single_cat{
  padding: 3px 10px;
  display: inline-block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 14px;
  border-radius: 3px;
}

@media screen and (max-width: 896px) {
  .activity_cat_box .activity_single_cat{
    padding: 3px 5px;
    font-size: 12px;
  }
}

/* ---------------------------------
 Contact #お問い合わせ
--------------------------------- */
.wpforms-field-label{
  color: #fff !important;
}
