@charset "UTF-8";
/* ==========================================
   PC Vimeo
========================================== */
#mainVisualPc {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.top-vimeo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-vimeo iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
/* ==========================================
   SP Slider
========================================== */
#mainVisual {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#mainVisual .slider_container {
  position: relative;
  width: 100%;
  overflow: hidden;
  backface-visibility: hidden;
}
#mainVisual .slider_item {
  position: relative;
  width: 100%;
}
#mainVisual .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ==========================================
   Copy Area
========================================== */
#mainVisual .cover_logo, #mainVisualPc .cover_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  text-align: center;
  z-index: 10;
}
#mainVisual .cover_logo_img, #mainVisualPc .cover_logo_img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
#mainVisual .cover_logo h2, #mainVisualPc .cover_logo h2 {
  margin-top: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
#mainVisual .cover_logo h2 span, #mainVisualPc .cover_logo h2 span {
  font-size: 1.5rem;
}
/* ==========================================
   Play Button
========================================== */
.open-modal-button {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}
.open-modal-button img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}
.open-modal-button__text {
  margin-top: 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .2em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
/* ==========================================
   Movie Modal
========================================== */
.movie-modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 9999;
}
.movie-modal.active {
  opacity: 1;
  visibility: visible;
}
.movie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
}
.movie-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 900px;
  transform: translate(-50%, -50%);
}
.movie-modal__video {
  position: relative;
  padding-top: 56.25%;
}
.movie-modal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.movie-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
/* ==========================================
   Responsive
========================================== */
/* ==========================================
   Responsive
========================================== */
@media screen and (max-width: 896px) {
  #mainVisual {
    height: 65vh;
  }
  #mainVisual .slider_item {
    height: 65vh;
  }
  /* タイトルを下部へ */
  #mainVisual .cover_logo {
    top: auto;
    bottom: 60px;
    left: 50%;
    width: 100%;
    padding: 0 20px;
    transform: translateX(-50%);
  }
  #mainVisual .cover_logo h2 {
    font-size: 1rem;
    line-height: 1.8;
  }
  #mainVisual .cover_logo h2 span {
    font-size: 0.8rem;
  }
  /* PLAY MOVIEを中央へ */
  .open-modal-button {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
  .open-modal-button img {
    width: 45px;
    height: 45px;
  }
  .open-modal-button__text {
    font-size: 12px;
  }
}
/* ---------------------------------
 news
--------------------------------- */
#news {
  width: 100%;
  padding: 100px 0;
}
#news .news_box {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 50px;
}
#news .news_box .news_title {
  width: 100px;
}
#news .news_box .news_title h3 {
  font-size: 16px;
}
#news .news_box .news_title h3 span {
  font-size: 1.5rem;
}
#news .news_box .news_item {
  flex: 1;
  padding-left: 3%;
}
#news .news_box ul.top_news_list {
  width: 100%;
  list-style: none;
  padding-inline-start: 0;
  margin: 0 auto;
}
#news .news_box ul.top_news_list li {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #D9D9D9;
}
#news .news_box ul.top_news_list li:first-child {
  border-top: 1px solid #D9D9D9;
}
#news .news_box ul.top_news_list li .news_day {
  margin-right: 15px;
}
#news .news_box ul.top_news_list li .news_cat {
  margin-right: 15px;
  padding: 2px 10px;
  background-color: #2F6F8F;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 896px) {
  #news {
    padding: 50px 0;
  }
  #news .news_box {
    margin-bottom: 0px;
  }
  #news .news_box .news_title {
    width: 100%;
  }
  #news .news_box .news_title h3 span {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
  }
  #news .news_box .news_item {
    flex: none;
    width: 100%;
    padding-left: 0;
  }
  #news .news_box ul.top_news_list li .news_day {
    display: inline-block;
  }
  #news .news_box ul.top_news_list li .news_cat {
    margin-right: 0;
    display: inline-block;
  }
}
/* ---------------------------------
 about
--------------------------------- */
#about {
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, transparent 90%, #f5f3ee 90%, #f5f3ee 100%);
}
#about .about_box_top {
  width: 100%;
  background-image: url('../img/common/deco_wave.png');
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 35%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
#about .about_box_top .about_catchcopy {
  width: 25%;
  text-align: center;
}
#about .about_box_top .about_catchcopy h3.h3_about {
  writing-mode: vertical-rl;
  display: inline-block;
  text-align: left;
  font-size: 2.2rem;
}
#about .about_box_top .about_box_top_img {
  width: 75%;
}
#about .about_box_middle {
  width: 100%;
}
#about .about_box_middle .about_box_middle_inner {
  width: 90%;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row-reverse;
}
#about .about_box_middle .about_box_middle_inner .about_box_middle_img {
  width: 60%;
  margin-top: -100px;
}
#about .about_box_middle .about_box_middle_inner .about_box_middle_txt {
  width: 40%;
  padding-left: 5%;
}
#about .about_box_middle .about_box_middle_inner .about_box_middle_txt p {
  line-height: 2.0;
  font-size: 18px;
}
.br_pc_about {
  display: block;
}
#about .about_box_bottom {
  width: 90%;
  margin: 50px 0 0 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#about .about_box_bottom .about_box_bottom_img01 {
  width: 39%;
}
#about .about_box_bottom .about_box_bottom_img02 {
  width: 58.5%;
}
/* レスポンシブ微調整用 */
@media screen and (max-width: 1500px) {
  #about .about_box_middle .about_box_middle_inner .about_box_middle_img {
    width: 55%;
    margin-top: -100px;
  }
  #about .about_box_middle .about_box_middle_inner .about_box_middle_txt {
    width: 45%;
    padding-left: 5%;
  }
  #about .about_box_top .about_catchcopy h3.h3_about {
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 1024px) {
  #about .about_box_middle .about_box_middle_inner {
    width: 94%;
    margin: 20px auto;
  }
  #about .about_box_middle .about_box_middle_inner .about_box_middle_img {
    width: 100%;
    margin-top: 20px;
  }
  #about .about_box_middle .about_box_middle_inner .about_box_middle_txt {
    width: 100%;
    padding-left: 0;
  }
  #about .about_box_middle .about_box_middle_inner .about_box_middle_txt p {
    line-height: 1.7;
    font-size: 16px;
  }
  .br_pc_about {
    display: none;
  }
  #about .about_box_bottom {
    width: 94%;
    margin: 20px auto 0 auto;
  }
}
@media screen and (max-width: 896px) {
  #about {
    margin-top: 50px;
    background: linear-gradient(180deg, transparent 0%, transparent 95%, #EFEFF3 95%, #EFEFF3 100%);
  }
  #about .about_box_top {
    background-image: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  #about .about_box_top .about_catchcopy {
    width: 100%;
    text-align: center;
    background-image: url('../img/common/deco_wave.png');
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto 60%;
  }
  #about .about_box_top .about_catchcopy h3.h3_about {
    writing-mode: vertical-rl;
    display: inline-block;
    text-align: left;
    font-size: 1.5rem;
    padding-bottom: 30px;
  }
  #about .about_box_top .about_box_top_img {
    width: 100%;
    height: 250px;
  }
  #about .about_box_top .about_box_top_img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
}
/* ---------------------------------
 top_room
--------------------------------- */
.top_room {
  width: 100%;
  padding: 200px 0 100px 0;
}
.top_room .top_room_inner {
  width: 80%;
  margin: 0 auto;
}
.top_room .top_room_box {
  width: 80%;
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.top_room .top_room_box .top_room_img_box {
  width: 48%;
}
.top_room .top_room_linkbtn {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 896px) {
  .top_room {
    padding: 100px 0 50px 0;
  }
  .top_room .top_room_inner {
    width: 94%;
  }
  .top_room .top_room_box {
    width: 100%;
  }
  .top_room .top_room_box .top_room_img_box {
    width: 100%;
  }
}
/* ---------------------------------
 top_dog
--------------------------------- */
.top_dog {
  width: 100%;
  padding: 100px 0 100px 0;
}
.top_dog .top_dog_inner {
  width: 80%;
  margin: 0 auto;
}
.top_dog .top_dog_photo {
  width: 80%;
  margin: 30px auto;
}
.top_dog .top_dog_box {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.top_dog .top_dog_box .top_dog_box_img01 {
  width: 27%;
  order: 1;
}
.top_dog .top_dog_box .top_dog_box_img02 {
  width: 27%;
  order: 2;
}
.top_dog .top_dog_box .top_dog_box_txt {
  width: 40%;
  order: 3;
}
.top_dog .top_dog_link {
  width: 100%;
  margin-top: 30px;
}
.top_dog .top_dog_link a {
  display: block;
  width: 80%;
  max-width: 300px;
  padding: 15px;
  color: #2F6F8F;
  background-color: #fff;
  position: relative;
}
.top_dog .top_dog_link a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.5em; /* arrow size */
  height: 0.5em; /* arrow size */
  border-top: 1px solid #2F6F8F; /* thickness, color */
  border-right: 1px solid #2F6F8F;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.top_dog .top_dog_link a:hover {
  color: #fff;
  background-color: #2F6F8F;
}
.top_dog .top_dog_link a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.top_dog .top_dog_link.disp_pc {
  display: block;
}
.top_dog .top_dog_link.disp_sp {
  display: none;
}
@media screen and (max-width: 896px) {
  .top_dog {
    padding: 50px 0 50px 0;
  }
  .top_dog .top_dog_inner {
    width: 94%;
  }
  .top_dog .top_dog_photo {
    width: 100%;
    margin: 30px auto;
  }
  .top_dog .top_dog_photo {
    width: 100%;
    height: 250px;
  }
  .top_dog .top_dog_photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .top_dog .top_dog_box .top_dog_box_img01 {
    width: 48%;
    order: 2;
  }
  .top_dog .top_dog_box .top_dog_box_img02 {
    width: 48%;
    order: 3;
  }
  .top_dog .top_dog_box .top_dog_box_txt {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
  .top_dog .top_dog_link.disp_pc {
    display: none;
  }
  .top_dog .top_dog_link.disp_sp {
    display: block;
  }
  .top_dog .top_dog_link a {
    margin: 0 auto;
    text-align: center;
  }
}
/* ---------------------------------
 top_contents_box #SPAとMEAL用
--------------------------------- */
.top_contents_box {
  width: 100%;
  padding-top: 100px;
}
.top_contents_box.top_con_bottom {
  padding-bottom: 100px;
}
.top_contents_box .top_contents_box_inner {
  width: 80%;
  margin: 0 auto;
}
.top_contents_box .top_con_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.top_contents_box .top_con_box .top_con_box_img {
  width: 60%;
}
.top_contents_box .top_con_box .top_con_box_txt {
  width: 35%;
  margin-left: 5%;
}
.top_contents_box .top_con_box h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.top_contents_box .top_con_link {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 896px) {
  .top_contents_box {
    padding-top: 50px;
  }
  .top_contents_box.top_con_bottom {
    padding-bottom: 50px;
  }
  .top_contents_box .top_contents_box_inner {
    width: 94%;
  }
  .top_contents_box .top_con_box .top_con_box_img {
    width: 100%;
  }
  .top_contents_box .top_con_box .top_con_box_txt {
    width: 100%;
    margin-left: 0;
    margin: 20px 0;
  }
  .top_contents_box .top_con_box h4 {
    margin-bottom: 10px;
  }
  .top_contents_box .top_con_link {
    margin-top: 15px;
  }
}
/* ---------------------------------
 top_sightseeing
--------------------------------- */
.top_sightseeing {
  width: 100%;
  padding: 100px 0;
}
.top_sightseeing .top_sightseeing_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.top_sightseeing .top_sightseeing_box .top_sightseeing_txt {
  width: 30%;
  padding-left: 5%;
  padding-right: 5%;
  background-image: url('../img/common/deco_wave.png');
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 50%;
}
.top_sightseeing .top_sightseeing_box .top_sightseeing_img {
  width: 70%;
}
.top_sightseeing h3 {
  font-size: 2.0rem;
  margin-bottom: 20px;
}
.top_sightseeing .top_sightseeing_link {
  margin-top: 20px;
}
@media screen and (max-width: 896px) {
  .top_sightseeing {
    padding: 50px 0;
  }
  .top_sightseeing .top_sightseeing_box .top_sightseeing_txt {
    width: 100%;
    background-size: auto 100%;
    padding-bottom: 30px;
    padding-left: 3%;
    padding-right: 3%;
  }
  .top_sightseeing .top_sightseeing_box .top_sightseeing_img {
    width: 100%;
  }
}
/* ---------------------------------
 access
--------------------------------- */
#access {
  width: 100%;
  padding: 100px 0;
}
#access .access_inner {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
}
#access .access_map {
  width: 100%;
  margin: 30px 0;
}
#access .access_map iframe {
  width: 100%;
  height: 500px;
}
#access .access_box {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;
}
#access .access_box .access_box_img {
  width: 50%;
}
#access .access_box .access_box_txt {
  width: 45%;
  margin-left: 5%;
}
#access .access_link_box {
  width: 100%;
  text-align: center;
}
#access .access_link_box img {
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 896px) {
  #access {
    padding: 50px 0;
  }
  #access .access_map iframe {
    height: 300px;
  }
  #access .access_box .access_box_img {
    width: 100%;
  }
  #access .access_box .access_box_txt {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
/* === 閉じるバナー === */
.callout-container {
  position: fixed;
  z-index: 99;
  bottom: 185px;
  right: 1px;
  width: 200px;
  max-width: 380px;
  padding: 2px;
}
.callout-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
/* 閉じるボタン */
.bnr_close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #888;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  padding: 4px 10px;
}
.bnr_close:hover {
  color: #ccc;
}
/* SP */
@media screen and (max-width: 896px) {
  .callout-container {
    width: 100%;
    max-width: 100%;
    left: 0;
    bottom: 70px;
  }
}
/* === END === */
.banner-section {
  margin: 80px auto;
  width: 90%;
}
.banner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.banner-item {
  width: 30%;
  max-width: 700px;
}
.banner-item img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.25);
}
/* タブレット・スマホ */
@media screen and (max-width: 896px) {
  .banner-section {
    margin: 40px auto;
    width: 94%;
  }
  .banner-item {
    width: 100%;
  }
}
/*いぬやどマガジン　バナー*/
.top_inuyado {
  background-color: #f5f3ee;
}
.top_inuyado .inuyado_bnr {
  width: 40%;
  padding: 50px 0;
  margin: 0 auto;
}
.top_inuyado .inuyado_bnr a {
  display: block;
}
.top_inuyado .inuyado_bnr img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 3px 2px 4px #888;
}
/* SP表示 */
@media screen and (max-width: 896px) {
  .top_inuyado .inuyado_bnr {
    width: 96%;
  }
  .top_inuyado .inuyado_bnr img {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}
/*いぬやどマガジンバナー　END*/
/* 周辺観光 */
/* =====================================
   Area Info
===================================== */
.top_area {
  position: relative;
  padding: 100px 0;
  background: #f8f7f3;
}
.top_area .h3_title {
  text-align: center;
  margin-bottom: 10px;
}
.top_area .txt_center {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  letter-spacing: .1em;
}
.top_area ul {
  padding: unset;
}
/* slick */
.top_area .slick-list {
  overflow: hidden;
  padding: 20px 0 !important;
}
.top_area .slick-track {
  display: flex !important;
}
.top_area .slick-slide {
  height: inherit !important;
  padding: 0 15px;
  box-sizing: border-box;
}
.top_area .slick-slide > div {
  height: 100%;
}
/* card */
.area-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}
/* image */
.area-card__image {
  position: relative;
  overflow: hidden;
}
.area-card__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.area-card:hover .area-card__image img {
  transform: scale(1.08);
}
/* overlay */
.area-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
/* title */
.area-card h3 {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  border: none;
}
.area-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 10px;
  background: rgba(255, 255, 255, .9);
}
/* text */
.area-card p {
  flex: 1;
  margin: 0;
  padding: 24px 24px 30px;
  color: #666;
  line-height: 2;
}
/* ======================
   Arrow
====================== */
.area-prev, .area-next {
  position: absolute;
  top: 55%;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
  cursor: pointer;
  z-index: 1;
}
.area-prev {
  left: -10px;
}
.area-next {
  right: -10px;
}
.area-prev::before, .area-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.area-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.area-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}
/* ======================
   Dots
====================== */
.top_area .slick-dots {
  bottom: -40px;
}
.top_area .slick-dots li button:before {
  font-size: 10px;
}
.top_area a.more_link_btn_dark {
  display: block;
  width: 80%;
  max-width: 300px;
  padding: 15px;
  color: #fff;
  background-color: #2F6F8F;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
/* ======================
   SP
====================== */
@media screen and (max-width:896px) {
  .top_area {
    padding: 15% 0;
  }
  .top_area .txt_center {
    margin-bottom: 30px;
  }
  .top_area .slick-slide {
    padding: 0 10px !important;
    box-sizing: border-box;
  }
  .top_area .slick-list {
    padding: 10px !important;
  }
  .area-card {
    margin: 0;
    width: 100%;
  }
  .top_area ul li {
    padding-bottom: 10px;
  }
  .area-card__image img {
    height: 240px;
  }
  .area-card h3 {
    left: 18px;
    bottom: 18px;
    font-size: 1.2rem;
  }
  .area-card p {
    padding: 18px;
    line-height: 1.8;
  }
  .area-prev, .area-next {
    width: 44px;
    height: 44px;
  }
  .area-prev {
    left: -5px;
  }
  .area-next {
    right: -5px;
  }
}