@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  font-family: sans-serif;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
html {
  scroll-behavior: smooth;
}
.wrap {
  overflow: hidden;
}
.flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec_tl {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 2em;
  letter-spacing: .1em;
  margin-bottom: 30px;
}
.sec_tl .eng_tl {
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.4em;
  font-weight: 300;
  letter-spacing: .15em;
}
.sec_tl2 {
  font-size: clamp(23px, 2.8vw, 32px);
  letter-spacing: .1em;
  margin-bottom: 30px;
}
.sec_tl2 .eng_tl2 {
  text-transform: uppercase;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.4em;
  font-weight: 300;
  letter-spacing: .15em;
  font-weight: 400;
}
.item30 {
  width: calc(30% - 10px);
}
.item40 {
  width: calc(40% - 20px);
}
.item60 {
  width: calc(60% - 10px);
}
.item70 {
  width: calc(70% - 10px);
}
.item2 {
  width: calc(50% - 20px);
}
.item3 {
  width: calc(33.3% - 20px);
}
.item4 {
  width: calc(25% - 20px);
}
.item5 {
  width: calc(20% - 20px);
}
.wrap {
  overflow: hidden;
}
.txt_center {
  text-align: center;
}
table {
  width: 100%;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  transition: 1.0s;
  margin: 0 auto;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.img_left {
  margin-left: 0;
  margin-right: auto;
}
.center-block {
  display: block;
  margin: 0 auto;
}
.container-f {
  padding-left: 0px;
  padding-right: 0px;
  margin-right: auto;
  margin-left: auto;
}
.container {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}

/*.sightpage .container {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
}*/
.container-w {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1600px;
}
.top_header .navbar {
  opacity: 0;
}
.top_header .navbar.visible {
  opacity: 1;
  pointer-events: auto;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 10px;
}
.nav-btn {
  padding: 8px 10px;
  border: none;
  background-color: #333;
  color: white;
  min-width: 170px;
  cursor: pointer;
  font-size: 0.9em;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  min-height: 40px;

	  appearance: none;
  -webkit-appearance: none;
  border: none;

	  align-items: center;
  justify-content: center;
  box-sizing: border-box;

	  display: inline-flex;
	  text-decoration: none;
	line-height: 1;
}
.nav-btn:hover {
  background-color: #555;
}
.hamburger {
  position: relative;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  margin-left: 10px;
  margin-right: 30px;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}
.overlay {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1000;
  padding-top: 40px;
  overflow-y: auto; /* ← これがスクロールの鍵！ */
}
.overlay.active {
  display: flex;
}
.menu {
  width: 80%;
  max-width: 400px;
  color: white;
}
.accordion-item {
  border-bottom: 1px solid #555;
}
.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-size: 1.2em;
  text-align: left;
  padding: 10px;
  cursor: pointer;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #222;
  padding-left: 15px;
}
.accordion-content ul {
  margin: 0;
  padding: 10px 0;
  list-style: none;
}
.accordion-content li a {
  color: #ccc;
  text-decoration: none;
  display: block;
  padding: 5px 0;
}
.mv {
  width: 100%;
  height: 100vh;
  position: relative;
}



.mv a {
  color: #fff;
  text-decoration: none;
}
.mvcont {
  color: #fff;

}
.mvmenu {
  text-align: center;
  position: absolute;
  bottom: 3%;
  margin: auto;
  left: 0;
  right: 0;
  padding-top: 40px;
  border-top: 1px solid #fff;
}
.mvmenu li {
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
  line-height: 2em;
  font-size: 17px;
}
.tl img {
  position: absolute;
  top: 5%;
  left: 3%;
  max-width: 300px;
}
.fa-solid {
  font-size: 20px;
}
.mv_res {
  position: absolute;
  top: 3%;
  right: 3%;
/*  border: solid 1px #fff;*/
  width: 50%;

	/* display: flex;*/

}
.le_s {
  text-align: center;
  width: 50%;
  padding: 20px 0;
  border-right: solid 1px #fff;
}
.ri_s {
  text-align: center;
  width: 70%;
  padding: 20px 5px;
  font-size: 13px;
}

.mvinnebtn{
  border: solid 1px #fff;
	border-right: none;
	display: block;
	text-align: center;
	padding: 20px 0;

}

.mvinnebtn2{
  border: solid 1px #fff;

	display: block;
	text-align: center;
	padding: 20px 0;

}

.mv_res .item3{
    width: calc(33.3% - 0px);}



.btn_wl :hover {
  background: rgba(0, 0, 0, .2);
}
.logo img {
  max-width: 300px;
}
/*アコーディオン*/
.mainmenu {
  list-style: none;
  padding: 0 0 50px 0;
  margin: 0;
  width: 100%;
}
.mainmenu > li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  padding-top: 20px;
}
.mainmenu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.submenu {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
.submenu.open {
  /* 高さは JS で動的に設定するのでここでは指定しない */
}
.submenu li a {
  padding: 10px 16px;
  font-weight: normal;
  color: #555;
}
.submenu {
  padding-left: 30px;
}
.submenu li {
  position: relative;
}
.submenu li ::before {
  content: '- ';
  position: absolute;
  left: 0;
}
.toggle-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  font-weight: bold !important;
}
.menu_left {
  background: blue;
}
.menu_right {
  background: red;
}
.news {
  padding-top: 100px;
  padding-bottom: 100px;
}
.overlay .flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap; /* 折り返さないように */
  width: 100%;
  box-sizing: border-box;
  gap: 20px; /* 要素間のスペース */
}
.overlay .item70, .overlay .item30 {
  box-sizing: border-box;
}
.overlay .item70 {
  width: 70%;
}
.overlay .item30 {
  width: 30%;
}
.menu_left {
  background: #f6f6f6;
  padding: 20px;
}
.menu_right {
  background: #fff;
  padding: 20px;
  min-height: 100vh;
}
.minmenu li a {
  text-decoration: none;
  color: #000;
}
.minmenu li {
  padding-top: 15px;
  padding-bottom: 15px;
}
.snslist a {
  text-decoration: none;
  color: #000;
}
.snslist li {
  display: inline-block;
  margin-right: 10px;
  font-size: 30px;
}
.bannerlist {
  margin-top: 20px;
}
.lang_pc {
  width: 100%;
  height: 30px;
}
.spfooter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.spfooter .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.spfooter .item2 {
  flex: 1;
}
.btn_spft_stay {
  display: block;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  transition: all 0.3s ease;
}
.btn_spft_res {
  font-size: 13px;
  display: block;
  width: 100%;
  background: #444;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn_spft_res:hover, .btn_spft_stay:hover {
  opacity: .7;
}
.news_top_list_inner {
  margin-bottom: 25px;
  padding-bottom: 25px;
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 1px #ccc solid;
  justify-content: space-between;
}
.date {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(11px, 1.2vw, 12px);
}
.cat {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(11px, 1.2vw, 12px);
  padding: 5px;
  background: #111;
  margin-left: 10px;
  color: #fff;
}
.news_top_list_inner .item30 img {
  margin-right: 20px;
}
.newstxt li {
  display: inline-block;
}
.newstxt h3 {
  margin-top: 30px;
  letter-spacing: .1rem;
  font-size: clamp(14px, 1.7vw, 17px);
}
.mt20 {
  margin-top: 20px;
}
a {
  text-decoration: none;
  color: #000;
}
.sec_box {
  padding-top: 130px;
  padding-bottom: 130px;
}
.hb_sec_box {
  padding-bottom: 130px;
}
.ht_sec_box {
  padding-top: 130px;
}
.img_zoom_box {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #fff;
}
.img_zoom_box img {
  display: block;
  transition-duration: 1.5s;
  transition-timing-function: ease;
}
.img_zoom_box img:hover {
  transform: scale(1.15);
  transition-duration: 1.2s;
  opacity: 0.6;
}
/* footer */
footer {
  padding-top: 60px;
  border-top: solid 1px #dadada;
}
.cf1 {
  background-color: #f3f3f3;
  padding: 20px 0;
}
.cf1 img {
  max-width: 290px;
}
.cf2 {
  background-color: #d6d6d6;
  padding: 20px 0;
  text-align: center;
}
.cf2 li {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 13px;
  font-weight: 500;
}
.cf3 {
  padding: 25px 0;
}
.mt100 {
  margin-top: 100px;
}
.prt_logo {
  text-align: center;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.prt_logo li {
  margin-left: 10px;
  margin-right: 10px;
}
.copy {
  padding: 25px 0;
  text-align: center;
  font-size: 11px;
}
.contxt {
  padding-left: 5%;
  padding-right: 10%;
}
.footer_menu {
  padding-top: 50px;
  padding-bottom: 40px;
  text-align: center;
}
.footer_menu li {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 13px;
  font-weight: 500;
}
.footer_info {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer_info img {
  max-width: 300px;
}
.prt_logo img {
  display: block;
  width: 80px;
  height: auto;
}
.jal {
  width: 120px !important;
  height: auto;
}
.devider {
  border: none;
  height: 1px;
  background-color: #dadada;
}
.footer_sns {
  margin-top: 20px;
}
.footer_info p {
  line-height: 1.8em;
}
.footer_sns li {
  display: inline-block;
  margin-right: 10px;
  font-size: 25px;
}
.res_top {
  background: #f6f6f6;
}
p {
  line-height: 1.7em;
}
.res_top .flex_box {
  align-items: center;
}
.res_toptxt {
  padding: 5%
}
.res_topbg {
  background: url(../img/res_topbg.jpg);
  min-height: 600px;
  background-size: cover;
}
.slider_sight .sliderinner {
  padding-left: 10px;
  padding-right: 10px;
}
.txt_r {
  text-align: right;
}
.mt30 {
  margin-top: 30px;
}
.mb30 {
  margin-bottom: 30px;
}
.btn_arrow {
  border-bottom: 1px solid #ccc;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  position: relative;
  padding-right: 30px;
  padding-bottom: 5px;
  font-size: 120%;
}
.btn_arrow::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  margin-left: 50px;
  font-weight: 900;
  position: absolute;
  right: 0%;
  top: 10%;
  color: #111;
  font-size: 110%;
}
.btn_arrow:hover {
  border: none;
}
.btn_arrow:hover::after {
  color: #111;
}
.areainner {
  padding-left: 40px;
}
.staytop {
  background: url("/2026wp/wp-content/uploads/2026/03/staybg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.stayinner {
  background: #fff;
  padding: 8%;
}
.addotehrinner {
  border-left: 1px solid #ccc;
}
.otherinner {
  border-right: 1px solid #ccc;
  padding: 3%;
}
/*
  .concept {
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;
      z-index: 1;
      overflow: hidden;
    }

    .concept h2 {
      font-size: 2em;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .concept p {
      font-size: 1.1em;
      max-width: 700px;
      position: relative;
      z-index: 2;
    }

    .concept-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 400px;
      height: 400px;
      transform: translate(-50%, -50%) scale(1);
      transition: transform 0.1s ease-out;
      background-image: url('../img/hotelbgwide2.png');
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      z-index: 0;
      pointer-events: none;
    }*/
/*.concept{
	height: 80vh;
	 display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;
	background: url("../img/hotelex.png");
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}

    .concept h2 {
      font-size: 2em;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .concept p {
      font-size: 1.1em;
      max-width: 700px;
      position: relative;
      z-index: 2;
    }*/
.concept h2 {
  font-size: 2em;
}
.space {
  height: 10vh;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #f6f6f6 50%, #f6f6f6 100%);
}
.breadcrumb {
  padding-top: 15px;
  padding-bottom: 15px;
  list-style: none;
  margin-top: 60px;
}
.breadcrumb li {
  display: inline;
  list-style: none;
  font-size: 13px;
}
.breadcrumb li:after {
  content: '>';
  padding: 0 0.2em;
  color: #555;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #000;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.instawedding .container {
  text-align: center;
  padding: 180px 0;
  background: #ccc;
}
.video_top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/* 背景動画 */
.bg_video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  animation: fadeIn 3s ease-out forwards;
}
/* やわらかい光のオーバーレイ */
.light_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: lightFade 5s ease-out 1s forwards;
}
/* タイトル部分 */
.video_overlay {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.video_overlay h1 {
  font-size: 3rem;
  font-weight: bold;
  opacity: 0;
  animation: fadeInText 4s ease-out 1s forwards;
}
/* アニメーション */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes lightFade {
  to {
    opacity: 1;
  }
}
@keyframes fadeInText {
  to {
    opacity: 1;
  }
}
.wed_tl {
  margin-bottom: 40px;
  font-size: clamp(20px, 2.5vw, 25px);
  line-height: 1.5em;
}
.wed_en_tl {
  font-size: clamp(12px, 1.5vw, 15px);
  /*font-family: "Lavishly Yours", cursive;*/
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
}
.beigebg {
  background: #f4f2ef
}
.couple {
  text-align: center;
  margin-bottom: 10px;
}
.wed_style {
  text-align: center;
  font-size: 13px;
}
.wed_btn {
  margin: 30px auto;
  background: #a7946c;
  color: #fff;
  border: 1px solid #a7946c;
  display: block;
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
  letter-spacing: .1rem;
  width: 35%;
  position: relative;
}
.wed_btn::after {
  content: "→";
  font-weight: 800;
  position: absolute;
  right: 5%;
  top: 40%;
}
.wed_btn:hover {
  background: #fff;
  color: #a7946c;
}
.wed_concept {
  background: url("../img/fair_mainimg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.wed_concept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 透明度40%の黒 */
  z-index: 0;
}
.wed_concept .container {
  position: relative;
  z-index: 1;
}
.wed_concept h3 {
  margin-bottom: 25px;
  font-size: 25px;
}
.wed_banq_box {
  position: relative;
  margin-bottom: 20px;
}
.wed_banq_box h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f4f2ef;
  padding: 10px;
  min-width: 50%;
  font-size: clamp(14px, 1.8vw, 18px);
}
.p3 {
  padding: 3%;
}
.p15 {
  padding: 0 15%;
}
.flex_box_center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wedsliderinner {
  margin-left: 10px;
  margin-right: 10px;
}
.wedsliderinner h3 {
  font-size: clamp(15px, 1.8vw, 18px);
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.5em;
}
.wed_food {
  position: relative;
}
.wed_food .inner {
  position: absolute;
  background: #fff;
  width: 40%;
  padding: 4% 0 4% 4%;
  right: 0;
  top: 25%;
}
.sec_box_f {
  padding-top: 50px;
  padding-bottom: 130px;
}
.wed_reportpage .item4 {
  margin-bottom: 50px;
}
.pagination {
  text-align: center;
  margin-top: 50px;
}
.pagination li {
  display: inline-block;
  font-size: clamp(14px, 2vw, 18px);
}
.pagination li a:hover {
  color: #a7946c;
}
.page-link {
  background-color: rgba(157, 181, 207, .1);
  ;
  padding: 0.375rem 0.75rem;
}
.page-link:hover {
  z-index: 2;
  color: #a7946c;
  background-color: rgba(157, 181, 207, .3);
  ;
  border-color: #f5f5eb
}
.page-item:not(:first-child) .page-link {
  margin-left: -1px
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #a7946c;
  border-color: #a7946c
}
.weddetails .koumoku {
  text-transform: uppercase;
  border-bottom: #a7946c 1px solid;
}
.weddetails {
  text-align: center;
}
.wed_reportpage {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
.wed_report_detail .mainimg h4 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: clamp(16px, 2vw, 20px);
}
.wed_album {
  margin-top: 100px;
}
.interview h4 {
  margin-top: 30px;
  font-size: clamp(15px, 1.6vw, 16px);
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.interview h4::before {
  content: "─";
  position: absolute;
  left: 0;
}
.wed_report_detail {
  padding-top: 100px;
}
.wed_report_detail .wed_tl {
  margin-bottom: 20px;
}
.wed_album p {
  font-size: clamp(13px, 1.4vw, 14px);
}
.mt0 {
  margin-top: 0 !important;
}
.wed_album img {
  margin-bottom: 20px;
}
.interview {
  padding-top: 50px;
}
.maintl_wedreport {
  text-align: center;
  font-weight: 600;
  margin-bottom: 50px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5em;
}
.weddetails {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 1px solid #333;
  border-top: 1px solid #333;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.center-table {
  margin: 0 auto; /* テーブル全体を中央寄せ */
  border-collapse: collapse;
}
.center-table th, .center-table td {
  font-size: clamp(13px, 1.4vw, 14px);
  text-align: left; /* 各セル内のテキストを左寄せ */
  width: 50%;
  padding: 8px 10px;
}
.center-table th {
  font-weight: 500;
  white-space: nowrap; /* thの改行防止（任意） */
}
.kasou_mv {
  padding-top: 100px;
  padding-bottom: 100px;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.kasou_mv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.wedding_anquet_fv {
  background: url(../img/plan_mainimg.jpg);
}
.kasou_mv_txt {
  position: relative;
  z-index: 1;
}
.ja_sub_tl {
  font-size: clamp(13px, 1.4vw, 18px);
  margin-bottom: 40px;
  margin-top: 20px;
}
.ninzu {
  margin-bottom: 20px;
}
.en_main_tl {
  font-size: clamp(30px, 5vw, 52px);
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: .15em;
}
.wed_banq_listmokuji p {
  text-align: center;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 16px;
}
.banqja {
  font-size: 13px;
}
.wed_banqpage .sec_box {
  padding-top: 60px;
  padding-bottom: 60px;
}
.flex_box_center_reverse {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tablelayout li {
  display: inline-block;
  margin-right: 15px;
}
.tablelayout {
  margin-top: 20px;
}
.wedbanqindiv {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff 15%, #f4f2ef 15%, #f4f2ef 100%);
}
.ver_tl {
  font-size: 200px;
  text-transform: uppercase;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: rgba(167, 148, 108, .3);
  position: absolute;
  left: 0;
  top: 0;
}
.wedbanqindiv img {
  margin-bottom: 20px;
}
.f_wedfair {
  background: url("../img/banquet_bq2_img03.jpg");
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 60px;
  margin-bottom: 60px;
  background-position: center;
}
.f_wedfair h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
}
.bannerbtn {
  text-align: center;
  font-size: 14px;
  background: #fff;
  letter-spacing: .1rem;
  padding: 10px 15px;
  border: #ccc solid 1px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
}
/*タブのスタイル*/
.tab_item {
  width: calc(100%/6);
  height: 50px;
  border-bottom: 1px solid #333;
  background-color: #f6f6f6;
  line-height: 50px;
  font-size: clamp(13px, 1.7vw, 16px) !important;
  text-align: center;
  color: #333;
  display: block;
  float: left;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 0 0;
  clear: both;
  overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#t1:checked ~ #t1_content, #t2:checked ~ #t2_content, #t3:checked ~ #t3_content, #t4:checked ~ #t4_content, #t5:checked ~ #t5_content, #t6:checked ~ #t6_content, #t7:checked ~ #t7_content, #t8:checked ~ #t8_content {
  display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #333;
  color: #fff;
}
.c-txtsp {
  text-align: center;
}
.tab_content_description h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: clamp(18px, 1.8vw, 26px) !important;
  letter-spacing: .1rem;
}
.nw .tab_item {
  width: calc(100%/8);
}
.stay_plan .tab_item {
  font-size: clamp(13px, 1.4vw, 14px) !important;
}
.newslist li {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.news_cat {
  letter-spacing: .1rem;
  background: #333;
  color: #fff;
  font-size: 13px;
  margin-right: 20px;
  text-align: center;
  width: 25%;
  display: inline-block;
  padding: 8px 5px;
}
.news_date {
  margin-right: 20px;
}
.news_tl {
  font-weight: 500;
  text-decoration: underline;
  display: block;
  padding-top: 10px;
}
.kaso_top {
  padding-top: 100px;
  padding-bottom: 60px;
}
.kaso_top h1 {
  text-align: center;
  font-size: clamp(23px, 2.8vw, 32px);
  letter-spacing: .1em;
  margin-bottom: 30px;
  /*  line-height: 1.5em;
		font-size: clamp(27px, 3.2vw, 35px);*/
}
.kasotl_sub {
  text-transform: uppercase;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.4em;
  font-weight: 300;
  letter-spacing: .15em;
  font-weight: 400;
}
.lightgray {
  background: #f6f6f6;
}
.tbstyle_1 th {
  line-height: 1.6em;
  font-size: clamp(14px, 1.6vw, 16px);
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.tbstyle_1 td {
  font-size: clamp(14px, 1.6vw, 16px);
  padding-top: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #ccc;
  line-height: 1.6em;
  padding-left: 20px;
}
.kasoutl {
  border-bottom: 1px solid #ccc;
  margin: 30px 0;
  padding-bottom: 30px;
  position: relative;
}

.kasoutl::after {
  content: "";
  display: block;
  width: 60px;
  border-bottom: 1px solid #51555a;
  position: absolute;
  bottom: 0;
  margin-bottom: -1px
}
.kasoucon_box {
  background: #fff;
  padding: 50px 70px 140px;
  border-right: 1px solid #ccc;
}
.sidepart {
  background: #fff;
  padding: 20px;
  /*box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);*/
}
.sidepart li {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-left: 28px;
}
.sidepart li::before {
  content: "▸";
  position: absolute;
  left: 0;
}
.sidepart li.act {
  font-weight: bolder;
}
.whbg {
  background: #fff;
}
.tbstyle_2 th {
  padding: 20px;
  border: 1px solid #ccc;
}
.tbstyle_2 td {
  padding: 20px;
  border: 1px solid #ccc;
}
.tbstyle_2 ul {
  padding-left: 20px;
  list-style: disc;
}
.tbstyle_2 li {
  line-height: 2em;
}
.koumokuth {
  background: #555;
  color: #fff;
  letter-spacing: .1rem;
}
.mt80 {
  margin-top: 80px;
}
.sidetl {
  letter-spacing: .1rem;
  padding: 40px 30px;
  background: #555;
  color: #fff;
  margin-top: -10%;
}
.submenu_tl {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: clamp(16px, 2vw, 20px);
}
.wed_btn100 {
  margin: 30px auto;
  background: #a7946c;
  color: #fff;
  border: 1px solid #a7946c;
  display: block;
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
  letter-spacing: .1rem;
  width: 100%;
  position: relative;
}
.wed_btn100::after {
  content: "→";
  font-weight: 800;
  position: absolute;
  right: 5%;
  top: 40%;
}
.wed_btn100:hover {
  background: #fff;
  color: #a7946c;
}
.wed_btn_left {
  margin-top: 30px;
  background: #a7946c;
  color: #fff;
  border: 1px solid #a7946c;
  display: block;
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
  letter-spacing: .1rem;
  width: 50%;
  position: relative;
}
.wed_btn_left::after {
  content: "→";
  font-weight: 800;
  position: absolute;
  right: 5%;
  top: 40%;
}
.wed_btn_left:hover {
  background: #fff;
  color: #a7946c;
}
.base_btn_left {
  margin-top: 30px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  display: block;
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
  letter-spacing: .1rem;
  width: 50%;
  position: relative;
  transition: all 0.3s ease;
}
.base_btn_left::after {
  content: "→";
  font-weight: 800;
  position: absolute;
  right: 5%;
  top: 40%;
}
.base_btn_left:hover {
  background: #fff;
  color: #111;
}
.base_btn_left100 {
  margin-top: 30px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  display: block;
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
  letter-spacing: .1rem;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}
.base_btn_left100::after {
  content: "→";
  font-weight: 800;
  position: absolute;
  right: 5%;
  top: 40%;
}
.base_btn_left100:hover {
  background: #fff;
  color: #111;
}
.otherwed .item2 {
  width: calc(50% - 30px);
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb100 {
  margin-bottom: 100px;
}
.cusine_slider p {
  text-align: center;
  margin-top: 20px;
}
.cusine_slider2 p {
  text-align: center;
  margin-top: 20px;
}
.cusine_slider3 p {
  text-align: center;
  margin-top: 20px;
}
.cusinemenubx {
  padding: 2% 10%;
}
.plan_acco {
  margin-bottom: 50px;
}
.plan_con {
  width: calc(80% - 10px);
}
.planlist .item4 {
  margin-bottom: 40px;
}
.planlist .wedsliderinner {
  background: #fff;
  padding: 20px;
}
.planbox {
  display: flex;
  border: 1px solid #ccc;
}
.plnadate {
  background: #f6f6f6;
  width: calc(20% - 10px);
  padding: 20px;
}
.planinner {
  padding: 20px;
  width: calc(80% - 10px);
}
.plnadate h4 {
  text-align: center;
  line-height: 1.5em;
  font-size: 20px;
}
.plandetail {
  display: flex;
  justify-content: space-between;
}
.plan_thm {
  width: calc(30% - 10px);
}
.plan_txt {
  width: calc(70% - 10px);
}
.planexp {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
}
.hour {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
}
.plan_txt h3 {
  margin-bottom: 20px;
  font-weight: 400;
}
.plandetail ul {
  margin-top: 30px;
}
.plandetail li {
  margin-right: 20px;
  display: inline-block;
  width: 45%;
}
.planbtn1 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  background: #fff;
  color: #a7946c;
  display: block;
  padding: 10px;
  border: 1px solid #a7946c;
  text-align: center;
  transition: all 0.3s ease;
}
.planbtn1:hover {
  background: #a7946c;
  color: #fff;
}
.planbtn2 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  background: #a7946c;
  color: #fff;
  display: block;
  padding: 10px;
  border: 1px solid #a7946c;
  text-align: center;
  transition: all 0.3s ease;
}
.planbtn2:hover {
  opacity: 0.8;
}
.otherplan {
  cursor: pointer;
  text-align: center;
  padding: 12px 0;
  background: #eee;
  border-radius: 4px;
}
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
/* style.css の例 */
.plan_acco .planinner:not(:first-child) {
  /* 初期状態で2番目以降のプランを非表示にする */
  display: none;
}
/* JavaScriptでプラン全体を表示するときに使うクラス */
.plan_acco.is-open .planinner:not(:first-child) {
  display: block; /* または flex など、元のレイアウトに応じて調整 */
}
.sat_blue {
  color: #0046aa;
}
.sun_red {
  color: #b40014;
}
.tab2type .tab_item {
  width: calc(100%/2);
}
.tab4type .tab_item {
  width: calc(100%/4);
}
.wedding_page .tabs input:checked + .tab_item {
  background-color: #a7946c;
  color: #fff;
}
.wedding_page .tab_item {
  border-bottom: 1px solid #a7946c;
}
.wedding_footer {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #ccc;
}
.wedding_footer li {
  margin-bottom: 10px;
}
.wedding_tel a {
  font-size: 30px;
  color: #a7946c;
}
.wedding_footer small {
  font-size: 13px;
}
.wedding_footer h3 {
  margin-bottom: 20px;
  line-height: 1.2em;
  font-size: clamp(16px, 2vw, 20px);
  color: #555;
}
.wedding_footer .beigebg {
  padding: 2%;
}
.wedding_footer .item3 {
  margin: 20px 0;
  text-align: center;
}
.videobox {
  width: 100%;
}
.videobox .responsive-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  position: static;
}
.wedding_cere_fv {
  background: url(../img/wedding_cere_fv.webp);
  background-position: center;
}
.f24 {
  font-size: 24px;
}
.strong_link a {
  font-weight: 600;
  color: #0000ff;
  text-decoration: underline;
}
.twobtn1 {
  display: block;
  background: #444;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  font-size: clamp(14px, 1.6vw, 16px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.twobtn2 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  display: block;
  background: #edecf2;
  color: #111;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  font-size: clamp(14px, 1.6vw, 16px);
}
.dl_banquet_table th {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 25px 5px;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  border-bottom: 1px solid #ccc;
}
.dl_banquet_table td {
  border-bottom: 1px solid #ccc;
  padding: 25px 5px;
}
.goth {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.banquet_table th {
  border: 1px solid #ccc;
  padding: 25px 5px;
  background: #eee;
  white-space: nowrap;
  text-align: center;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5em;
}
.banquet_table td {
  text-align: center;
  border: 1px solid #ccc;
  padding: 25px 5px;
  font-size: clamp(14px, 1.6vw, 16px);
  background: #fff;
  line-height: 1.5em;
}
.hallname {
  text-decoration: underline;
  white-space: nowrap;
  text-align: center;
  background: #eee;
}
.hall_box {
  margin-bottom: 100px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mb0 {
  margin-bottom: 0 !important;
}
.floorplanslider {
  position: relative;
  margin-bottom: 40px !important;
}
.floorplan p {
  text-align: center;
  margin-top: 5px;
}
.floorplanslider .slick-prev, .floorplanslider .slick-next {
  position: absolute;
  top: 50%; /* 縦中央 */
  transform: translateY(-50%);
  z-index: 2;
}
.floorplanslider .slick-prev:before, .floorplanslider .slick-next:before {
  color: #333 !important; /* 矢印の色（白背景なら黒など） */
  font-size: 30px;
}
.floorplanslider .slick-prev {
  left: 10%;
}
.floorplanslider .slick-next {
  right: 10%;
}
.floorplan .item5 {
  margin-bottom: 30px;
}
.floorplan .item4 {
  margin-bottom: 30px;
}
.floorplan .item3 {
  margin-bottom: 30px;
}
.planpage .planbtn2 {
  background: #444;
  border: 1px solid #444;
}
.kasou_footer {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #ccc;
}
.kasou_footer li {
  margin-bottom: 10px;
}
.kasoufooter_tel a {
  font-size: 30px;
  color: #000;
}
.kasou_footer small {
  font-size: 13px;
  color: #666;
}
.kasou_footer .item3 {
  margin: 20px 0;
  text-align: center;
}
.kasou_footer h3 {
  margin-bottom: 20px;
  line-height: 1.2em;
  font-size: clamp(16px, 2vw, 20px);
  color: #666;
}
.kasou_footer .lightblue {
  padding: 2%;
}
.lightblue {
  background: #edecf2;
}
.mb10 {
  margin-bottom: 10px;
}
.planbtn3 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  background: #444;
  color: #fff;
  display: block;
  padding: 15px 10px;
  border: 1px solid #444;
  text-align: center;
  transition: all 0.3s ease;
}
.planbtn3:hover {
  opacity: .7;
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.faqtitle {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
  line-height: 1.5em;
}
/*アイコンの＋と×*/
.faqtitle::before, .faqtitle::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
}
.faqtitle::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.faqtitle::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.faqtitle.close::before {
  transform: rotate(45deg);
}
.faqtitle.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.faqbox {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
.linkcolor {
  color: #0000ff;
  text-decoration: underline;
}
.sliderauto_cur .sliderinner {
  margin-left: 10px;
  margin-right: 10px;
}
.faqlistbtn {
  margin-bottom: 100px;
}
.faqbtn {
  display: block;
  color: #fff;
  background: #666;
  padding: 20px 10px;
  text-align: center;
  position: relative;
}
.faqbtn::after {
  content: "▼";
  position: absolute;
  right: 5%;
}
.faqbtn:hover {
  background: #333;
}
.res_reserve_footer .planbtn3 {
  width: 60%;
  margin: auto;
}
.res_reserve_footerline {
  width: 20%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.oh {
  padding-bottom: 130px;
  padding-top: 0;
}
.oh .container {
  padding: 3% 2%;
  color: #fff;
  background: #444;
}
.oh ul {
  margin-top: 30px;
}
.oh li {
  display: inline-block;
  width: 45%;
  margin-right: 10px;
}
.basic_tb th {
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
  line-height: 1.5em;
}
.basic_tb td {
  line-height: 1.5em;
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
}
.basic_tb_res th {
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
  line-height: 1.5em;
}
.basic_tb_res td {
  line-height: 1.5em;
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
}
.res_bfbg {
  background: url("../img/restaurant/res_bfbg.webp") !important;
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat !important;
}
.res_lubg {
  background: url("../img/restaurant/res_lubg.webp") !important;
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat !important;
  background-position: center;
}
.res_ttbg {
  background: url("../img/restaurant/res_ttbg.webp") !important;
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat !important;
  background-position: center;
}
.res_dibg {
  background: url("../img/restaurant/res_dibg.webp") !important;
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat !important;
}
.res_tobg {
  min-height: 500px;
  background: url("../img/restaurant/res_tobg.webp") !important;
  background-size: cover;
  background-repeat: no-repeat !important;
}
.res_prbg {
  min-height: 500px;
  background: url("/2026wp/wp-content/uploads/2026/03/res_prbg.jpg") !important;
  background-size: cover;
  background-repeat: no-repeat !important;

}
.nowrap {
  white-space: nowrap;
}
.oh .twobtn2 {
  width: 50%;
}
.emp {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  border-bottom: 1px #111 solid;
}
.btnres_left {
  display: block;
  width: 30%;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px 5px;
  transition: all 0.3s ease;
}
.btnres_left:hover {
  opacity: .7;
}
.takeoutmenu li {
  border-bottom: dashed 1px #ccc;
  padding-bottom: 40px;
  padding-top: 40px;
  line-height: 1.5em;
}
.takeoutmenu_name {
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 18px);
}
.lim_obi {
  background: #333;
  color: #fff;
  padding: 3px 10px;
  font-size: 90%;
}
.takeoutmenu h3, .foodmenumidashi {
  margin-bottom: 10px;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.5em;
}
.mb20 {
  margin-bottom: 20px;
}
.tab_content_description .kasoutl {
  margin-bottom: 30px;
  padding-bottom: 30px;
  text-align: left;
}
.w50 {
  width: calc(50% - 20px);
}
.bfexmenu {
  background: #fff;
  padding: 20px 30px 30px 30px;
  margin-bottom: 50px;
}
.bfexmenu h4 {
  margin-bottom: 10px;
  margin-top: 10px;
}
.bfdetail {
  position: relative;
  margin-bottom: 100px;
}
.bfdetail_txt {
  background: rgba(253, 253, 253, .9);
  position: absolute;
  right: 0%;
  top: 12%;
  width: 45%;
  padding: 5%;
}
.bfdetail_txt h3 {
  margin-bottom: 30px;
}
.bfdetail img {
  width: 600px;
  height: auto;
}
.bfkodawari h3 {
  margin: 10% 2%
}
.bfkodawari p {
  margin: 2%
}
.bfkodawari .wedsliderinner {
  margin-left: 20px;
  margin-right: 20px;
}
.h100 {
  height: 100px;
}
.dctl {
  margin-top: 50px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  line-height: 1.7em;
  font-size: clamp(16px, 2vw, 20px);
}
.docutemp ol {
  list-style: decimal;
  padding-left: 20px;
}
.docutemp li {
  line-height: 2em;
  font-size: clamp(14px, 1.5vw, 15px);
  padding-top: 15px;
}
.docutemp p {
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 2em;
}
.border_tb th {
  background: #eee;
  border: 1px solid #ccc;
  padding: 15px 10px;
}
.border_tb td {
  line-height: 1.8em;
  border: 1px solid #ccc;
  padding: 15px 10px;
}
.roomname {
  margin-top: 30px;
  margin-bottom: 20px;
}
.roomlist .item3 {
  margin-bottom: 70px;
}
.sr .inner {
  padding: 4%;
}
.roomlist_footer .flex_box {
  justify-content: flex-start;
}
.roombox {
  padding: 20px;
}
.roombox h4 {
  margin-top: 10px;
  font-size: clamp(16px, 1.8vw, 18px);
  text-align: center;
}
.roomlist_footer {
  background: url("../img/stay/roomlist_footer.webp");
  background-size: cover;
  background-position: center;
}
.roombox img:hover {
  opacity: .7;
}
.ametl {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ccc;
}
.ame p {
  margin-bottom: 50px;
}
.roomfeature .item3 {
  margin-bottom: 50px
}
/* ベーシックなレイアウト */
.roomslider {
  max-width: 1500px;
  margin: 0 auto;
  box-sizing: border-box
}
/* メインスライド */
.roomslider__main .slide {
  position: relative
}
.roomslider__main img {
  width: 100%;
  height: auto;
  display: block;
}
/* サムネイル */
.roomslider__thumbs {
  margin-top: 12px
}
.roomslider__thumbs .thumb {
  padding: 4px;
  box-sizing: border-box
}
.roomslider__thumbs .thumb img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  border: 2px solid transparent;
}
/* 選択中のサムネイルの強調 */
.roomslider__thumbs .slick-current img {
  border-color: #007bff
}
/* スライダー矢印の位置調整（任意） */
.slick-prev, .slick-next {
  top: 50%;
  transform: translateY(-50%)
}
.wedsliderinner img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}
.stay_plan .wedsliderinner h3 {
  font-size: clamp(15px, 1.8vw, 18px) !important;
}
.stay_plan .tab_content {
  background: #f6f6f6;
}
.stay_plan .tabs {
  background: #f6f6f6;
}
.room_top {
  background: url("../img/stay/room_topbg.webp");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.whtxt {
  color: #fff;
}
.room_top h4 {
  color: #fff;
}
.room_top .btn_arrow::after {
  color: #fff;
}
.stay_fac img {
  margin-bottom: 10px
}
.stay_fac .item3 {
  margin-bottom: 40px
}
.contact_box {
  margin-bottom: 100px;
}
.contact_box .item3 {
  margin-bottom: 20px;
}
.contactbtn1 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  display: block;
  background: #edecf2;
  color: #111;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  font-size: clamp(14px, 1.6vw, 16px);
  position: relative;
  transition: all 0.3s ease;
}
.contactbtn1::before {
  content: "\f059";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 10%;
  top: 30%;
}
.contactbtn2 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  display: block;
  background: #4e4e50;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  font-size: clamp(14px, 1.6vw, 16px);
  position: relative;
  transition: all 0.3s ease;
}
.contactbtn2::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 10%;
  top: 30%;
}
.contactbtn3 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  display: block;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  font-size: clamp(14px, 1.6vw, 16px);
  position: relative;
  transition: all 0.3s ease;
}
.contactbtn3::before {
  content: "\f133";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 10%;
  top: 30%;
}
.contactbtn1:hover, .contactbtn2:hover, .contactbtn3:hover {
  opacity: .7;
}
.contact_box table {
  margin-top: 20px;
}
.contact_box th {
  font-size: clamp(14px, 1.6vw, 16px);
  border: 1px solid #ccc;
  padding: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: normal;
  background: #eee;
  width: 35%;
}
.contact_box td {
  font-size: clamp(14px, 1.6vw, 16px);
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  border: 1px solid #ccc;
  padding: 10px;
}
.contact_box td a {
  font-weight: 600;
  font-size: 110%;
}
.entrytable {
  margin-bottom: 50px;
}
.entrytable th {
  font-size: 16px;
  letter-spacing: .1rem;
  width: 27%;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.entrytable td {
  font-size: 16px;
  letter-spacing: .1rem;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.entrytable textarea {
  width: 100%;
  height: 200px;
}
.entrytable input {
  width: 100%;
  height: 36px;
}
.entrytable select {
  width: 100%;
  height: 40px;
}
.req {
  background: #BC5762;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  padding: 3px;
  margin-left: 10px;
}
.nonreq {
  background: #ccc;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  margin-left: 10px;
  padding: 3px;
}
.subbtn {
  color: #fff;
  background-color: #333;
  border: solid 1px #333;
  display: block;
  font-weight: 500;
  letter-spacing: .1rem;
  font-size: 15px;
  padding: 15px 5px;
  width: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.subbtn:hover {
  background: #fff;
  color: #333;
}
.inlinetd td {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.postaltd td {
  border-bottom: none;
  padding-bottom: 0;
}
.privacy_check {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.privacy_check input {
  width: auto;
}
input[type="checkbox"] {
  width: auto;
  height: auto;
}
.anchorlist li {
  display: inline-block;
  padding-left: 10px;
  line-height: 2.2em;
  border-right: 1px solid #ccc;
  padding-right: 10px;
}
.anchorlist li:last-child {
  border-right: none;
}
.sdgspage .sec_box {
  padding-top: 50px;
  padding-bottom: 50px;
}
.sdgspage ul {
  list-style: disc !important;
  padding-left: 20px;
  line-height: 2em;
}
.faqlistbtn .item3, .faqlistbtn .item2 {
  margin-bottom: 20px;
}
.listdisc {
  line-height: 1.7em;
  list-style: disc;
  padding-left: 20px;
}
.olnumber {
  line-height: 1.7em;
  padding-left: 20px;
  list-style: decimal;
}
.browntxt {
  color: #a7946c;
  font-weight: 700;
}
.subtl {
  font-size: 18px;
  margin-top: 40px;
  margin-bottom: 10px;
}
.marker {
  font-size: 120%;
  font-weight: 600;
  background: linear-gradient(transparent 60%, #edecf2 60%);
}
.marker1 {
  background: linear-gradient(transparent 60%, #FBD4E6 60%);
  font-size: 120%;
  font-weight: 600;
}
.tl_lb {
  border-left: 5px solid #444;
  padding-left: 10px;
  margin-bottom: 20px;
  margin-top: 60px;
}
.sig_box {
  margin-bottom: 60px;
}
.sig_box h3 {
  margin-bottom: 20px;
	  font-size: clamp(18px, 2.5vw, 25px);
}
.infotoppage .item2 {
  margin-bottom: 50px;
}
.infoboxtl {
  margin-top: 15px;
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
}
.fm_tl {
  margin-bottom: 20px;
  margin-top: 80px;
  font-size: clamp(16px, 1.9vw, 20px);
  color: #fff;
}
.fm_tl span {
  background: #333;
  padding: 5px 15px;
}
.floorguide .tbstyle_2 th {
  padding: 10px 5px;
  font-size: clamp(14px, 1.6vw, 16px);
}
.floorguide .tbstyle_2 td {
  padding: 10px 5px;
  font-size: clamp(14px, 1.6vw, 16px);
}
.plan_block {
  margin-top: 100px;
}
.plan_block_thum {
  margin-top: 60px;
}
.plan_block .kasoutl {
  padding-bottom: 10px;
}
.btn_pdf {
  background: #444;
  color: #fff;
  text-align: center;
  margin: auto;
  padding: 15px 50px;
  position: relative;
}
.btn_pdf::before {
  content: "\f1c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 8%;
  top: 35%;
}
.btn_pdf:hover {
  opacity: .8;
}
.news_article_thum {
  margin-top: 50px;
  margin-bottom: 50px;
}
.article_tl {
  text-align: center;
  line-height: 1.5em;
  font-size: clamp(18px, 2.2vw, 25px);
}
.arit_btn {
  margin: 40px auto;
  background: #444;
  color: #fff;
  border: 1px solid #444;
  display: block;
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
  letter-spacing: .1rem;
  width: 35%;
  position: relative;
}
.arit_btn::after {
  content: "→";
  font-weight: 800;
  position: absolute;
  right: 5%;
  top: 40%;
}
.arit_btn:hover {
  background: #fff;
  color: #444;
}
.sub_header {
  z-index: 3;
  background: #fff;
  text-align: center;
  padding: 30px 0 20px 0;
  position: fixed;
  top: 60px;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
.sub_header li {
  display: inline-block;
  margin-left: 20px;
  font-weight: 500;
  border-right: 1px solid #ccc;
  padding-right: 20px;
  line-height: 1.7em;
}
.sub_header a {
  color: #000;
}
.sub_header a:hover {
  color: #666;
}
.mt200 {
  margin-top: 200px;
}
.sub_header li:last-child {
  border-right: none;
}
.mark {
  font-size: 12px;
  background: #333;
  color: #fff;
  padding: 5px 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  margin-top: 5px;
}
.planpage .flex_box {
  justify-content: flex-start;
}
/*
.gal-main img,
.gal-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.gal-thumb {
  margin-top: 12px;
	  width: 100%;
}

.gal-thumb .slick-slide {
  opacity: 0.5;
  cursor: pointer;
}

.gal-thumb .slick-current {
  opacity: 1;
}


.slick-prev,
.slick-next {
  z-index: 2;
}
.gal-thumb .slick-slide {
  margin: 0 5px;
}

.gal-thumb img {
  width: 100%;
}


.gal-thumb .slick-list {
  padding: 0 !important;
}
*/
.gal-main {
  position: relative;
}
.gal-main .slick-prev, .gal-main .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
}
.gal-main .slick-prev {
  left: 10px;
}
.gal-main .slick-next {
  right: 10px;
}
.gal-main .slick-prev:before, .gal-main .slick-next:before {
  font-size: 40px;
  color: #fff; /* 画像の上なら白が見やすい */
  opacity: 0.9;
}
.gallerypage .tab_item {
  width: calc(100% / 5);
}
/* 20260119 */
.smtxtbtn {
  font-size: 10px;
}
.wedding_top {
  background: url(../img/weddintopbg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.banquet_topbg {
  background: url(../img/banquet_topbg.webp);
  min-height: 600px;
  background-size: cover;
}
.recc_top .wedsliderinner {
  box-shadow: 0px 3px 20px -6px rgba(0, 0, 0, 0.49);
}
.pagination {
  text-align: center;
  margin-top: 50px;
}
.pagination li {
  display: inline-block;
  font-size: clamp(14px, 2vw, 18px);
}
.pagination li a:hover {
  color: #333;
}
.page-link {
  background-color: rgba(157, 181, 207, .1);
  ;
  padding: 0.375rem 0.75rem;
}
.page-link:hover {
  z-index: 2;
  color: #333;
  background-color: rgba(157, 181, 207, .3);
  ;
  border-color: #f5f5eb
}
.page-item:not(:first-child) .page-link {
  margin-left: -1px
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #333;
  border-color: #e66f75
}
.article_tl {
  text-align: left
}
.newscatbtn {
  display: block;
  text-align: center;
  width: 100%;
  color: #333;
  border: 1px solid #333;
  line-height: 55px;
  background: #f6f6f6;
}
.newscatbtn_box {
  margin-bottom: 30px;
}
.newscatbtn_active {
  display: block;
  text-align: center;
  width: 100%;
  color: #fff;
  border: 1px solid #333;
  line-height: 55px;
  background: #333;
}
.newscatbtn:hover {
  opacity: .7
}
.breadcrumb_height {
  margin-top: 160px;
}
.footer_con_info {
  background: #444;
  color: #fff;
  padding: 30px 0;
}
.footer_con_info .kasoufooter_tel a {
  color: #fff;
}
.footer_con_info .wed_tl {
  margin-bottom: 5px;
}
.footer_con_info .twobtn2 {
  width: 100%;
  display: block;
}
.catch_top {
  padding-top: 30px;
}
.mtb {
  border-top: solid #ccc 1px;
}
.footer_nikkotachikawa .flex_box {
  justify-content: center;
}
.pb50 {
  padding-bottom: 50px;
}
.pt50 {
  padding-top: 50px;
}
.stay_fac .sec_tl {
  margin-bottom: 5px;
}
.kasou_mv_box img {
  object-fit: cover;
  width: 100%;
  max-height: 500px;
  object-position: top center;
}
.kasoutl_lg {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
  font-size: clamp(18px, 1.8vw, 26px) !important;
  letter-spacing: .1rem;
}
.kasoutl_lg::after {
  content: "";
  display: block;
  width: 60px;
  border-bottom: 1px solid #51555a;
  position: absolute;
  bottom: 0;
  margin-bottom: -1px
}
.contactbtnpagefooter .base_btn_left100 {
  margin-top: 0;
}
.kumiaibanner img {
  max-width: 640px
}
.event_term {
  margin-bottom: 20px;
}
.ohtbsmtxt {
  font-size: 12px;
}
.sitemap_box {
  margin-bottom: 50px;
}
.sitemap_box h4 {
border-left:3px solid #ccc;
  padding-left: 10px;
}
.sitemap_box li {
  width: 30%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: inline-block;
  margin-right: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  position: relative;
}
.sitemap_box li::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  right: 0;
  background-image: url("../img/arrow_r.png");
  position: absolute;
  background-size: contain;
}

/*.sightpage img{
	margin: 0;
}*/

.sightpage p{text-align: center;}


.gal-slide {
  position: relative;
}

.gal-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 8px 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.9em;
}


/* スライドの表示枠を固定 */
.gal-main .gal-slide {
  position: relative;
  aspect-ratio: 16 / 9;   /* 好きな比率に変更OK（例: 4 / 3） */
  overflow: hidden;
}

/* 画像を枠いっぱいに */
.gal-main .gal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 重要：比率維持＋はみ出しトリミング */
  display: block;
}



.gal-thumb .slick-slide {
  aspect-ratio: 4 / 3;   /* サムネ用に少し横長がおすすめ */
  overflow: hidden;
}

/* サムネ画像を枠いっぱいに */
.gal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}










/* レスポンシブでサムネの数を調整 */

@media (max-width: 1212px) {
  .longtab {
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .roomslider__thumbs .thumb img {
    height: 56px
  }
}
@media (max-width: 480px) {
  .videobox {
    max-width: 100%;
  }
  .videobox > .responsive-video {
    object-fit: cover;
  }
}
@media (max-width: 1000px) {
  .nav-btn {
    min-width: 140px;
  }
  .planlist .item4 {
    width: calc(33% - 20px);
  }
  .mv_res {
    width: 60%;
  }
  .stay_plan .tab_item {
    width: calc(33% - 20px);
    line-height: 55px;
    padding-top: 0;
    margin: 5px 8px;
    border: 1px solid #333;
  }
  .sub_header {
    display: none;
  }
  .breadcrumb_height {
    margin-top: 60px;
  }
}
@media (max-width: 930px) {
  .nw .tab_item {
    width: calc(25% - 20px);
    line-height: 55px;
    padding-top: 0;
    margin: 5px 8px;
    border: 1px solid #333;
  }
}
@media (max-width: 850px) {
  .planlist .item4 {
    width: calc(50% - 20px);
  }
  .btn_pdf {
    display: block;
    width: 70%;
  }

	.gal-caption {
		font-size: 0.8em;
		width:94%;}
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .mainmenu a {
    padding: 10px;
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .nav-btn {
    display: none;
  }
}
@media (min-width: 771px) {
  .visible-xs {
    display: none;
  }
}
@media (max-width: 770px) {
	.sig_box h3 {
  margin-top: 20px;

}
	.recc_top .item3{margin-bottom: 20px;}

		.sitemap_box li{
		width:100%;
	}

  .mt20sp {
    margin-top: 20px;
  }
  .contactbtnpagefooter .item2 {
    width: calc(50% - 10px);
  }
  .footer_con_info .twobtn2 {
    margin-bottom: 10px;
  }
  .footer_banner .item4 {
    margin-bottom: 20px;
  }
  .newscatbtn_box .item2 {
    margin-bottom: 20px;
    width: calc(50% - 10px);
  }
  .wedfooter .contactbtnpagefooter .item2, .eventfooter .contactbtnpagefooter .item2 {
    width: 100%;
  }
  .sig_top .item3 {
    margin-bottom: 20px;
  }
  .arit_btn {
    width: 90%;
  }
  .infotoppage .item2 {
    margin-bottom: 30px;
    width: calc(50% - 10px);
  }
  .kasoucon_box {
    border-right: none;
    padding: 50px 0px 50px;
  }
  .anchorlist li {
    font-size: 13px;
    display: block;
    padding-left: 10px;
    line-height: 1.3em;
    border-right: none;
    padding-right: 10px;
    padding-bottom: 20px;
  }
  .tab4type .tab_item {
    width: calc(50% - 20px);
    line-height: 55px;
    padding-top: 0;
    margin: 5px 8px;
    border: 1px solid #333;
  }
  .ohtbsmtxttab {
    line-height: 25px !important;
  }
  .entrytable {
    border-collapse: collapse;
    width: 98%;
  }
  .entrytable th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .entrytable td {
    display: block;
    width: 100%;
    padding-top: 0px;
  }
  .subbtn {
    width: 100%;
    font-size: 12px;
  }
  .inlinetd td {
    flex-wrap: wrap;
  }
  .inlinetd input {
    width: 36%;
  }
  .postaltd td {
    padding-bottom: 10px;
  }
  .addtd input {
    width: 100%;
  }
  .basic_tb_res, .basic_tb_res thead, .basic_tb_res tbody, .basic_tb_res tr {
    display: block;
    width: 100%;
  }
  .basic_tb_res th {
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    background: #eee;
    padding: 10px 5px;
    box-sizing: border-box;
  }
  .basic_tb_res td {
    display: block;
    width: 100%;
    padding: 10px 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-top: none;
    border-bottom: none;
  }
  .lasttr td {
    border-bottom: 1px solid #ccc !important;
  }
  .room_top .item3 {
    width: calc(50% - 5px);
  }
  .wedsliderinner img {
    height: 150px;
  }
  .roomdetail .basic_tb th {
    font-size: 13px;
    white-space: nowrap;
  }
  .roomdetail .item2 {
    margin-bottom: 50px;
  }
  .roomdetail .basic_tb td {
    font-size: 13px;
  }
  .roombox {
    padding: 20px 0;
  }
  .ame img {
    margin-bottom: 20px;
  }
  .w50 {
    width: 100%;
  }
  .faqlistbtn .faqbtn {
    margin-bottom: 10px;
  }
  .btnres_left {
    width: 100%;
  }
  .oh .twobtn2 {
    width: 100%;
  }
  .oh .container {
    padding: 10% 5%;
  }
  .oh img {
    margin-bottom: 20px;
  }
  .res_bfbg, .res_lubg, .res_dibg, .res_tobg, .res_prbg, .res_ttbg {
    min-height: 200px;
    background-size: cover !important;
  }
  .res_reserve_footer .planbtn3 {
    width: 90%;
  }
  .res_reserve_footer .item2 {
    margin-bottom: 20px;
  }
  .sliderauto_cur .sliderinner {
    margin-left: 5px;
    margin-right: 5px;
  }
  .kasou_footer .lightblue {
    padding: 4%;
  }
  .planlist .item4 {
    width: 100%;
  }
  .floorplan .item4 {
    width: calc(25% - 5px);
  }
  .floorplan .item3 {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .floorplan .item5 {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .floorplanslider {
    margin-right: 20px;
    margin-left: 20px;
  }
  .floorplanslider .slick-prev {
    left: -13%;
  }
  .floorplanslider .slick-next {
    right: -10%;
  }
  .dl_banquet_table th {
    line-height: 1.7em;
  }
  .dl_banquet_table .item2 {
    margin-bottom: 10px;
  }
  .wed_btn100, .wed_btn_left {
    width: 94%;
  }
  .base_btn_left {
    width: 90%;
  }
  .otherwed .item2 {
    width: 100%;
    margin-top: 40px;
  }
  .nw .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .tab_item {
    line-height: 15px;
    padding-top: 10px;
  }
  .newslist li {
    font-size: 14px;
  }
  .news_cat {
    font-size: 12px;
    width: 40%;
  }
  .news_tl {
    display: block;
    margin-top: 10px;
    line-height: 1.5em;
  }
  .wed_banqpage .btn_arrow {
    font-size: 90%;
  }
  .en_main_tl {
    margin-top: 30px;
  }
  .flex_box_center_reverse {
    flex-wrap: wrap-reverse;
  }
  p {
    font-size: 14px;
    line-height: 1.8em;
  }
  .hidden-xs {
    display: none;
  }
  .item4, .item3, .item2, .item30, .item40, .item60, .item70 {
    width: 100%;
  }
  .news_top_list_inner .item30 img {
    margin-right: 0px !important;
    max-width: 90%;
  }
  .headnews {
    margin-bottom: 40px;
  }
  .res_toptxt {
    padding: 8%;
  }
  .res_topbg, .banquet_topbg {
    min-height: 300px;
    background-position: center;
    background-size: cover;
  }
  .otherinner {
    border: none;
  }
  .addotehrinner {
    border: none;
  }
  .areainner {
    padding-left: 0px;
  }
  .area .sec_tl {
    margin-left: 20px;
  }
  .area .btn_arrow {
    margin-left: 20px;
  }
  .sec_box {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .hb_sec_box {
    padding-bottom: 70px;
  }
  .ht_sec_box {
    padding-top: 70px;
  }
  .footer_banner .item5 {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .video_top {
    height: 50vh;
  }
  .wed_btn {
    width: 100%;
    margin: 10px auto;
    padding: 15px 0;
  }
  .wed_report .item4 {
    width: calc(50% - 10px);
    margin-bottom: 40px;
  }
  .wed_food .inner {
    width: 80%;
    top: 65%;
    padding: 20px;
  }
  .wed_food {
    margin-bottom: 300px;
  }
  .flex_box_center {
    flex-wrap: wrap;
  }
  .wed_cer .item2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .p15 {
    padding: 0 10px;
  }
  .banquetlist .item2 {
    width: calc(50% - 5px);
  }
  .wed_en_tl2 {
    font-size: 15px;
    ont-weight: 500;
    margin-left: 20px;
    text-transform: uppercase;
    font-style: normal;
  }
  .wed_banq h2 {
    margin-top: 20px;
    padding-left: 10px;
  }
  .banqmain {
    margin-bottom: 20px;
  }
  .wed_reportpage {
    padding-left: 0;
    padding-right: 0;
  }
  .wed_album {
    padding: 0;
  }
  .kasou_mv {
    padding-top: 50px;
    padding-bottom: 10px;
  }
  .wedding_anquet_fv {
    background-position: top right;
  }
  .nw .tab_item {
    width: calc(50% - 20px);
    line-height: 55px;
    padding-top: 0;
    margin: 5px 8px;
    border: 1px solid #333;
  }
  .stay_plan .tab_item {
    width: calc(50% - 20px);
    line-height: 55px;
    padding-top: 0;
    margin: 5px 8px;
    border: 1px solid #333;
  }
  .gallerypage .tab_item {
    width: calc(50% - 20px);
    line-height: 55px;
    padding-top: 0;
    margin: 5px 8px;
    border: 1px solid #333;
  }
  .longtab {
    font-size: 11px !important;
  }

	.wedding_top,.staytop{
		background: #fff;
	}

	.stayinner{
		width: 100%;
		padding: 0;
	}

	.mbsp20{
		margin-bottom: 20px;
	}

	.mbsp30{
		margin-bottom: 30px;
	}

	.banquet_topbg,.res_topbg{margin-right: 20px;
  margin-left: 20px;}

	.res_top{        padding-top: 70px;
        padding-bottom: 70px;
	}
}





@media (min-width: 901px) {
  .spfooter {
    display: none;
  }
}
@media (max-width: 900px) {
  .overlay .item70 {
    width: 100%;
  }
  .overlay .item30 {
    width: 100%;
  }
  .overlay .flex_box {
    flex-wrap: wrap;
  }
  .minmenu {
    width: 100% !important;
  }
  .menu_right li {
    font-size: 13px;
  }
  .snslist li {
    font-size: 20px;
  }
  .mainmenu a {
    font-size: 14px !important;
  }
  .snslist, .bannerlist {
    width: 100%;
  }
  .logo img, .tl img {
    width: 220px;
  }
  .mv_res, .mvmenu {
    display: none;
  }

  /*  .tl img {
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }*/
  .tl img {
    left: 10px;
    top: 10px;
  }
  .navbar {
    height: 45px;
  }
}
/*20260107MV文字追加*/
.mvtxtimg {
  max-width: 120px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 16%;
}
@media (max-width: 900px) {
  .mvtxtimg {
    max-width: 60px;
  }
}





.tablecheck-widget {
    width: 100%;
    height: 600px;
  }



.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}


/*optima追加　2026.02.10*/

.mvinnebtn,.mvinnebtn2 {
  line-height: normal;
}

.stay_optima p{
	font-size: 13px;
}


.stay_optima select {
  height: 32px;
}

.flex_optima{
	display: flex;
  align-items: center;
  flex-wrap: wrap;
	justify-content: flex-start;
}

.flex_optima img{
	  display: inline-block;
}

#le{
	margin-right: 12px;
}

.ui-datepicker-trigger {
  padding: 0;
  margin: 0 10px 0 6px;
  width: auto;
  background: none;
  border: none;
}
@media (max-width: 800px) {
.flex_optima{

  gap:0px;
  flex-wrap: wrap;
}


}


/*2026.02.12*/
@media (max-width: 800px) {
.lasttr .base_btn_left{

	margin:10px auto;}
	}

/*2026.02.26 plan */
  .stayplan .tabs {
    width: 100%;
    display: inline-block;
}
.stayplan .tabs ul {
    width: 100%;
    list-style: none;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    align-content: stretch;
    border-bottom:1px solid #D3CCC1;
    margin-bottom: 30px;
    margin-top: 30px;
}
.stayplan .tabs li {
    width: 15%;
    margin: 0 0.5%;
    font-size: 1.7rem;
    color: #69573E;
    border-top:1px solid #E4DED3;
    border-left:1px solid #E4DED3;
    border-right:1px solid #E4DED3;
    background-color: #E4DED3;
    text-align: center;
    padding: .6rem 0;
    position: relative;
    cursor: pointer;
}

.stayplan .tabs li:hover {
    background-color: #FAF8F5;
    border-top:1px solid #FAF8F5;
    border-left:1px solid #FAF8F5;
    border-right:1px solid #FAF8F5;
}

.stayplan .tabs li.now {
    color: #92846E;
    border-top:1px solid #D3CCC1;
    border-left:1px solid #D3CCC1;
    border-right:1px solid #D3CCC1;
    background-color: #EFEBE4;
    cursor: default;
}

.stayplan .tabs li.now:hover {
    background-color: #EFEBE4;
    border-top:1px solid #D3CCC1;
    border-left:1px solid #D3CCC1;
    border-right:1px solid #D3CCC1;
}

.stayplan .tabs li.now:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    bottom: -1px;
    background-color: #EFEBE4;
    position: absolute;
}

.stayplan .tabbody {
    position: relative;
    display: none;
}
.stayplan .tabbody.now {
	display:block !important;
}

.planswp {
	width: 100%;
}
    .planswp .swiper-slide{
        background-color: #fff;
        height: auto;
    }
    .planswp .swiper-slide .textArea {
        padding: 2rem;
    }
.planswp a {
    color: #000;
}
.planswp .tit {
	font-size: 1.8rem;
	font-weight: bold;
    margin-bottom: 10px;
}
.planswp .mark {
    color: #fff;
    background-color: #92846F;
    padding: .5rem 2rem;
	font-size: 1.4rem;
    line-height: 1;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    display: inline-block;
    margin-bottom: 10px;
}
.planswp .discription {
	font-size: 1.4rem;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	line-height: 1.6;
	margin-bottom: 1em;
    margin-bottom: 10px;
}
.wrap .planswp .discription p{
	line-height: 1.6;
}
.wrap .planswp .swiper-slide a.btn-c{
    min-width: inherit;
    color: #fff;
    font-size: 1.4rem;
    padding: .3rem 3rem;
}
.planswp .date {
	font-size: 1.5rem;
	font-weight: bold;
    color: #B8860B;
}
@media screen and (min-width: 1200px) {
    .planswp .swiper-wrapper {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	align-items: stretch;
	-webkit-align-content: stretch;
	align-content: stretch;
}
    .planswp .swiper-slide{
        width: 290px;
        background-color: #fff;
        margin: 0 .5rem 2rem;
    }

   .stayplan .swiper-button-next,
   .stayplan .swiper-button-prev,
   .wrap.restaurant .swiper-button-next,
   .wrap.restaurant .swiper-button-prev,
   .wrap.event .swiper-button-next,
   .wrap.event .swiper-button-prev,
   .wrap.banquet .swiper-button-next,
   .wrap.banquet .swiper-button-prev,
   .wrap.member .swiper-button-next,
   .wrap.member .swiper-button-prev{
       display: none;
    }
}


/*----------------------------------/
fair
-----------------------------------*/
.fair{
}
.fair .mainimage{
    width: 100%;
    height: auto;
    min-height: 437px;
    max-height: 437px;
    background: url(../img/fair/fair_mainimg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}
.faircalender{
}
.faircalender ul{
	list-style:none;
}
.tabCalendarBody td{
}
.tabCalendarBody th{
	background-color:#CEBAAB;
}
td.sat{
	background-color:#D9F5FF;
}
td.sun{
	background-color:#FFECE5;
}
td[colspan="7"]{
	background-color:#EDEDED !important;
	padding:0.5rem;
	font-weight:bold;
}
.tabCalendarBody td ul li{
	margin-bottom:1rem;
	font-size:1.2rem;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.past{
	background-color:#eee;
	color:#999;
}
.tabCalendarBody td{
	height:10em;
	text-align:left;
}
.tabs.locator{
}
.fairtab {
	margin-bottom:2rem;
	border-bottom:1px solid rgba(101,49,12,0.8);
}
.locator li{
	display:inline-block;
}
.fairtab li,
.tabs.locator li{
	display:inline-block;
	margin:0 5px 0 0;
	text-align:center;
	background-color:#C79F63;
}
.tabs.locator li.on{
	color:#fff;
	background-color:rgba(101,49,12,0.8);
}
.fairtab li.on{
	color:#fff;
	background-color:rgba(101,49,12,0.8);
}
.fairtab li a,
.tabs.locator li a{
	display:block;
	padding:0.8rem 0;
	width:10rem;
	color:#fff;
}
.fairtab li a{
	padding:0.8rem 2rem;
	width:16rem;
}
.tabCalendarBody table{
	min-width:100%;
	border:1px solid rgba(101,49,12,0.3);
}

/* .faircalender.date */

.faircalender.date .locator{
	display:table;
	width:100%;
}
.faircalender.date .locator .column3A,
.faircalender.date .locator .column3B.result{
	display:table-cell
}
.faircalender.date .locator .column3B.result{
	text-align:right;
}
.faircalender.date .locator .column3B.result li{
	padding:0 1rem 0 0.5rem;
	border-right:1px solid #ddd;
	font-weight:bold;
}
.faircalender.date .locator .column3B.result li:last-child{
	border:none;
}
.faircalender.date .locator .column3B.result li:empty{
	padding:0;
	display:none;
}
.faircalender.date .locator .column3B.result a{
	text-decoration:underline;
	font-weight:normal;
	color:#4F260D;
}
.faircalender.date .locator .column3B.result a:hover{
	text-decoration:none;
}
.faircalender.date .locator .column3A strong{
	font-size:1.6rem;
	color:#4F260D;
}
.dateTab{
	margin:0 0 3rem 0;
}
.faircalender.date .locator + .dateTab{
	margin:2rem 0 3rem 0;
}
.column3B.result{
	margin-bottom:3rem;
}
.dateTab .inner {
    padding: 1.5rem;
    border: solid 1px rgba(101,49,12,0.5);
}
.dateTitle{
	display:inline-block;
	padding:0.5rem 2rem;
	background-color:rgba(101,49,12,0.6);
	color:#fff;
	font-size:1.5rem;
}
.info{
	display:block;
}
.info p, .textIcoList2, .textIcoList{
	display:inline-block;
}
.textIcoList li,
.textIcoList2 li{
	display:inline-block;
	border:1px solid #8E633A;
	color:#8E633A;
	background-color:#fff;
	padding:0.1rem 1rem;
	font-size:1.1rem;
}
.textIcoList li{
	border:1px solid #B99F8C;
	background-color:#B99F8C;
	color:#fff;
	margin:0 5px 0 0;
}
.textIcoList2 li.on{
	border:1px solid #8E633A;
	color:#fff;
	background-color:#8E633A;
}
.info p strong{
	font-weight:normal;
}
.textIcoList2{
	float:right;
}
.textIcoList2 li{
	display:inline-block;
	margin:0 0 0 5px;
}
.hallTitBox{
	background-color:rgba(101,49,12,0.05);
	padding:0.5rem;
}
.hallTitInner h2,
.hallTitInner .txbtn.txbtn_mid_S{
	display:inline-block !important;
}
.hallTitInner .txbtn.txbtn_mid_S{
	padding-left:2rem;
}
.hallTitInner h2{
	font-size:1.4rem;
	font-weight:normal;
}
.hallTitInner h2 a{
	font-size:1.8rem;
	color:#4F260D;

}
.hallTitInner h2 a:hover{
	text-decoration:underline;
}
.hallTitInner h2 img{
  display: inline-block;
	vertical-align:middle;
	margin:0 3px;
}
.hallTitInner .txbtn.txbtn_mid_S a {
    display: inline-block;
    color: #8E633A;
    border: 1px solid #8E633A;
    border-radius: 0.3rem;
    font-size: 1.2rem;
    background: url(../../img/co_icon_arrow_b.png) right center no-repeat;
    padding: 0.2rem 17px 0.2rem 1rem;
	background-color:#fff;
}
.txbtn.txbtn_hi_M.fairReserve a{
	background: rgb(199,159,99);
	background: -moz-linear-gradient(top,  rgba(199,159,99,1) 0%, rgba(179,133,64,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(199,159,99,1) 0%,rgba(179,133,64,1) 100%);
	background: linear-gradient(to bottom,  rgba(199,159,99,1) 0%,rgba(179,133,64,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c79f63', endColorstr='#b38540',GradientType=0 );
	padding:0.5rem 1rem;

	font-size: 1.5rem;
	text-align: center;
	text-shadow:1px 1px 2px rgba(0,0,0,0.5);
	display:inline-block;
	color: #fff;
	text-decoration:none;
	margin-right:1rem;
	min-width:15rem;
}
.txbtn.txbtn_hi_M.fairReserve a{
	float:right;
}
.itemText{
	display:table;
	width:100%;
	margin-top:1.5rem;
}
.itemText .pic,.itemText .txt{
	display:table-cell;
	vertical-align:top;
}
.itemText .pic{
	width:120px !important;
}
.itemText .txt{
	text-align:right;
}
.itemText .txt p{
	margin-bottom:1rem;
	text-align:left;
}
.itemText .txt .textIcoList{
	display:inline-block;
	float:left;
}
.locator.txbtnR{
	display:inline-block;
	margin-bottom:0.5rem;
}
.multiTime {
	background:url(/zhpd/images/timeicon.png) center center no-repeat;
	width:16px;
	height:16px;
}
.eventList{
	padding:2rem;
	margin:3rem 0 0 0;
	border:1px solid rgba(101,49,12,0.3)
}
.eventList .title{
	font-size: 1.8rem;
	color:#661900;
	border-bottom:1px solid rgba(101,49,12,0.3);
	margin:0 0 1rem 0;
}
.eventList .locator{
	display:inline-block;
	width:100%;
	padding:1rem 0;
	border-bottom:1px dotted rgba(101,49,12,0.3);
}
.eventList .attention {
	margin:1rem 0 0 0;
	font-size:1.4rem;
	color:#AA1E20;
	text-align:right;
}

.tabCalendarBody img,
.eventTitle img,
.textMultiTime img {
  display: inline-block;
}