@charset "UTF-8";

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #333;
  font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
  @media screen and (max-width: 767px) {
    body {
      font-size: 3.73vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #c19746;
}
a:visited {
  color: #c19746;
}
a:hover {
  text-decoration: none;
  color: #c19746;
}
a:active {
  color: #c19746;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  /*font-size: 0;*/
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*画像ズーム*/
figure.img_zoom img {
  width: 100%;
  transition: all 0.3s ease 0s;
}
figure.img_zoom span {
  display: block;
  overflow: hidden;
}
a:hover figure.img_zoom img {
  opacity: 1!important;
  transform: scale(1.1);
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
  font-weight: 700;
}

/*----------------------------------------------------
  form要素
--------------------------------------------------- */
input,
textarea {
  outline: none;
  border: 1px solid #aaa;
  transition: all .3s;
  -webkit-transition: all .3s;
  -ms-transition:none;
}
input:focus,
textarea:focus {
  box-shadow: 0 0 7px #52a8ec;
  border: 1px solid #52a8ec;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
  background: #fff;
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  min-width: 1220px;
  overflow:hidden;
  margin: 0 auto;
  padding-top: 90px;
}
#contents {
  position: relative;
  line-height: 1.8;
}
#contents a:hover img{
  opacity: 0.70;
}
.wrapper {
  position: relative;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 767px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #page {
      padding-top: 70px;
    }
    #contents {
    }
    .wrapper, .inner {
      width:100%;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
  @media screen and (max-width: 1200px) {
    .hd_inner {
      position: relative;
      width: 1220px;
      height: 100%;
      margin: 0 auto;
    }
  }
  @media screen and (max-width: 767px) {
    #header {
      width: 100%;
      height: 70px;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }
    .hd_inner {
      width: 100%;
    }
  }

#header .logo {
  position: absolute;
  left: 12px;
  top: 12px;
}
.hd_reserve {
  position: absolute;
  top: 0;
  right: 90px;
  width: 140px;
  height: 90px;
}
.hd_reserve a {
  display: block;
  height: 100%;
  background: url("../img/common/ico/ico_bell01.png") #D1AE15 center 23px no-repeat;
  background-size: 18px 14px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding-top: 45px;
}
.hd_reserve a:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 767px) {
    #header .logo {
      left: 10px;
      top: 12px;
    }
    #header .logo img {
      width: 140px;
    }
    .hd_reserve {
      right: 70px;
      width: 70px;
      height: 70px;
    }
    .hd_reserve a {
      background: url("../img/common/ico/ico_bell01.png") #D1AE15 center 18px no-repeat;
      background-size: 18px 14px;
      padding-top: 40px;
      font-size: 1.4rem;
    }
  }
  @media screen and (max-width: 374px) {
    .hd_reserve {
      width: 62px;
    }
    .hd_reserve a {
      font-size: 1rem;
    }
  }

.hd_tel {
  position: absolute;
  right: 475px;
  top: 20px;
  text-align: center;
  color: #69656d;
  letter-spacing: 0.1rem;
}
.hd_tel span {
  display: block;
  font-size: 2.6rem;
  margin-bottom: 8px;
}
.hd_tel small {
  display: block;
  font-size: 1.5rem;
}
  @media screen and (max-width: 767px) {
    .hd_tel_sp {
      position: absolute;
      top: 0;
      right: 140px;
      width: 70px;
      height: 70px;
    }
    .hd_tel_sp a {
      display: block;
      height: 100%;
      background: url("../img/common/ico/ico_search01.png") #647969 center 18px no-repeat;
      background-size: 16px auto;
      color: #fff;
      text-align: center;
      text-decoration: none;
      padding-top: 40px;
      font-size: 1.2rem;
    }
    .hd_tel_sp a:hover {
      opacity: 0.7;
    }
    .hd_access a {
      background: url("../img/common/ico/ico_map.png") #647969 center 18px no-repeat;
      background-size: 16px auto;
      font-size: 1.4rem;
    }
  }
  @media screen and (max-width: 374px) {
    .hd_tel_sp {
      width: 62px;
      right: 132px;
    }
    .hd_tel_sp a {
      font-size: 1rem;
    }
  }
  @media screen and (max-width: 359px) {
    .hd_tel_sp {
      display: none;
    }
  }

.hd_menu {
  position: absolute;
  bottom: 8px;
  right: 260px;
}
.hd_menu li {
  margin-bottom: 15px;
}
.hd_menu li a {
  display: inline-block;
  color: #69656d;
  font-size: 1.5rem;
  text-decoration: none;
  padding-left: 13px;
  background: url("../img/common/ico/ico_arrow01.png") 0 3px no-repeat;
  background-size: 7px 11px;
}
.hd_menu li a:hover {
  color: #d4b572;
  text-decoration: underline;
}

.hd_sns {
  position: absolute;
  top: 19px;
  right: 260px;
}
.hd_sns li {
  margin-left: 10px;
}
.hd_sns li a:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 767px) {
    .hd_sns {
      display: none;
    }
  }

.hd_link_en {
    margin-right: 10px;
    padding: 1px 10px 2px;
    font-size: 1.5rem;
}
.hd_menu_flex {
    bottom: 0;
    right: 260px;
}
.hd_menu_flex ul {
    display: flex;
}
.hd_menu_flex li {
    margin-left: 1.82vw;
}

/*----------------------------------------------------
	パンくずリスト
----------------------------------------------------*/
#crumbs {
  position: absolute;
  top: -22px;
  z-index: 2;
  left: calc(50% - 440px);
  width: calc(50% + 440px);
  height: 44px;
  background: #69656D;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
#crumbs li {
  color: #fff;
}
#crumbs li a {
  position: relative;
  display: block;
  color: #fff;
  padding-right: 20px;
  margin-right: 14px;
  background: url("../img/common/ico/ico_arrow02.png") right center no-repeat;
  background-size: 6px 11px;
}
#crumbs li br {
  display: none;
}
  @media screen and (max-width: 767px) {
    #crumbs {
      top: -4vw;
      left: 4vw;
      width: calc(100% - 4vw);
      height: auto;
      min-height: 8vw;
      font-size: 3.46vw;
      padding: 0 3vw;
    }
    #crumbs li a {
      padding-right: 4vw;
      margin-right: 2vw;
      background-size: 1.66vw auto;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/

/*フッターバナー*/
#ft_bnr {
  background: #FBF7F1;
  padding: 50px 0;
  height: 158px;
  overflow: hidden;
}
.ft_bnr_slider {
  padding: 0 40px;
}
.ft_bnr_slider li {
  padding: 0 0.1%;
}
.ft_bnr_slider li a {
  display: block;
  text-align: center;
  background: #fff;
}
.ft_bnr_slider li a:hover img {
  opacity: 0.7;
}
.ft_bnr_slider .slick-arrow {
  position: absolute;
  top: calc(50% - 6px);
  cursor: pointer;
  z-index: 2;
}
.ft_bnr_slider .prev_btn {
  left: 10px;
}
.ft_bnr_slider .next_btn {
  right: 10px;
}
  @media screen and (max-width: 767px) {
    #ft_bnr {
      padding: 8vw 0;
      height: 27.2vw;
    }
    .ft_bnr_slider {
      padding: 0 8vw;
    }
    .ft_bnr_slider li {
      width: 100%;
      padding: 0 1vw;
    }
    .ft_bnr_slider li img {
      width: 100%;
      height: auto;
    }
    .ft_bnr_slider .slick-arrow {
      top: calc(50% - 2vw);
    }
    .ft_bnr_slider .slick-arrow img {
      width: auto;
      height: 4vw;
    }
    .ft_bnr_slider .prev_btn {
      left: 2.66vw;
    }
    .ft_bnr_slider .next_btn {
      right: 2.66vw;
    }
  }

#footer {
  background-image: -moz-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: -ms-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
}
#footer .wrapper {
  padding: 135px 0 140px;
  /*padding: 135px 0 140px;*/
}
.ft_menu {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
}
.ft_menu li {
  position: relative;
}
.ft_menu li::after {
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
  content: "";
  width: 1px;
  height: 12px;
  background: #fff;
}
.ft_menu li:first-child::after {
  display: none;
}
.ft_menu li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  padding: 0 16px;
  letter-spacing: 0.15rem;
}
.ft_menu li a:hover {
  text-decoration: underline;
}
  @media screen and (max-width: 767px) {
    #footer .wrapper {
      padding: 8vw 4vw 6vw;
    }
    .ft_menu {
      display: none;
    }
  }

.ft_info {
  position: relative;
  width: 360px;
  color: #fff;
  line-height: 1.6;
  font-size: 1.5rem;
  margin-bottom: 75px;
}
.ft_logo {
  display: inline-block;
  margin-bottom: 12px;
}
.ft_info a {
  color: #fff;
}
.ft_sns {
  position: absolute;
  right: 0;
  bottom: 4px;
}
.ft_sns li {
  margin-left: 12px;
}
.ft_sns li img {
  transition: all 0.2s ease-in-out 0s;
}
.ft_sns li a:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
  @media screen and (max-width: 767px) {
    .ft_info {
      width: 100%;
      font-size: 3.73vw;
      margin-bottom: 8vw;
    }
    .ft_logo {
      display: inline-block;
      margin-bottom: 3vw;
      text-align: center;
    }
    .ft_logo img {
      width: 50vw;
      height: auto;
    }
    .ft_sns {
      bottom: 0;
    }
    .ft_sns li {
      margin-left: 3vw;
    }
    .ft_sns li img {
      width: auto;
      height: 5.4vw;
    }
  }

.ft_relation {
  position: absolute;
  top: 135px;
  right: 0;
  width: 730px;
}
.ft_relation::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: calc(50vw + 130px);
  height: 100%;
  background: rgba(255,255,255,0.5);
}
  @media screen and (max-width: 1200px) {
    .ft_relation::after {
      width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .ft_relation {
      position: relative;
      top: 0;
      width: 100%;
      margin-bottom: 6vw;
    }
  }

.ft_group {
  position: relative;
  z-index: 2;
  background: #2B0000;
  text-align: center;
  color: #fff;
  width: 242px;
}
.ft_group::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
  height: 38px;
  content: "";
  border-style: solid;
  border-width: 0 62px 38px 0;
  border-color: transparent #411a1a transparent transparent;
}
.ft_group::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 38px;
  content: "";
  border-style: solid;
  border-width: 38px 0 0 62px;
  border-color: transparent transparent transparent #411a1a;
}
.ft_group dt {
  font-size: 1.7rem;
  font-weight: 500;
}
.ft_group dd {
  margin-top: 15px;
}
.ft_group dd a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 0 16px 7px 0;
}
.ft_group dd a:hover {
  opacity: 0.7;
}
.ft_group dd a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
}
.ft_group dd a::before {
  position: absolute;
  right: 4px;
  bottom: -2px;
  content: "";
  width: 1px;
  height: 14px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
  @media screen and (max-width: 767px) {
    .ft_group {
      width: 39%;
    }
    .ft_group::before {
      width: 32vw;
      height: 12vw;
      border-width: 0 32vw 12vw 0;
    }
    .ft_group::after {
      width: 32vw;
      height: 12vw;
      border-width: 12vw 0 0 32vw;
    }
    .ft_group dt {
      font-size: 3.73vw;
    }
    .ft_group dd {
      margin-top: 5vw;
    }
    .ft_group dd a {
      font-size: 3.46vw;
      padding: 0 4vw 3vw 0;
    }
  }

.ft_other {
  position: relative;
  z-index: 2;
  padding: 12px;
}
.ft_other figure a:hover {
  opacity: 0.7;
}
.ft_other figure {
  width: 165px;
  margin-right: 12px;
}
.ft_other_txt {
  width: 285px;
  position: relative;
  color: #2b0000;
  font-size: 1.4rem;
  line-height: 1.7;
}
.ft_other_txt h3 {
  font-weight: 400;
  font-size: 1.7rem;
  padding: 0 0 5px 0;
  line-height: 1.4;
}
.ft_other_txt h3 small {
  font-size: 80%;
}
.ft_other_link {
  text-align: right;
  margin-top: 5px;
}
.ft_other_link a {
  position: relative;
  display: inline-block;
  color: #2b0000;
  padding-left: 15px;
}
.ft_other_link a::before {
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  content: "";
  width: 7px;
  height: 11px;
  background: url("../img/common/ico/ico_arrow04.png") center center no-repeat;
  background-size: 7px 11px;
  transition: all 0.2s ease 0s;
}
  @media screen and (max-width: 767px) {
    .ft_other {
      width: 61%;
      padding: 2.33vw;
    }
    .ft_other figure {
      width: 100%;
      margin-right: 0;
    }
    .ft_other figure img {
      width: 100%;
      height: auto;
    }
    .ft_other_txt {
      width: 100%;
      font-size: 3.46vw;
      line-height: 1.5;
    }
    .ft_other_txt h3 {
      font-size: 3.73vw;
      padding: 0 0 0.66vw 0;
    }
    .ft_other_link {
      margin-top: 0;
    }
    .ft_other_link a {
      padding-left: 3.33vw;
    }
    .ft_other_link a::before {
      top: calc(50% - 1.2vw);
      width: 1.86vw;
      height: 2.93vw;
      background-size: 1.86vw 2.93vw;
    }
  }

.copyright {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}
  @media screen and (max-width: 767px) {
    .copyright {
      font-size: 3vw;
      letter-spacing: 0.3vw;
    }
  }

body .search-widget-search-container-bf1818 {
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  width: 100%!important;
  text-align: center;
  border-radius: 0!important;
}
.search-widget-search-container-bf1818.scroll_on {
  opacity: 1;
}
  @media screen and (max-width: 767px) {
    .search-widget-search-container-bf1818 {
      display: none!important;
    }
  }

/*AIコンシェルジュ非表示
.triplabot-icon-container,
#tripla-icon-message {
  display: none!important;
}*/

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
#lowerVisual {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("../img/main/main_other.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual::after {
  position: absolute;
  left: 0;
  top: -30px;
  content: "";
  width: 100%;
  height: 10px;
  box-shadow: 0 85px 85px 0 rgba(0,0,0,0.5);
}
.lv_inner {
  position: relative;
  height: 100%;
  color: #fff;
}
.lv_inner::before {
  position: absolute;
  right: calc(50% + 300px);
  top: 0;
  content: "";
  width: 650px;
  height: 330px;
  border-style: solid;
  border-width: 330px 325px 0 325px;
  border-color: rgba(255,255,255,0.1) transparent transparent transparent;
}
.lv_inner::after {
  position: absolute;
  left: calc(50% + 300px);
  bottom: 0;
  content: "";
  width: 650px;
  height: 330px;
  border-style: solid;
  border-width: 0 325px 330px 325px;
  border-color: transparent transparent rgba(255,255,255,0.1) transparent;
}
.lv_box {
  position: relative;
  z-index: 2;
}
  @media screen and (max-width: 767px) {
    #lowerVisual {
      height: 60vw;
    }
    .lv_inner::before {
      right: auto;
      left: -28vw;
      width: 65vw;
      height: 40vw;
      border-width: 40vw 32.5vw 0 32.5vw;
    }
    .lv_inner::after {
      left: auto;
      right: -28vw;
      width: 65vw;
      height: 40vw;
      border-width: 0 32.5vw 40vw 32.5vw;
    }
  }

.page_ttl {
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}
.page_ttl b {
  display: block;
}
.page_ttl b span {
  display: inline-block;
  font-size: 4.8rem;
}
.page_ttl b span:first-letter {
  color: #d1ae15;
}
.page_ttl small {
  font-size: 3rem;
  font-weight: 400;
}
  @media screen and (max-width: 767px) {
    .page_ttl b span {
      font-size: 8vw;
    }
    .page_ttl small {
      font-size: 5vw;
    }
  }

.lv_txt {
  margin-top: 20px;
  line-height: 1.5;
}
.lv_txt p {
  font-size: 2.6rem;
}
.lv_txt p span {
  font-size: 3.4rem;
}
.lv_txt strong {
  display: inline-block;
  background: #D1AE15;
  border-radius: 25px;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  min-width: 180px;
  padding: 9px 10px;
  margin-top: 12px;
}
  @media screen and (max-width: 767px) {
    .lv_txt {
      margin: 3vw 0;
    }
    .lv_txt p {
      font-size: 3.73vw;
      line-height: 1.3;
    }
    .lv_txt p span {
      font-size: 5.33vw;
    }
    .lv_txt strong {
      border-radius: 8vw;
      font-size: 3.46vw;
      letter-spacing: 0.3vw;
      min-width: 32vw;
      padding: 1.33vw;
      margin-top: 2.66vw;
    }
  }

#lowerVisual.main_room {
  background: url("../img/main/main_room.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_facilities {
  background: url("../img/main/main_facilities.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_access {
  background: url("../img/main/main_access.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_contact,
#lowerVisual.main_contact_test,
#lowerVisual.main_thanks {
  background: url("../img/main/main_contact.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_privacy {
  background: url("../img/main/main_privacy.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_news {
  background: url("../img/main/main_news.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_blog {
  background: url("../img/main/main_blog.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_guide {
  background: url("../img/main/main_guide.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_gourmet {
  background: url("../img/main/main_gourmet.jpg?v=2") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_events {
  background: url("../img/main/main_events.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_spots {
  background: url("../img/main/main_spots.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_cafe_style_raffine {
  background: url("../img/main/main_cafe_style_raffine.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_breakfast {
  background: url("../img/main/main_breakfast.jpg") center center no-repeat;
  background-size: cover;
}

/*テストページ*/
#lowerVisual.main_room_test {
  background: url("../img/main-test/main_room.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_facilities_test {
  background: url("../img/main-test/main_facilities.jpg") center center no-repeat;
  background-size: cover;
}
#lowerVisual.main_access_test {
  background: url("../img/main-test/main_access.jpg") center center no-repeat;
  background-size: cover;
}



.sub_ttl01 {
  text-align: center;
}
.sub_ttl01 b {
  position: relative;
  font-size: 4.4rem;
  font-weight: 500;
  display: block;
  color: #d4b572;
  padding-bottom: 2px;
  margin-bottom: 10px;
  letter-spacing: 0.2rem;
}
.sub_ttl01 b::after {
  position: absolute;
  left: calc(50% - 17px);
  bottom: 0;
  content: "";
  width: 34px;
  height: 1px;
  background: #d4b572;
}
.sub_ttl01 span {
  font-size: 2.2rem;
  font-weight: 500;
  display: block;
  color: #69656d;
  letter-spacing: 0.1rem;
}
  @media screen and (max-width: 767px) {
    .sub_ttl01 b {
      font-size: 7vw;
      padding-bottom: 1vw!important;
      margin-bottom: 2.66vw;
      letter-spacing: 0.4vw;
    }
    .sub_ttl01 b::after {
      left: calc(50% - 4vw);
      width: 8vw;
    }
    .sub_ttl01 span {
      font-size: 4vw;
      letter-spacing: 0.2vw;
    }
  }

.sub_ttl02 {
  text-align: center;
}
.sub_ttl02 b {
  position: relative;
  font-size: 4.4rem;
  font-weight: 500;
  display: block;
  color: #49624f;
  padding-bottom: 2px;
  margin-bottom: 10px;
  letter-spacing: 0.2rem;
}
.sub_ttl02 b::after {
  position: absolute;
  left: calc(50% - 17px);
  bottom: 0;
  content: "";
  width: 34px;
  height: 1px;
  background: #bfc7c0;
}
.sub_ttl02 span {
  font-size: 2rem;
  font-weight: 500;
  display: block;
  letter-spacing: 0.1rem;
}
  @media screen and (max-width: 767px) {
    .sub_ttl02 b {
      font-size: 7vw;
      padding-bottom: 1vw;
      margin-bottom: 2.66vw;
      letter-spacing: 0.4vw;
    }
    .sub_ttl02 b::after {
      left: calc(50% - 4vw);
      width: 8vw;
    }
    .sub_ttl02 span {
      font-size: 4vw;
      letter-spacing: 0.2vw;
    }
  }

.sub_ttl03 {
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
}
.sub_ttl03 span {
  text-align: center;
  display: block;
  font-size: 2.2rem;
  margin-bottom: 3px;
}
.sub_ttl03 small {
  text-align: center;
  display: block;
  font-size: 1.5rem;
  color: #d4b572;
}
  @media screen and (max-width: 767px) {
    .sub_ttl03 {
      margin-bottom: 6vw;
    }
    .sub_ttl03 span {
      font-size: 5vw;
      margin-bottom: 1vw;
    }
    .sub_ttl03 small {
      font-size: 3.46vw;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 2px;
  bottom: 145px;
  z-index: 90;
  display:none;
}
.pagetop a:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 767px) {
    .pagetop {
      display: none!important;
    }
  }

.btn01 {
  position: relative;
  z-index: 5;
  text-align: center;
}
.btn01 a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  width: 360px;
  padding: 14px 10px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background-image: -moz-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: -ms-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
}
.btn01 a:hover {
  filter: brightness(1.1);
}
.btn01 a::after {
  position: absolute;
  right: 30px;
  top: calc(50% - 6px);
  content: "";
  width: 7px;
  height: 12px;
  background: url("../img/common/ico/ico_arrow02.png") center center no-repeat;
  background-size: 7px 12px;
  transition: all 0.2s ease 0s;
}
.btn01 a:hover::after {
  right: 27px;
}
  @media screen and (max-width: 767px) {
    .btn01 a {
      display: block;
      font-size: 4.4vw;
      letter-spacing: 0.3vw;
      width: 100%;
      padding: 3.46vw 2.66vw;
      border-radius: 7vw;
    }
    .btn01 a::after {
      right: 7vw;
      top: calc(50% - 1.6vw);
      width: 1.86vw;
      height: 3.2vw;
      background-size: 1.86vw 3.2vw;
    }
    .btn01 a:hover::after {
      right: 6vw;
    }
  }

.btn02 {
  position: relative;
  z-index: 5;
  text-align: center;
}
.btn02 a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  width: 320px;
  padding: 11px 10px;
  border-radius: 30px;
  text-align: center;
  color: #d4b572;
  border: solid 1px #d4b572;
  text-decoration: none;
}
.btn02 a:hover {
  background: #FDFBF8;
}
.btn02 a::after {
  position: absolute;
  right: 25px;
  top: calc(50% - 6px);
  content: "";
  width: 7px;
  height: 12px;
  background: url("../img/common/ico/ico_arrow03.png") center center no-repeat;
  background-size: 7px 12px;
  transition: all 0.2s ease 0s;
}
.btn02 a:hover::after {
  right: 22px;
}
  @media screen and (max-width: 767px) {
    .btn02 a {
      display: block;
      font-size: 4.4vw;
      letter-spacing: 0.3vw;
      width: 100%;
      padding: 3.46vw 2.66vw;
      border-radius: 7vw;
    }
    .btn02 a::after {
      right: 7vw;
      top: calc(50% - 1.6vw);
      width: 1.86vw;
      height: 3.2vw;
      background-size: 1.86vw 3.2vw;
    }
    .btn02 a:hover::after {
      right: 6vw;
    }
  }

.btn03 {
  position: relative;
  z-index: 5;
}
.btn03 a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  width: 340px;
  padding: 14px 10px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background-image: -moz-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: -ms-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  box-shadow: 3.536px 3.536px 5px 0px rgba(0, 0, 0, 0.1);
}
.btn03 a:hover {
  filter: brightness(1.1);
}
.btn03 a::after {
  position: absolute;
  right: 30px;
  top: calc(50% - 6px);
  content: "";
  width: 7px;
  height: 12px;
  background: url("../img/common/ico/ico_arrow02.png") center center no-repeat;
  background-size: 7px 12px;
  transition: all 0.2s ease 0s;
}
.btn03 a:hover::after {
  right: 27px;
}
  @media screen and (max-width: 767px) {
    .btn03 a {
      display: block;
      font-size: 4.4vw;
      letter-spacing: 0.3vw;
      width: 100%;
      padding: 3.46vw 2.66vw;
    }
    .btn03 a::after {
      right: 7vw;
      top: calc(50% - 1.6vw);
      width: 1.86vw;
      height: 3.2vw;
      background-size: 1.86vw 3.2vw;
    }
    .btn03 a:hover::after {
      right: 6vw;
    }
  }

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

/*ハンバーガーメニュー*/
.trs {
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}
/*trp*/
.trp {
  -webkit-transition: opacity .1s ease;
  -moz-transition: opacity .1s ease;
  -ms-transition: opacity .1s ease;
  -o-transition: opacity .1s ease;
  transition: opacity .1s ease;
  opacity: 1;
  filter: alpha(opacity=100);
}
.trp:hover {
  opacity: .6;
  filter: alpha(opacity=60);
}
/* trs-dr */
.trs-dr02 {
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -ms-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
}
.trs-dr03 {
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  -ms-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}
.trs-dr05 {
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -ms-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}
.trs-dr06 {
  -webkit-transition-duration: .6s;
  -moz-transition-duration: .6s;
  -ms-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s;
}
.trs-dr08 {
  -webkit-transition-duration: .8s;
  -moz-transition-duration: .8s;
  -ms-transition-duration: .8s;
  -o-transition-duration: .8s;
  transition-duration: .8s;
}
.trs-dr12 {
  -webkit-transition-duration: 1.2s;
  -moz-transition-duration: 1.2s;
  -ms-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
/* trs-tf */
.trs-tfCb {
  -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  transition-timing-function: cubic-bezier(0, .96, .4, .99);
}
.menuTrigger {
  position: absolute;
  z-index: 150;
  top: 0;
  right: 0;
  display: block;
  width: 90px;
  height: 90px;
  cursor: pointer;
  transition: .3s;
  background: #69656D;
}
.menuTrigger.open {
  z-index: 200;
  position: fixed;
}
.menuIcon_line {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 1px;
  background: #fff;
}
.menuIcon_line:nth-of-type(1) {
  top: calc(50% - 10px);
}
.menuIcon_line:nth-of-type(2) {
  top: 50%;
}
.menuIcon_line:nth-of-type(3) {
  top: calc(50% + 10px);
}
/* open */
.menuTrigger.open .menuIcon_line {
  background: #fff;
}
.menuTrigger.open .menuIcon_line:nth-of-type(1) {
  top: 44px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuTrigger.open .menuIcon_line:nth-of-type(2) {
  opacity: 0;
}
.menuTrigger.open .menuIcon_line:nth-of-type(3) {
  top: 44px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hbNav {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #D5B673;
  z-index: 150;
  overflow-y: visible;
  overflow-x: hidden;
  -webkit-overflow-scrolling: auto;
  overflow-scrolling: auto;
}
  @media screen and (max-width: 1200px) {
    #hbNav {
      width: 1220px;
    }
  }
  @media screen and (max-width: 767px) {
    #hbNav {
      width: 100%;
    }
    .menuTrigger {
      width: 70px;
      height: 70px;
    }
    .menuIcon_line {
      margin-left: -17px;
      width: 34px;
      height: 1px;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(1),
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: 34px;
    }
  }

.hb_inner {
  display: table;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
}
.hb_box {
  position: relative;
}
.hb01 {
  position: relative;
  padding-top: 55px;
  background: #fff;
}
.hb01::before {
  position: absolute;
  right: calc(50% + 150px);
  top: 0;
  content: "";
  width: 944px;
  height: 480px;
  border-style: solid;
  border-width: 480px 472px 0 472px;
  border-color: rgba(170,139,80,0.1) transparent transparent transparent;
}
.hb01::after {
  position: absolute;
  left: calc(50% + 150px);
  bottom: 0;
  content: "";
  width: 944px;
  height: 480px;
  border-style: solid;
  border-width: 0 472px 480px 472px;
  border-color: transparent transparent rgba(170,139,80,0.1) transparent;
}
.hb01 .wrapper {
  z-index: 5;
}
.hb02 {
  padding: 50px 0 230px;
  background-image: -moz-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: -ms-linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
  background-image: linear-gradient( 0deg, rgba(212,181,114,0.99608) 0%, rgb(166,135,76) 100%);
}
  @media screen and (max-width: 767px) {
    .hb_inner {
      padding-bottom: 0;
    }
    .hb01 {
      padding: 0;
    }
    .hb01 .wrapper {
      padding: 95px 4vw 8vw;
    }
    .hb01::before {
      display: none;
    }
    .hb01::after {
      left: calc(50% - 10vw);
      width: 100vw;
      height: 60vw;
      border-width: 0 50vw 60vw 50vw;
    }
    .hb02 {
      padding: 8vw 4vw;
    }
  }

.hb_logo {
  display: block;
  text-align: center;
  padding-bottom: 338px;
}
.hb_tripla {
  position: absolute;
  left: 0;
  top: 250px;
  width: 100%;
}
.hb_tripla li {
  width: 280px;
  height: 80px;
  margin: 0 13px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.hb_tripla li a {
  display: block;
  height: 100%;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding-top: 45px;
}
.hb_tripla li a:hover {
  opacity: 0.7;
}
.hb_reserve a {
  background: url("../img/common/ico/ico_bell02.png") #D1AE15 center 18px no-repeat;
  background-size: 25px 20px;
}
.hb_search a {
  background: url("../img/common/ico/ico_search01.png") #980825 center 18px no-repeat;
  background-size: 21px 21px;
}
.hb_cancel {
  position: absolute;
  width: 100%;
  top: 355px;
  text-align: center;
}
.hb_cancel a:link,
.hb_cancel a:visited {
  color: #666;
}
  @media screen and (max-width: 767px) {
    .hb_logo {
      position: absolute;
      left: 10px;
      top: 12px;
      z-index: 5;
      padding-bottom: 0;
    }
    .hb_logo img {
      width: 140px;
      height: auto;
    }
    .hb_tripla {
      position: static;
      width: 100%;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      -o-justify-content: space-between;
      justify-content: space-between;
    }
    .hb_tripla li {
      width: 44vw;
      height: 22vw;
      margin: 0;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }
    .hb_tripla li a {
      font-size: 4vw;
      padding-top: 13vw;
    }
    .hb_reserve a {
      background: url("../img/common/ico/ico_bell02.png") #D1AE15 center 5vw no-repeat;
      background-size: 6.66vw auto;
    }
    .hb_search a {
      background: url("../img/common/ico/ico_search01.png") #980825 center 5vw no-repeat;
      background-size: 5.33vw auto;
    }
    .hb_cancel {
      position: static;
      margin-top: 25px;
      font-size: 4vw;
    }
  }

.hb_tel {
  position: absolute;
  left: 0;
  top: 142px;
  width: 100%;
  text-align: center;
  letter-spacing: 0.1rem;
}
.hb_tel dt {
  display: block;
  font-size: 3rem;
  margin-bottom: 8px;
}
.hb_tel dd {
  display: block;
  font-size: 1.7rem;
}
.hb_mail {
  position: absolute;
  left: 0;
  top: 165px;
  width: 100%;
  text-align: center;
}
.hb_mail a {
  display: inline-block;
  font-size: 1.8rem;
  padding-left: 32px;
  background: url("../img/common/ico/ico_mail01.png") 0 center no-repeat;
  background-size: 26px 19px;
}
  @media screen and (max-width: 767px) {
    .hb_tel {
      position: static;
      width: 100%;
      letter-spacing: 0.3vw;
      color: #fff;
      padding-bottom: 56vw;
    }
    .hb_tel dt {
      font-size: 7vw;
      margin-bottom: 3.73vw;
    }
    .hb_tel dt a {
      color: #fff;
    }
    .hb_tel dd {
      font-size: 4vw
    }
    .hb_mail {
      position: static;
      width: 100%;
      margin-bottom: 10.66vw;
    }
    .hb_mail a {
      font-size: 4.7vw;
      padding-left: 8.2vw;
      background-size: 6.66vw auto;
    }
  }

.hb_menu01 {
  padding-bottom: 80px;
}
.hb_menu01 li {
  position: relative;
  width: 280px;
  overflow: hidden;
  background-image: -moz-linear-gradient( 0deg, rgba(133,128,139,0.99608) 0%, rgb(105,101,109) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgba(133,128,139,0.99608) 0%, rgb(105,101,109) 100%);
  background-image: -ms-linear-gradient( 0deg, rgba(133,128,139,0.99608) 0%, rgb(105,101,109) 100%);
  background-image: linear-gradient( 0deg, rgba(133,128,139,0.99608) 0%, rgb(105,101,109) 100%);
  transition: all 0.2s ease-in-out 0s;
}
.hb_menu01 li::after {
  position: absolute;
  left: -45px;
  top: 0;
  content: "";
  border-style: solid;
  border-width: 70px 67.5px 0 67.5px;
  border-color: #ffffff transparent transparent transparent;
  width: 135px;
  height: 70px;
  opacity: 0.1;
}
.hb_menu01 li:hover {
  opacity: 0.7;
}
.hb_menu01 li a {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.1rem;
}
.hb_menu01 li a::before {
  position: absolute;
  right: 18px;
  top: calc(50% - 5px);
  content: "";
  width: 10px;
  height: 17px;
  background: url("../img/common/ico/ico_arrow02.png") center center no-repeat;
  background-size: 10px 17px;
  transition: all 0.2s ease 0s;
}
.hb_menu01 li a:hover::before {
  right: 15px;
}
.hb_menu01 li small {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 7px;
}
.hb_menu01 li span {
  font-size: 2rem;
  display: block;
}
  @media screen and (max-width: 767px) {
    .hb_menu01 {
      padding-bottom: 6.66vw;
    }
    .hb_menu01 li {
      width: 100%;
      margin-bottom: 3vw;
      overflow: hidden;
    }
    .hb_menu01 li::after {
      left: -11vw;
      top: -3vw;
      border-width: 18.66vw 18vw 0 18vw;
      width: 36vw;
      height: 18.66vw;
    }
    .hb_menu01 li a {
      height: 18vw;
      text-decoration: none;
      color: #fff;
      letter-spacing: 0.3vw;
    }
    .hb_menu01 li a::before {
      position: absolute;
      right: 18px;
      top: calc(50% - 1.5vw);
      width: 2vw;
      height: 3vw;
      background-size: 2vw 3vw;
    }
    .hb_menu01 li a:hover::before {
      right: 4vw;
    }
    .hb_menu01 li small {
      font-size: 3.73vw;
      margin-bottom: 1.66vw;
    }
    .hb_menu01 li span {
      font-size: 4.7vw;
    }
  }

.hb_menu02 li {
  position: relative;
}
.hb_menu02 li::after {
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
  content: "";
  width: 1px;
  height: 16px;
  background: #fff;
}
.hb_menu02 li:last-child::after {
  display: none;
}
.hb_menu02 li a {
  display: block;
  color: #fff;
  padding: 0 18px;
  letter-spacing: 0.15rem;
}
  @media screen and (max-width: 767px) {
    .hb_menu02 {
      padding-bottom: 4vw;
      text-align: center;
      align-items: center;
      line-height: 1.8rem;
      flex-wrap: wrap;
    }
    .hb_menu02 li::after {
      top: calc(50% - 1.5vw);
      width: 1px;
      height: 3vw;
    }
    .hb_menu02 li a {
      padding: 1vw 3vw 0;
      letter-spacing: 0;
      font-size: 3.46vw;
    }
  }

.category_hb_list {
  padding-bottom: 40px;
}
.category_hb_list .category_menu_box {
  width: 230px;
  height: 160px;
  margin: 0 13px 0 0;
}
.category_hb_list .category_menu_box:last-child {
  margin-right: 0;
}
.category_hb_list .category_menu_box:hover {
  opacity: 1!important;
}
.category_hb_list .category_menu_box figure {
  padding: 0 0 2px;
}
.category_hb_list .category_menu_box figure img {
  width: 90px;
}
.category_hb_list .category_menu_box h4 {
  font-size: 1.6rem;
}
.category_hb_list .category_menu_box b {
  font-size: 2.6rem;
}
  @media screen and (max-width: 767px) {
    .category_hb_list {
      padding-bottom: 8vw;
      flex-wrap: wrap;
    }
    .category_hb_list {
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .category_hb_list .category_menu_box {
      width: 44vw;
      height: 38vw;
      margin: 0 0 4vw 0;
    }
    .category_hb_list .category_menu_box::after {
      width: 4vw;
      height: 4vw;
      border-width: 0 0 4vw 4vw;
    }
    .category_hb_list .category_menu_box figure {
      padding: 1vw 0;
    }
    .category_hb_list .category_menu_box figure img {
      width: 20vw;
      height: auto;
    }
    .category_hb_list .category_menu_box h4 {
      font-size: 4vw;
    }
    .category_hb_list .category_menu_box b {
      font-size: 6vw;
    }
  }

.hb_sns {
  padding-bottom: 40px;
}
.hb_sns li {
  margin: 0 15px;
}
.hb_sns li img {
  transition: all 0.2s ease-in-out 0s;
}
.hb_sns li a:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
  @media screen and (max-width: 767px) {
    .hb_sns {
      padding-bottom: 10.66vw;
    }
    .hb_sns li {
      margin: 0 4vw;
    }
    .hb_sns li img {
      width: auto;
      height: 8vw;
    }
  }

.hb_relation {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
}
.hb_relation li {
  margin: 0 20px;
  background: #fff;
}
.hb_relation li a {
  display: block;
}
.hb_relation li a:hover {
  opacity: 0.9;
}
  @media screen and (max-width: 767px) {
    .hb_relation {
      bottom: 10.66vw;
      padding: 0 2.4vw;
    }
    .hb_relation li {
      margin: 0 1.6vw;
    }
    .hb_relation li img {
      width: 100%;
      height: auto;
    }
  }

#hbNav::-webkit-scrollbar-thumb {
  background-color: #980825!important;
}
.br-sp {
  display: none;
}

@media (max-width: 600px) {
  .br-sp {
    display: block;
  }
}

.slick-dots li.slick-active button{
  color: #e0e0e0;
}


/*20250716追加　#index_nav*/
#index_nav {
    padding: 12vw 4vw 4vw;
}
#index_nav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
    gap: 10px;
}
#index_nav ul li {
    width: calc(50% - 5px);
    position: relative;
    font-size: 1.8rem;
    /*background: #c19746;*/
}
#index_nav ul li a::after {
    position: absolute;
    content: "";
    background: url("../img/common/ico/ico_arrow02.png") center center no-repeat;
    transition: all 0.2s ease 0s;
    right: 2.6vw;
    top: calc(50% - 1.33vw);
    width: 1.6vw;
    height: 2.66vw;
    background-size: 1.6vw 2.66vw;
}
#index_nav ul li a {
    text-decoration: none;
    font-size: 3.73vw;
    display: flex;
    color: #fff;
    position: relative;
    padding: 10px 20px;
    align-items: center;
    height: 100%;
}