@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #e8e7df;
  --body_text_color: #3e3733;
  --link_color: #806a4a;
  --border_color: #666666;
  --table_border_color: #4e4e4e;
  --th_background_color: transparent;
  --td_background_color: transparent;
  --th_character_color: #333333;
  --td_character_color: #333333;
  --required_color: #806a4a;
  --top_h1_color: #ffffff;
  --header_navigation_color: transparent;
  --top_entry_title_color: #000000;
  --entry_title_bg_color: #ffffff;
  --blog_title_color: #333333;
  --sub_entry_title_bg_color: #333333;
  --entry_title_bg_w570_color: #331f1f;
  --sub_entry_title_bg_w570_color: #000000;
  --half_entry_title_bg_color: #331f1f;
  --half_sub_entry_title_bg_color: #000000;
  --column3_title_bg_color: #ffffff;
  --widget_title_bg_color: #ffffff;
  --widget_list_bg_color: #2c2c2c;
  --footnavi_color: #000000;
  --address_color: #000000;
  --copy_color: #000000;
  --kdb_background_color: #d5d3c3;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1030;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 700;/* 中ページメインのオリジナル高さ(単位なし) */
  --easys_access_h: 80px !important;/* Gナビのオリジナル高さ */
  --fixed_side_btn_bottom: 160px; /* サイド固定ボタンの下端からの距離 */
  --fixed_side_btn_side: 0; /* サイド固定ボタン、左右の距離 */
  --fixed_side_btn_width_full: 240px; /* サイド固定ボタンの全幅 */
  --fixed_side_btn_width_collapsed: 55px; /* サイド固定ボタンのホバー前の幅 */
  --fixed_side_btn_height: 50px; /* サイド固定ボタンの高さ */
  --fixed_side_btn_margin: 10px; /* サイド固定ボタンの間隔 */
  --easys_standard_value001: #ffffff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(51, 31, 31, 0.8);/* プルダウンメニュー＞背景色 */
  --easys_standard_value002_2: rgba(51, 31, 31, 0.8);/* プルダウンメニュー＞背景色(ホバー時) */
  --easys_standard_value003: #ffffff;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #c7b497;/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005: #ffffff;/* カレンダーの本日＞文字色 */
  --easys_standard_value006: #ffffff;/* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007: #ffffff;/* ページ遷移ボタン＞線色 */
  --easys_standard_value008: #ffffff;/* ページ遷移ボタン＞文字色 */
  --easys_standard_value009: #000000;/* ブログ＞ページング＞線色 */
  --font_size_10: 10px;
  --font_size_11: 11px;
  --font_size_12: 12px;
  --font_size_13: 13px;
  --font_size_14: 14px;
  --font_size_15: 16px;/* 全体のフォントサイズを16pxに変更 */
  --font_size_16: 16px;
  --font_size_17: 17px;
  --font_size_18: 18px;
  --font_size_20: 20px;
  --font_size_23: 23px;
  --font_size_28: 28px;
}
/* =================================================================================================================== */



/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background: none var(--basic_background_color);
  /* background: url("../files/html_bg.jpg") repeat center top; */

  scroll-padding-top: var(--easys_access_h);
  /* scroll-padding-top: 130px; */
  scroll-behavior: smooth;
}
body {
  position: relative;/* 2000pxを超える画面の対策 */
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  word-break: break-word;

  /* 背景 */
  /* background: url("../files/body_bg.jpg") no-repeat center top / 100% auto; */
  background: none transparent;
}
/* トップページのみ調整する時 */
body#page_6 {
  /* 背景 */
  /* background: url("../files/top_body_bg.jpg") no-repeat center top / 100% auto; */
  background: none transparent;
}

body,
.wpcf7c-conf {
  color: var(--body_text_color);
}
/* Safariのみ */
_:lang(x) + _:-webkit-full-screen-document,
body {
          text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
#wrapper {
  background: none transparent;
}
#outer_block {
  background: none transparent;
}
#main {
  overflow: clip;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--link_color);
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: var(--link_color);
  color: var(--easys_standard_value001);
}



/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  position: relative;
  z-index: 500;
  /* メインの高さ */
  padding: calc(100% * (var(--easys_naka_main_h) / var(--easys_max_width))) 0 0;
  height: 0;

  /* メインに重ねる画像 */
  background: none transparent;
}
/* トップページのみ調整する時 */
#page_6 #branding_box {
  /* メインの高さ */
  padding: calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0 0;

  /* メインに重ねる画像 */
  /* background: url(../files/top_header_cover.png) no-repeat center bottom / 100% auto; */
  background: none transparent;
}


/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  z-index: 3;
  margin: 0 auto;
  width: auto;

  /* レスポンシブなし */
  bottom: 15px;
  left: 10px;

  /* レスポンシブあり
  top: calc(100 / var(--easys_naka_main_h) * 100%);
  left: calc(100 / var(--easys_max_width) * 100%); */
}
/* トップページのみ調整する時 */
#page_6 #site-description {
  /* レスポンシブなし */
  bottom: 15px;
  left: 10px;

  /* レスポンシブあり
  top: calc(100 / var(--easys_top_main_h) * 100%);
  left: calc(100 / var(--easys_max_width) * 100%); */
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}


/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {
  height: 0;
}

#header_information .main_header a img {
  position: absolute;
  z-index: 2;

  /* レスポンシブなし */
  top: 25px;
  left: 52px;
  width: 240px;
  height: 120px;
  background: url("../files/main_logo.png") no-repeat center;

  /* レスポンシブあり
  top: calc(0 / var(--easys_naka_main_h) * 100%);
  left: calc(0 / var(--easys_max_width) * 100%);
  width: calc(250 / var(--easys_max_width) * 100%);
  height: calc(100 / var(--easys_naka_main_h) * 100%);
  background: url(../files/main_logo.png) no-repeat center / 100%; */
}
/* トップページのみ調整する時
#page_6 #header_information .main_header a img {
  top: calc(0 / var(--easys_top_main_h) * 100%);
  left: calc(0 / var(--easys_max_width) * 100%);
  width: calc(250 / var(--easys_max_width) * 100%);
  height: calc(100 / var(--easys_top_main_h) * 100%);
} */

/* Gナビ上部固定
#header_information .main_header a img.fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1000 !important;
}
@media (min-width: 2000px) {
  #header_information .main_header a img.fixed {
    left: calc(50% - 1000px) !important;
  }
} */


/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
#access {
  --gnavi01: 126px;
  --gnavi02: 80px;
  --gnavi03: 80px;
  --gnavi04: 180px;
  --gnavi05: 110px;
  --gnavi06: 140px;
}
#access {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  margin: 0 auto;
  padding: 0;
  width: 100%;

  /* レスポンシブなし */
  top: 44px;

  /* レスポンシブあり
  top: calc(40 / var(--easys_naka_main_h) * 100%); */
}
/* トップページのみ調整する時
#page_6 #access {
  top: calc(40 / var(--easys_top_main_h) * 100%);
} */

#access .menu-header {
  margin: 0 172px 0 auto;
  
  /* Gナビ画像横幅 */
  padding: 0;
  width: 716px;

  /* Gナビ背景画像
  background: url(../files/topnavi_bg.png) no-repeat center; */
}

#access .menu-header #menu-gnavi {
  display: flex;
  justify-content: center;
}

#access .menu-header #menu-gnavi > li > a {
  height: var(--easys_access_h);
  background-color: transparent;
  background-image: url("../files/topnavi.png");
  background-position-y: top;
  background-repeat: no-repeat;
}
#access .menu-header #menu-gnavi > li:nth-of-type(1) > a {
  width: var(--gnavi01);
  background-position-x: left;
}
#access .menu-header #menu-gnavi > li:nth-of-type(2) > a {
  width: var(--gnavi02);
  background-position-x: calc((var(--gnavi01)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(3) > a {
  width: var(--gnavi03);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(4) > a {
  width: var(--gnavi04);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(5) > a {
  width: var(--gnavi05);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(6) > a {
  width: var(--gnavi06);
  background-position-x: right;
}
#access .menu-header #menu-gnavi > li > a::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    width: 5px;
    height: 5px;
    margin: auto;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0;
    transition: 0.3s;
}
#access .menu-header #menu-gnavi > li > a:hover::before {
  top: 10px;
  opacity: 1;
}

/* Gナビ上部固定(最大2000pxを維持) */
#access.fixed {
  position: fixed;
  top: 0 !important;
  z-index: 10 !important;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  background: var(--easys_standard_value002);
}
#access.fixed .menu-header {
  max-width: calc(var(--easys_max_width)*1px);
}

/* プルダウンメニュー */
#access ul li ul li {
  border-bottom: 1px dotted var(--border_color);
}
#access ul li ul li a {
  padding: 15px 10px;
  background-color: var(--easys_standard_value002);
  color: var(--easys_standard_value003);
  line-height: 1.2em;
}
#access ul li ul li a:hover {
  background: none var(--easys_standard_value002_2);
  color: var(--easys_standard_value004);
}

/* カレントページのメニュー */
#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
  color: var(--easys_standard_value003);
}
#access ul li.current_page_item > a:hover,
#access ul li.current-menu-ancestor > a:hover,
#access ul li.current-menu-item > a:hover,
#access ul li.current-menu-parent > a:hover {
  color: var(--easys_standard_value004);
}


/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
#main_teaser,
#video_teaser #video_teaser_inner,
#jquery_slider_pc .viewer {
  display: block;
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
}
#main_teaser img,
#video_teaser #video_teaser_inner video,
#jquery_slider_pc .viewer img {
  width: 100%;
}



/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.widget-title,
.widget-title2 a {
  padding: 0;
  background-image: url(../files/widget_title_bg.png);
  color: var(--widget_title_bg_color);
  text-align: center;
}
.widget-title2 a:link,
.widget-title2 a:visited,
.widget-title2 a:hover,
.widget-title2 a:active {
  color: var(--widget_title_bg_color);
}

/* サイドナビ　メニュー部分 */
#blog_main .widget-area ul ul li a {
  overflow: hidden;
  background-image: url(../files/widget_list_bg.png);
  color: var(--widget_list_bg_color);
  text-overflow: ellipsis;
  white-space: nowrap;
}

#wp-calendar {
  border-collapse: separate;
}
#wp-calendar caption {
  text-align: center;
}
/*#wp-calendar thead th {
}*/
#wp-calendar tbody td {
  padding: 5px;
  border-width: 0 0 1px;
  border-style: dotted;
  border-color: var(--border_color);
  background: none transparent;
  line-height: 2;
}
#wp-calendar tbody td a {
  text-decoration: underline;
}
#wp-calendar tbody td a:hover {
  text-decoration: none;
}
#calendar_wrap table tr td#today {
  background-color: var(--link_color);
}
#calendar_wrap table tr td#today,
#calendar_wrap table tr td#today a {
  color: var(--easys_standard_value005);
}



/* ===================================================================================================================
   ■ フッター
------------------------------------------------------------------------------------------------------------------- */
#footer_block {
  position: relative;
  height: 640px;
  background: url(../files/footer_bg.png) no-repeat center top;
}
#footer_box {
  height: 640px;
  background: none;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
/* 中央 */
#footer_sitemap_block {
  position: absolute;
  top: 375px;
  left: 50%;
  margin: 0 auto;
  width: auto;
  transform: translateX(-50%);
}
/* 中央以外
#footer-widget-area .widget-area {
  position: absolute;
  top: 320px;
  left: calc(50% - 140px);
} */

#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 960px;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border-color: var(--footnavi_color);
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  border-color: var(--footnavi_color);
  color: var(--footnavi_color);
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
/* 中央 */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  margin: 280px 0 0;
  width: 100%;
  text-align: center;
}
/* 中央以外
#footer_information {
  position: absolute;
  top: 180px;
  left: calc(50% - 480px);
}
#footer_information .entry-post {
  width: 450px;
  margin: 0;
  text-align: left;
} */


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#footer_information .entry-post .post-data > p {
  color: var(--address_color);
  line-height: 1.8;
  /*絶対値指定する時
  position: absolute;
  bottom: 110px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}


/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
  /* 絶対値指定する時
  position: absolute;
  bottom: 130px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  */
}
#footer_sns_btn .footer_sns_inner {
  width: 250px;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}


/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
}
/* 中央 */
#copyright {
  position: absolute;
  top: 470px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}
/* 中央以外
#copyright {
  position: absolute;
  bottom: 0px;
  left: calc(50% - 480px);
} */


/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
/* サイド固定ボタン：通常時は右端から185px隠れ、ホバーで全体表示 */
.fixed_side_btn {
  position: fixed;
  right: var(--fixed_side_btn_side);
  bottom: var(--fixed_side_btn_bottom);
  z-index: 1000;
  pointer-events: none;
}
.fixed_side_btn div {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--fixed_side_btn_margin);
  width: var(--fixed_side_btn_width_full);
  height: var(--fixed_side_btn_height);
  transition: transform 0.3s ease;
  transform: translateX(calc(var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)));
  pointer-events: auto;
}
.fixed_side_btn div:last-child {
  margin-bottom: 0;
}
.fixed_side_btn div:hover {
  transition: transform 0.5s ease;
  transform: translateX(0px);
}
.fixed_side_btn div a {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -9999px;
}

/* デフォルトボタン */
.fixed_side_btn .gaten a {
  background-image: url(../files/btn_gaten.png);
}
.fixed_side_btn .map a {
  background-image: url(../files/btn_map.png);
}
.fixed_side_btn .contact a {
  background-image: url(../files/btn_contact.png);
}
.fixed_side_btn .weblog a {
  background-image: url(../files/btn_blog.png);
}

/* SNSボタン */
.fixed_side_btn .line a {
  background-image: url(../files/btn_line.png);
}
.fixed_side_btn .instagram a {
  background-image: url(../files/btn_insta.png);
}
.fixed_side_btn .facebook a {
  background-image: url(../files/btn_fb.png);
}
.fixed_side_btn .youtube a {
  background-image: url(../files/btn_youtube.png);
}
.fixed_side_btn .tiktok a {
  background-image: url(../files/btn_tiktok.png);
}
.fixed_side_btn .jalan a {
  background-image: url(../files/btn_search.png);
}

/* 個別ボタンの高さ調整
.fixed_side_btn .gaten {
  height: 150px;
} */

/* 2000幅を超えた時 */
#wrapper {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media (min-width: 2000px) {
  .fixed_side_btn {
    left: calc(50% + 1000px - var(--fixed_side_btn_width_collapsed));
    width: var(--fixed_side_btn_width_collapsed);
  }
  .fixed_side_btn div {
    transform: translateX(0);
  }
  .fixed_side_btn div:hover {
    transform: translateX(calc((var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)) * -1));
  }
}


/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn a:hover img {
  opacity: 0.8;
}
@media (min-width: 2000px) {
  #float_top_btn {
    right: calc(50% - 980px);
  }
}



/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}


/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  background-image: url(../files/top_entry_title.png);
  color: var(--top_entry_title_color);
  height: 70px;
  line-height: 70px;
}
h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
}
/* フォントサイズはこちら
h3.entry_title,
.entry_title,
.entry_title h3,
.entry-title {
} */
.entry_title a:link,
.entry_title a:visited,
.entry_title a:hover,
.entry_title a:active,
.entry-title a:link,
.entry-title a:visited,
.entry-title a:hover,
.entry-title a:active {
  color: var(--entry_title_bg_color);
}
/* 見出しリンクボタン */
.entry_title span.read_more_btn a,
.entry_title span.read_more_btn a:hover {
  background-image: url(../files/read_more_btn.png);
}
.entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_entry_title {
  background-image: url(../files/entry_title_bg_w570.png);
  font-size: var(--font_size_20);
}
* .mid_entry_title,
* .mid_entry_title a {
  color: var(--entry_title_bg_w570_color);
}

/* B-09、B-10など幅半分ブロックの見出し用 */
* .half_entry_title,
* .short_entry_title {
  background-image: url(../files/half_entry_title_bg.png);
}
* .half_entry_title,
* .half_entry_title a,
* .short_entry_title,
* .short_entry_title a {
  color: var(--half_entry_title_bg_color);
}

* .half_sub_entry_title,
.short_sub_entry_title {
  background-image: url(../files/half_sub_entry_title_bg.png);
}
* .half_sub_entry_title,
* .half_sub_entry_title a,
.short_sub_entry_title,
.short_sub_entry_title a {
  color: var(--half_sub_entry_title_bg_color);
}

/* B-03など小見出し用 */
* .sub_entry_title {
  background: url(../files/sub_entry_title_bg.png) no-repeat scroll left top transparent;
  color: var(--sub_entry_title_bg_color);
}
/* フォントサイズはこちら
* .sub_entry_title h4 {
} */
* .sub_entry_title a:link,
* .sub_entry_title a:visited,
* .sub_entry_title a:hover,
* .sub_entry_title a:active {
  color: var(--sub_entry_title_bg_color);
}
/* 小見出しリンクボタン */
.sub_entry_title span.read_more_btn a,
.sub_entry_title span.read_more_btn a:hover {
  background-image: url(../files/sub_read_more_btn.png);
}
.sub_entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_sub_entry_title {
  background-image: url(../files/sub_entry_title_bg_w570.png);
  font-size: var(--font_size_20);
}
* .mid_sub_entry_title,
* .mid_sub_entry_title a {
  color: var(--sub_entry_title_bg_w570_color);
}

/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(../files/column3_title_bg.png);
}
* .inline_title,
* .inline_title a {
  color: var(--column3_title_bg_color);
}

/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  padding: 10px;
  height: auto;
  border: 1px solid var(--table_border_color);
  border-radius: 5px;
  background: none var(--th_background_color);
  color: var(--th_character_color);
  text-align: left;
  font-size: var(--font_size_15);
  line-height: 1.7;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: var(--link_color);
}

/* 大きな地図で見る */
small {
  border-color: var(--link_color);
}
small a {
  padding: 5px 0;
  width: 100%;
  color: var(--link_color) !important;
  text-align: center !important;
}
small a:hover {
  background-color: var(--link_color) !important;
  color: var(--easys_standard_value006) !important;
}


/*  テーブル
---------------------------------------------------------------------------------------------------- */
.table_area td.td_name,
.table_area td.td_value,
body.coupon .table_area td.td_name,
body.coupon .table_area td.td_value,
table.iqfm-table th,
table.iqfm-table td {
  border-color: var(--table_border_color);
  border-right: none;
  border-left: none;
  background: none transparent;
}
table.table_area td.td_name,
body.coupon table.table_area td.td_name,
.iqfm-table th {
  background: none transparent;
}
table.table_area td.td_value,
body.coupon table.table_area td.td_value,
.iqfm-table td,
.custom-wpcf7c-confirmed td,
input.wpcf7c-conf,
textarea.wpcf7c-conf {
  background: none transparent;
}
/* メール送信後メッセージボックスのボーダー（デフォルト：グリーン） */
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}

/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px var(--table_border_color) !important;
  border-right: none !important;
  border-left: none !important;
  background: none transparent;
}


/*  置きEASYS専用（html.okieasys時のみ適用）
---------------------------------------------------------------------------------------------------- */
/* ヘッダー */
html.okieasys #header_information .main_header a {
  font-size: 24px;
  color: var(--body_text_color);
  padding-block: 10px;
  text-decoration: none;
  font-weight: bold;
  z-index: 500;
}
html.okieasys #branding_box {
  background: none;
}
/* フッター */
html.okieasys #footer_box {
  background: none;
}
html.okieasys #footer_information .entry-post .post-data .footer_sitename {
  font-size: 20px;
}


/*  翻訳
---------------------------------------------------------------------------------------------------- */
/* ボタン */
body #glt-translate-trigger {
  position: absolute;
  top: 44px;
  right: 36px;
  margin: 23px 0;
  padding: 0;
  width: 120px;
  height: 34px;
  background: url(../files/language_btn.png) no-repeat center;
  box-shadow: none;
  text-indent: -99999px;
}
@media(min-width: 2000px) {
  body #glt-translate-trigger {
    right: calc(50% - 964px);
  }
}
/* ボタンfixed時 */
body #glt-translate-trigger.fixed {
  position: fixed;
  top: 0 !important;
}

/* ツールチップ */
body .tool-container.tool-top {
  top: 125px !important;
  right: 45px !important;
  left: auto !important;
}
@media(min-width: 2000px) {
  body .tool-container.tool-top {
    right: calc(50% - 955px) !important;
  }
}
/* ボタンfixed時 ツールチップ */
#glt-translate-trigger.fixed ~ .tool-container.tool-top {
  top: 80px !important;
}



/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */

/* ===========================================================================
   共通設定
=========================================================================== */
.easys_content.no_margin + .easys_content:not(.no_margin) {
  margin-top: 70px;
}

.design_block {
  position: absolute;
  display: block;
  width: 2000px;
  height: 100%;
  pointer-events: none;
}

/* ボタン */
.design_arr::after {
  position: absolute;
  display: block;
  margin: auto;
  width: 15px;
  height: 15px;
  background: url(../files/btn_arr.png) no-repeat center;
  content: "";
  pointer-events: none;
}
.design_arr:hover::after {
  animation: design_arr 0.5s cubic-bezier(0.65, 0.01, 0.3, 0.97) forwards running;
}
@keyframes design_arr {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  40% {
    opacity: 0;
  }
  49.9% {
    opacity: 0;
    transform: translateX(50%);
  }
  50% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ギミック */
.fade_in {
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.fade_in.moved {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* デザインブロック共通 .ndb_01.no_margin */
.ndb_01.no_margin,
.ndb_01.no_margin .easys_content_inner {
  position: relative;
}
.ndb_01.no_margin .entry_post {
  margin-bottom: 0;
}
.ndb_01.no_margin [class*='title'] {
  /* タイトル削除 */
  display: none;
}
.ndb_01.no_margin .post_data {
  line-height: 2.05;
}
.ndb_01.no_margin .main_btn {
  position: relative;
  display: block;
  padding: 0;
}
.ndb_01.no_margin .main_btn a {
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: none;
  text-indent: -9999px;
}
.ndb_01.no_margin .main_btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s;
  content: "";
  pointer-events: none;
}
.ndb_01.no_margin .main_btn a:hover::before {
  opacity: 1;
}
.ndb_01.no_margin .main_btn a.design_arr::after {
  top: 0;
  bottom: 0;
  right: 25px;
}

/* ハーフバナー #outer_block .half_bnr_block */
#outer_block .half_bnr_block {
  position: relative;
  margin: 130px 0 100px;
  height: 210px;
}
#outer_block .half_bnr_block div {
  margin: 0;
  padding: 0;
}
#outer_block .half_bnr_block .easys_content_inner {
  margin: 0 auto;
  width: 960px;
}
#outer_block .half_bnr_block .field_2col {
  position: relative;
  width: 460px !important;
}
#outer_block .half_bnr_block .eyecatch a::before {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transition: 0.3s;
  pointer-events: none;
  opacity: 0;
}
#outer_block .half_bnr_block .eyecatch {
  width: 100%;
}
#outer_block .half_bnr_block .eyecatch a:hover::before,
#outer_block .half_bnr_block .eyecatch a img {
  opacity: 1;
}
#outer_block .half_bnr_block .eyecatch a.design_arr::after {
  top: 181px;
  right: 31px;
}


/* ===========================================================================
   トップページ   pageID：6
=========================================================================== */

/*DB＞ここでしか出会えない、ホワイトブルーの天然温泉
nncgbc9flo6g7crpmew4
--------------------------------------- */
#nncgbc9flo6g7crpmew4 {
  z-index: 1;
  height: 900px;
  background: url(../files/design01_bg_01.png) no-repeat center bottom;
}
#nncgbc9flo6g7crpmew4 .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 625px 0 0 auto;

  /* テキストエリアの横幅 */
  width: 510px;
}

/* 水面 */
#nncgbc9flo6g7crpmew4 .design_block.img00,
#nncgbc9flo6g7crpmew4 .design_block.img01 {
  left: calc(50% - 1000px);
  height: 350px;
}
#nncgbc9flo6g7crpmew4 .design_block.img00 {
  bottom: 320px;
  background: url(../files/design01_bg_02.png) no-repeat center;
  animation: water_move_1 7s ease-in-out 2s infinite;
}
@keyframes water_move_1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
#nncgbc9flo6g7crpmew4 .design_block.img01 {
  bottom: 270px;
  background: url(../files/design01_bg_03.png) no-repeat center;
  animation: water_move_2 3.5s ease-in-out infinite;
}
@keyframes water_move_2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

#nncgbc9flo6g7crpmew4 .design_block.img02,
#nncgbc9flo6g7crpmew4 .design_block.img03 {
  top: 0;
}
#nncgbc9flo6g7crpmew4 .design_block.img02 {
  left: calc(50% - 1000px);
  background: url(../files/design01_img01.png) no-repeat center;
  transform: translateY(100px);
}
#nncgbc9flo6g7crpmew4 .design_block.img03 {
  left: calc(50% - 488px);
  width: 410px;
  background: url(../files/design01_img02.png) no-repeat center 618px;
  transition-delay: 1s;
}

/* 湯気 */
#nncgbc9flo6g7crpmew4 .design_block.img04 {
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 940px);/* DB1 + DB2 */
  overflow: hidden;
}
#nncgbc9flo6g7crpmew4 .design_block.img04 #yuge_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#nncgbc9flo6g7crpmew4 .design_block.img04 #yuge01,
#nncgbc9flo6g7crpmew4 .design_block.img04 #yuge02,
#nncgbc9flo6g7crpmew4 .design_block.img04 #yuge03 {
  position: fixed;
  bottom: calc(50vh - 400px);
  z-index: 1;
}
#nncgbc9flo6g7crpmew4 .design_block.img04 #yuge01 {
  left: 0;
  width: clamp(338px, calc(520 / 2000 * 100vw), 520px);
  height: clamp(292.5px, calc(450 / 2000 * 100vw), 450px);
  animation: yuge01 6s ease-in-out infinite;
  background: url(../files/design01_02_img01.png) no-repeat center / 100%;
}
@keyframes yuge01 {
  0% {
    opacity: 0;
    transform: translate(-15%, 13%) scale(0.9);
  }
  15% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.6;
    transform: translate(-10%, -35%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-19%, -134%) scale(1.15);
  }
}
#nncgbc9flo6g7crpmew4 .design_block.img04 #yuge02 {
  right: 0;
  width: clamp(338px, calc(520 / 2000 * 100vw), 520px);
  height: clamp(292.5px, calc(450 / 2000 * 100vw), 450px);
  animation: yuge02 6s ease-in-out -3s infinite;
  background: url(../files/design01_02_img02.png) no-repeat center / 100%;
}
@keyframes yuge02 {
  0% {
    opacity: 0;
    transform: translate(15%, 11%) scale(0.9);
  }
  15% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.7;
    transform: translate(10%, -35%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(19%, -56%) scale(1.12);
  }
}
#nncgbc9flo6g7crpmew4 .design_block.img04 #yuge03 {
  right: 0;
  width: clamp(156px, calc(240 / 2000 * 100vw), 240px);
  height: clamp(136.5px, calc(210 / 2000 * 100vw), 210px);
  animation: yuge03 6s ease-in-out -1.5s infinite;
  background: url(../files/design01_02_img03.png) no-repeat center / 100%;
}
@keyframes yuge03 {
  0% {
    opacity: 0;
    transform: translate(-52%, 7%) scale(0.8);
  }
  15% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.4;
    transform: translate(-54%, -24%) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -43%) scale(1.08);
  }
}
@media (min-width: 2000px) {
  #nncgbc9flo6g7crpmew4 .design_block.img04 #yuge01 {
    left: calc(50% - 1000px) !important;
  }
  #nncgbc9flo6g7crpmew4 .design_block.img04 #yuge02,
  #nncgbc9flo6g7crpmew4 .design_block.img04 #yuge03 {
    right: calc(50% - 1000px) !important;
  }
}


/*DB＞ホワイトブルーに輝く、100％天然自噴・源泉かけ流しの湯
q0e49cih25m98kfk0y8t
--------------------------------------- */
#q0e49cih25m98kfk0y8t {
  height: 940px;
  background: url(../files/design02_bg.jpg) no-repeat center top;
}
#q0e49cih25m98kfk0y8t .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 320px auto 0 0;

  /* テキストエリアの横幅 */
  width: 455px;
}
#q0e49cih25m98kfk0y8t .post_data {
  box-sizing: border-box;
  padding-left: 5px;
  /* テキストとボタンの間の余白調整用 */
  margin-bottom: 25px;
}
#q0e49cih25m98kfk0y8t .main_btn {
  width: 300px;
  height: 50px;
  background: url(../files/design02_btn_off.png) no-repeat center;
}
#q0e49cih25m98kfk0y8t .main_btn a::before {
  background: url(../files/design02_btn_on.png) no-repeat center;
}
#q0e49cih25m98kfk0y8t .easys_content_inner,
#q0e49cih25m98kfk0y8t .design_block.img00 {
  transform: translateY(100px);
}
#q0e49cih25m98kfk0y8t .design_block.img00,
#q0e49cih25m98kfk0y8t .design_block.img01 {
  top: 0;
}
#q0e49cih25m98kfk0y8t .design_block.img00 {
  left: calc(50% - 1000px);
  background: url(../files/design02_img01.png) no-repeat center;
}
#q0e49cih25m98kfk0y8t .design_block.img01 {
  left: calc(50% + 45px);
  width: 520px;
  background: url(../files/design02_img02.png) no-repeat center 190px;
  transition-delay: 1s;
}


/*DB＞旅のスタイルに合わせて選べる客室
jquz7jjovygbjjasx66t
--------------------------------------- */
#jquz7jjovygbjjasx66t {
  height: 736px;
  padding: 0 0 clamp(169px, calc(260 / 2000 * 100vw), 260px);
  background: url(../files/design03_bg01.png) no-repeat center top;
}
#jquz7jjovygbjjasx66t .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 230px 0 0 auto;

  /* テキストエリアの横幅 */
  width: 640px;
}
#jquz7jjovygbjjasx66t .main_btn {
  position: absolute;
  top: 390px;
  left: calc(50% - 482px);
  width: 300px;
  height: 50px;
  background: url(../files/design03_btn_off.png) no-repeat center;
}
#jquz7jjovygbjjasx66t .main_btn a::before {
  background: url(../files/design03_btn_on.png) no-repeat center;
}

#jquz7jjovygbjjasx66t .design_block.img00,
#jquz7jjovygbjjasx66t .design_block.img01,
#jquz7jjovygbjjasx66t .design_block.img02,
#jquz7jjovygbjjasx66t .design_block.img03 {
  top: 522px;
  left: 0;
  width: 100%;
  height: clamp(169px, calc(260 / 2000 * 100vw), 260px);
  transform: translateY(40%);
}
#jquz7jjovygbjjasx66t .design_block.img00 {
  background: url(../files/design03_bg02.png) no-repeat center / auto 100%;
}
#jquz7jjovygbjjasx66t .design_block.img01 {
  background: url(../files/design03_bg03.png) no-repeat center / auto 100%;
  transition-delay: 0.3s;
}
#jquz7jjovygbjjasx66t .design_block.img02 {
  background: url(../files/design03_bg04.png) no-repeat center / auto 100%;
  transition-delay: 0.6s;
}
#jquz7jjovygbjjasx66t .design_block.img03 {
  background: url(../files/design03_bg05.png) no-repeat center / auto 100%;
  transition-delay: 0.9s;
}


/*イメージ画像（※top）
u85ejmmoj6n1at3s8uvj
--------------------------------------- */
#u85ejmmoj6n1at3s8uvj {
  position: relative;
  overflow: hidden;
  padding: calc(720 / 2000 * 100%) 0 0;
}
#u85ejmmoj6n1at3s8uvj div {
  margin: 0;
  padding: 0;
}
#u85ejmmoj6n1at3s8uvj .easys_content_inner {
  width: 100%;
}
#u85ejmmoj6n1at3s8uvj .field_1col .eyecatch {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
#u85ejmmoj6n1at3s8uvj #video_prr {
  position: absolute;
  top: calc(1 / 720 * 100%);
  left: 0;
  width: 100%;
  height: calc(718 / 720 * 100%);
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#u85ejmmoj6n1at3s8uvj #video_prr video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  content: "";
}


/*DB＞98.7℃の蒸気が食材の味を引き出す、豊礼名物「地獄蒸し」
bkibrkcs3un3thd916i5
--------------------------------------- */
#bkibrkcs3un3thd916i5 {
  height: 940px;
  background: url(../files/design04_bg.jpg) no-repeat center top;
}
#bkibrkcs3un3thd916i5 .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 387px 0 0 auto;

  /* テキストエリアの横幅 */
  width: 438px;
}
#bkibrkcs3un3thd916i5 .post_data {
  /* テキストとボタンの間の余白調整用 */
  margin-bottom: 22px;
}
#bkibrkcs3un3thd916i5 .main_btn {
  width: 330px;
  height: 50px;
  background: url(../files/design04_btn_off.png) no-repeat center;
}
#bkibrkcs3un3thd916i5 .main_btn a::before {
  background: url(../files/design04_btn_on.png) no-repeat center;
}

#bkibrkcs3un3thd916i5 .design_block.img00,
#bkibrkcs3un3thd916i5 .design_block.img01 {
  top: 0;
}
#bkibrkcs3un3thd916i5 .design_block.img00 {
  width: 560px;
  left: calc(50% - 595px);
  background: url(../files/design04_img01.png) no-repeat center 163px;
}
#bkibrkcs3un3thd916i5 .design_block.img01 {
  width: 450px;
  left: calc(50% - 665px);
  background: url(../files/design04_img02.png) no-repeat center 425px;
  transform: translateY(100px);
  transition-delay: 0.5s;
}


/*DB＞旅の楽しみが広がる、おすすめ観光スポット
ixywxazo2g3ugpb1ghzy
--------------------------------------- */
#ixywxazo2g3ugpb1ghzy {
  height: 910px;
  background: url(../files/design05_bg.jpg) no-repeat center top;
}
#ixywxazo2g3ugpb1ghzy .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 342px auto 0;

  /* テキストエリアの横幅 */
  width: 680px;
}
#ixywxazo2g3ugpb1ghzy .post_data {
  text-align: center;
  /* テキストとボタンの間の余白調整用 */
  margin-bottom: 22px;
}
#ixywxazo2g3ugpb1ghzy .main_btn {
  margin: 0 auto;
  width: 300px;
  height: 50px;
  background: url(../files/design05_btn_off.png) no-repeat center;
}
#ixywxazo2g3ugpb1ghzy .main_btn a::before {
  background: url(../files/design05_btn_on.png) no-repeat center;
}

#ixywxazo2g3ugpb1ghzy .design_block.img00 {
  top: 0;
  left: calc(50% - 1000px);
  background: url(../files/design05_img01.png) no-repeat center top;
  transform: translateY(100px);
}


/*バナー＞じゃらん（※top）
uaoyd7tmlrssiq03h8m4
--------------------------------------- */
#uaoyd7tmlrssiq03h8m4 {
  position: relative;
  /* バナーブロックの高さ */
  height: 600px;
  background: url(../files/bnr_contact_bg.jpg) no-repeat center;
}
#uaoyd7tmlrssiq03h8m4 div {
  margin: 0;
  padding: 0;
}
#uaoyd7tmlrssiq03h8m4 .easys_content_inner {
  position: absolute;
  top: 190px;
  left: calc(50% - 480px);
  width: 960px;
}
#uaoyd7tmlrssiq03h8m4 .eyecatch {
  overflow: hidden;
}
#uaoyd7tmlrssiq03h8m4 .eyecatch a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url(../files/bnr_contact_cover_on.png) no-repeat center;
}
#uaoyd7tmlrssiq03h8m4 .eyecatch a::before,
#uaoyd7tmlrssiq03h8m4 .eyecatch a:hover img {
  opacity: 0;
}
#uaoyd7tmlrssiq03h8m4 .eyecatch a:hover::before,
#uaoyd7tmlrssiq03h8m4 .eyecatch a img {
  opacity: 1;
}
#uaoyd7tmlrssiq03h8m4 .eyecatch a.design_arr::after {
  top: 89px;
  left: calc(50% - 90px);
}



/* ===========================================================================
   温泉   pageID：1090
=========================================================================== */

/*DB＞100％天然自噴・源泉かけ流し ホワイトブルーに輝く美肌の湯
pe1ciwwo4iezgmypgnab
--------------------------------------- */
#pe1ciwwo4iezgmypgnab {
  height: 880px;
  background: url(../files/design06_bg.jpg) no-repeat center top;
}
#pe1ciwwo4iezgmypgnab .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 444px auto 0 0;

  /* テキストエリアの横幅 */
  width: 420px;
}

#pe1ciwwo4iezgmypgnab .design_block.img00 {
  top: 0;
  left: calc(50% - 20px);
  width: 690px;
  background: url(../files/design06_img01.png) no-repeat center 155px;
}


/*バナー＞客室/オススメの過ごし方（※onsen）
mhi8tdxkujp3aqtt1o41  #outer_block .half_bnr_block
--------------------------------------- */
#mhi8tdxkujp3aqtt1o41 .float_left .eyecatch a::before {
  background: url(../files/bnrhalf_rooms_on.png) no-repeat center top;
}
#mhi8tdxkujp3aqtt1o41 .float_right .eyecatch a::before {
  background: url(../files/bnrhalf_experiences_on.png) no-repeat center top;
}



/* ===========================================================================
   客室   pageID：1091
=========================================================================== */

/*DB＞旅のスタイルに合わせて選べる、客室タイプ
ezscd8wt2wxkc3st5ezo
--------------------------------------- */
#ezscd8wt2wxkc3st5ezo {
  height: 950px;
  background: url(../files/design07_bg.jpg) no-repeat center top;
}
#ezscd8wt2wxkc3st5ezo .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 453px 0 0 auto;

  /* テキストエリアの横幅 */
  width: 350px;
}



/* ===========================================================================
   オススメの過ごし方   pageID：1092
=========================================================================== */

/*DB＞温泉だけじゃない、豊礼の宿ならではの楽しみ方
mxgzgwxnz4jhifrq3tca
--------------------------------------- */
#mxgzgwxnz4jhifrq3tca {
  overflow: hidden;
  height: 910px;
  background: url(../files/design08_bg.jpg) no-repeat center top;
}
#mxgzgwxnz4jhifrq3tca .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 170px 0 0 auto;

  /* テキストエリアの横幅 */
  width: 460px;
}

#mxgzgwxnz4jhifrq3tca::before {
  content: "";
  position: absolute;
  top: 425px;
  left: 0;
  display: block;
  width: 100%;
  height: 321px;
  /* ループさせる画像 */
  background: url(../files/design08_img01.png) repeat-x left top;
  animation: loop_db8 40s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop_db8 {
  to {
    background-position: top left -2310px;
  }
}


/*バナー＞温泉/周辺観光（※spend）
qb9c74eh6m0uc7sss78o  #outer_block .half_bnr_block
--------------------------------------- */
#qb9c74eh6m0uc7sss78o .float_left .eyecatch a::before {
  background: url(../files/bnrhalf_onsen_on.png) no-repeat center top;
}
#qb9c74eh6m0uc7sss78o .float_right .eyecatch a::before {
  background: url(../files/bnrhalf_attractions_on.png) no-repeat center top;
}



/* ===========================================================================
   周辺観光   pageID：1093
=========================================================================== */

/*DB＞旅の思い出がもっと広がる、周辺観光へ
jjjj91ii6y6pdgth8ylw
--------------------------------------- */
#jjjj91ii6y6pdgth8ylw {
  height: 860px;
  background: url(../files/design09_bg.jpg) no-repeat center top;
}
#jjjj91ii6y6pdgth8ylw .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 405px 0 0 auto;

  /* テキストエリアの横幅 */
  width: 330px;
}

#jjjj91ii6y6pdgth8ylw .design_block.img00,
#jjjj91ii6y6pdgth8ylw .design_block.img01 {
  top: 0;
}
#jjjj91ii6y6pdgth8ylw .design_block.img00 {
  left: calc(50% - 550px);
  width: 630px;
  background: url(../files/design09_img01.png) no-repeat center 133px;
}
#jjjj91ii6y6pdgth8ylw .design_block.img01 {
  left: calc(50% - 655px);
  width: 340px;
  background: url(../files/design09_img02.png) no-repeat center 412px;
  transition-delay: 0.5s;
}


/*バナー＞温泉/客室（※sightseeing）
cmdj7su67i7593wiipa5  #outer_block .half_bnr_block
--------------------------------------- */
#cmdj7su67i7593wiipa5 .float_left .eyecatch a::before {
  background: url(../files/bnrhalf_onsen_on.png) no-repeat center top;
}
#cmdj7su67i7593wiipa5 .float_right .eyecatch a::before {
  background: url(../files/bnrhalf_rooms_on.png) no-repeat center top;
}



/* ===========================================================================
   交通アクセス   pageID：81
=========================================================================== */

/*コンテンツ画像＞各交通機関のご案内
afgjcxa3ektspe6vqhtv
--------------------------------------- */
#afgjcxa3ektspe6vqhtv {
  position: relative;
  height: 980px;
}
#afgjcxa3ektspe6vqhtv div {
  margin: 0;
  padding: 0;
}
#afgjcxa3ektspe6vqhtv .easys_content_inner {
  position: absolute;
  top: 0;
  left: calc(50% - 1000px);
  width: 2000px;
}


/*コンテンツ画像＞高速バスでのアクセス
x8fjf4nznu8lzt5d3ifk
--------------------------------------- */
#x8fjf4nznu8lzt5d3ifk {
  position: relative;
  height: 910px;
}
#x8fjf4nznu8lzt5d3ifk div {
  margin: 0;
  padding: 0;
}
#x8fjf4nznu8lzt5d3ifk .easys_content_inner {
  position: absolute;
  top: 0;
  left: calc(50% - 1000px);
  width: 2000px;
}


