@charset "utf-8";
/*style.css*/
ul.dotted {
  width: 100%;
}
ul.dotted li {
  width: 100%;
  position: relative;
  padding-left: 1em;
}
ul.dotted li:before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}
ul.circle {
  width: 100%;
}
ul.circle li {
  width: 100%;
  position: relative;
  padding-left: 20px;
}
ul.circle li:not(:last-child) {
  margin-bottom: 5px;
}
ul.circle li:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--mainColor);
  position: absolute;
  left: 0;
  top: 10px;
}
.pdf_icon {
  text-decoration: none;
  padding-right: 30px;
  position: relative;
}
.pdf_icon:after {
  content: '';
  width: 20px;
  height: 26px;
  background: url(../images/icon/pdf.png) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  transform: translate(0,-50%);
}
.eyecatch:has(img[src="/assets_c/ready.jpg"]),
.eyecatch.img_none {
  border: 1px solid var(--mainColor);
  background: #fff;
}
img[src="/assets_c/ready.jpg"],
.eyecatch.img_none img {
  height: auto!important;
}

/*タイトル*/
#page_title {
  background: var(--mainColor) url(../images/bgi_page_title.png) no-repeat center right / cover;
  position: relative;
}
#page_title .page_mv {
  width: 770px;
  height: 615px;
  position: absolute;
  right: 0;
  bottom: -95px;
  z-index: 2;
}
#page_title .wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 428px;
  padding: 0;
}
#page_title .wrap.no_img {
  height: 345px;
}
#page_title .title {
  color: #fff;
  font-size: 72px;
  line-height: 1.2em;
  width: 100%;
}
#page_title .title span {
  display: block;
  font-size: 24px;
  line-height: 1.2em;
  margin: 20px 0 0 0;
  width: 100%;
}
#page_title .sub_title {
  color: #fff;
  font-size: 14px;
  line-height: 1.4em;
  margin: 0 0 20px;
  width: 100%;
}
#page_title .sub_title span {
  display: inline-block;
  position: relative;
  padding: 0 70px 0 0;
}
#page_title .sub_title span:after {
  content: '';
  width: 60px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
}
#lower .main_title {
  text-align: center;
  font-size: 38px;
  line-height: 1.4em;
  color: #897d55;
  font-weight: 500;
  margin: 0 0 45px;
  padding: 0;
}
#lower .cts_title {
  text-align: center;
  font-size: 28px;
  line-height: 1.4em;
  color: var(--mainColor);
  font-weight: 500;
  margin: 0 0 50px;
  padding: 0;
}

#lower .lead_txt {
  text-align: center;
  font-size: 16px;
  line-height: 1.8em;
  color: var(--mainColor);
}

/*サブナビ*/
#sub_navi {
  width: 100%;
  background: #897d55;
  position: relative;
  z-index: 5;
  transition: .3s;
}
#sub_navi ul {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
}
#sub_navi ul li {
  position: relative;
}
#sub_navi ul li:not(:last-child):after {
  content: '';
  width: 1px;
  height: 14px;
  background: #fff;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translate(0,-50%);
}
#sub_navi ul li a {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 1.4em;
  padding: 10px 0;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
#sub_navi ul li a:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0,1) ;
  transform-origin: left;
  transition: .3s;
}
#sub_navi ul li a:hover:after,
#sub_navi ul li a.active:after {
  transform: scale(1,1) ;
}
#sub_navi.show {
  display: block;
  position: fixed;
  left: 0;
  top: 69px;
  z-index: 999;
}

/*ページ内アンカーリンクリスト*/
.anc_link_list {
  justify-content: center;
  gap: 40px;
}
.anc_link_list a {
  width: auto;
  min-width: 220px;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  line-height: 1.8em;
  border-bottom: 1px solid var(--mainColor);
  padding: 0 40px 10px 0;
  position: relative;
}
.anc_link_list a:before {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--mainColor);
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
  transform: translate(0,-50%);
  z-index: 1;
}
.anc_link_list a:after {
  content: '';
  width: 12px;
  height: 5px;
  background: url(../images/icon/btn_arrow.png) no-repeat center / contain;
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
  transform: translate(50%,-50%) rotate(90deg);
  transform-origin: center;
  z-index: 2;
}

.link_more {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 60px 0 0 0;
}
.link_more a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  line-height: 1.4em;
  padding: 0;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  width: fit-content;
}
.link_more a .btn {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: var(--mainColor);
  position: relative;
}
.link_more a .btn:after {
  content: '';
  width: 14px;
  height: 6px;
  background: url(../images/icon/btn_circle_arrow_wht.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.link_more a:hover .btn:after {
  animation: btnArrow .3s ease-out .1s forwards;
}

.link_more.wht a {
  color: #fff;
}
.link_more.wht a .btn {
  background: #fff;
}
.link_more.wht a .btn:after {
  background: url(../images/icon/btn_circle_arrow.png) no-repeat center / contain;
}

/*タブコンテンツ*/
.tab_wrap {
  width: 100%;
  background: #fff;
  border-radius: 10px;
}
.tab_wrap .tab_navi {
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  gap: 0 7px;
  padding: 3px;
}
.tab_wrap .tab_navi .tab_menu {
  width: 100%;
  font-size: 18px;
  line-height: 1.4em;
  color: #6d6a6a;
  font-weight: bold;
  text-align: center;
  padding: 0 7px;
  position: relative;
  cursor: pointer;
  transition: .3s;
}
.tab_wrap .tab_navi .tab_menu:first-child {
  border-radius: 10px 0 0 0;
}
.tab_wrap .tab_navi .tab_menu:last-child {
  border-radius: 0 10px 0 0;
}
.tab_wrap .tab_navi .tab_menu.active,
.tab_wrap .tab_navi .tab_menu:hover {
  background: #f3f3e0;
  color: var(--mainColor);
}
.tab_wrap .tab_navi .tab_menu:not(:last-child):after {
  content: '';
  width: 1px;
  height: 40px;
  background: #d3d2d2;
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translate(0,-50%);
}
.tab_wrap .tab_navi .tab_menu .tab {
  width: 100%;
  display: block;
  padding: 30px 10px;
  position: relative;
}
.tab_wrap .tab_navi .tab_menu .tab:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #6d6a6a;
  position: absolute;
  left: 0;
  bottom: 0;
}
.tab_wrap .tab_navi .tab_menu.active .tab:after,
.tab_wrap .tab_navi .tab_menu:hover .tab:after {
  height: 3px;
}
.tab_wrap .tab_cts_wrap .tab_cts {
  display: none;
  width: 100%;
  margin: 0;
}
.tab_wrap .tab_cts_wrap .tab_cts.show {
  display: block;
}

/*plan carousel*/
.plan_carousel {
  width: 100%;
  display: flex;
  max-width: 990px;
  margin: 45px auto 0;
}
.plan_carousel .plan_box a {
  display: block;
  text-decoration: none;
  color: var(--mainColor);
}
.plan_carousel .plan_box .eyecatch {
  width: 100%;
  margin: 0 0 15px;
}
.plan_carousel .plan_box .eyecatch img {
  border-radius: 10px;
  overflow: hidden;
}
.plan_carousel .plan_box h3 {
  font-size: 18px;
  line-height: 1.4em;
  margin: 0;
}
.plan_carousel .plan_box p {
  font-size: 14px;
  line-height: 1.6em;
  margin: 10px 0 0 0;
}
.plan_carousel .slick-dots {
  justify-content: center;
  margin-top: 40px;
}
.plan_carousel .slick-dots button {
  background: #cad1d8;
  width: 6px;
  height: 6px;
}
.plan_carousel .slick-dots .slick-active button {
  background: #7e91a2;
  border: 1px solid #7e91a2;
  width: 8px;
  height: 8px;
}
.plan_carousel .slick-arrow {
  top: 28%;
}
.plan_carousel .slick-slide {
  margin: 0 20px;
}
.plan_carousel .slick-list:before {
  content: '';
  width: 20px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.plan_carousel .slick-list:after {
  content: '';
  width: 20px;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

/*下層お問い合わせ*/
.contact_low {
  background: #fff url(../images/bgi_contact_low.jpg) no-repeat center / cover;
  display: none!important;/*一時的非表示*/
}
.contact_low .wrap {
  max-width: 890px;
  padding: 70px 0 80px;
}
.contact_low .main_title {
  margin-bottom: 20px!important;
}
.contact_low .lead_txt {
  margin-bottom: 0!important;
}
.contact_low .txt {
  justify-content: center;
  align-items: center;
  color: var(--mainColor);
  gap: 25px;
  margin-top: 20px;
}
.contact_low .txt .ttl {
  font-size: 14px;
  line-height: 1.2em;
}
.contact_low .txt .ttl span {
  padding: 0 0 0 32px;
  position: relative;
  display: inline-block;
}
.contact_low .txt .ttl span:before {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/icon/phone.png) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
.contact_low .txt .number {
  font-size: 32px;
  line-height: 1.4em;
  font-weight: 600;
}
.contact_low .txt .time {
  font-size: 14px;
  line-height: 1.2em;
}
.contact_low .btn_wrap {
  margin-top: 35px;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
}
.contact_low .btn_wrap a.btn {
  color: #897d55;
  text-decoration: none;
  background: #fff;
  width: calc((100% - 40px)/2);
  text-align: center;
  padding: 25px 10px;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
  border-radius: 10px;
  position: relative;
}
.contact_low .btn_wrap a.btn span:before {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/icon/smartphone_brwn.png) no-repeat center / contain;
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translate(0,-50%);
}
.contact_low .btn_wrap a.btn.arrow:after {
  content: '';
  width: 21px;
  height: 9px;
  background: url(../images/icon/btn_circle_arrow_brwn.png) no-repeat center / contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0,-50%);
  transition: .3s;
}
.contact_low .btn_wrap a.btn.arrow:hover:after {
  right: 15px;
}
.contact_low .btn_wrap a.btn.stay span {
  padding: 0 0 0 50px;
  position: relative;
  display: inline-block;
}
.contact_low .btn_wrap a.btn.stay span:before {
  content: '';
  width: 34px;
  height: 22px;
  background: url(../images/icon/bet.png) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
.contact_low .btn_wrap a.btn.faq span {
  padding: 0 0 0 35px;
  position: relative;
}
.contact_low .btn_wrap a.btn.faq span:before {
  content: '';
  width: 22px;
  height: 22px;
  background: url(../images/icon/faq.png) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
.contact_low .btn_wrap a.btn.mike span {
  padding: 0 0 0 30px;
  position: relative;
  display: inline-block;
}
.contact_low .btn_wrap a.btn.mike span:before {
  content: '';
  width: 22px;
  height: 22px;
  background: url(../images/icon/mike.png) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
.contact_low .btn_wrap a.btn.banquet span {
  padding: 0 0 0 35px;
  position: relative;
  display: inline-block;
}
.contact_low .btn_wrap a.btn.banquet span:before {
  content: '';
  width: 22px;
  height: 22px;
  background: url(../images/icon/banquet.png) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}

/*下層関連情報*/
.recommend_low {
  background: url(../images/bgi_pt02.jpg) no-repeat center / cover;
}
.recommend_low .wrap {
  padding: 75px 0;
}
.recommend_low.lstn .wrap {
  padding-bottom: 160px;
}
#lower .recommend_low .main_title {
  margin-bottom: 50px!important;
}
.recommend_low .recom_list {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
.recommend_low .recom_list .recom_box {
  width: calc((100% - 40px*3)/4);
}
.recommend_low .recom_list .recom_box a {
  display: block;
  text-decoration: none;
  color: var(--mainColor);
}
.recommend_low .recom_list .recom_box a .eyecatch {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: .3s;
}
.recommend_low .recom_list .recom_box a .eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.recommend_low .recom_list .recom_box a .cts {
  width: 100%;
}
.recommend_low .recom_list .recom_box a .cts .innner {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 35px;
}
.recommend_low .recom_list .recom_box a .cts h3 {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 600;
  margin-top: 15px;
}
.recommend_low .recom_list .recom_box a .cts .innner p {
  width: calc(100% - 75px);
  font-size: 12px;
  line-height: 1.6em;
  margin-top: 10px;
}
.recommend_low .recom_list .recom_box a .cts .innner .btn {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: var(--mainColor);
  margin-top: 5px;
  position: relative;
}
.recommend_low .recom_list .recom_box a .cts .innner .btn:after {
  content: '';
  width: 18px;
  height: 7px;
  background: url(../images/icon/btn_circle_arrow_wht.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.recommend_low .recom_list .recom_box a:hover,
.recommend_low .recom_list .recom_box a:hover img {
  opacity: 1;
}
.recommend_low .recom_list .recom_box a:hover .eyecatch {
  border-radius: 100%;
}
.recommend_low .recom_list .recom_box a:hover .cts .innner .btn:after {
  animation: btnArrow .3s ease-out .1s forwards;
}

/*下層よくある質問*/
.faq_low {
  background: #fff;
}
.faq_low .wrap {
  padding: 100px 0;
}
.faq_low.lstn .wrap {
  padding-bottom: 160px;
}
.faq_low .main_title {
  margin-bottom: 50px!important;
}
.faq_list_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  counter-reset: number 0;
}
.faq_list_wrap .faq_box {
  width: 100%;
  display: block;
  border-top: 1px solid #cdcdcd;
}
.faq_list_wrap .faq_box:last-of-type {
  border-bottom: 1px solid #cdcdcd;
}
.faq_list_wrap .faq_box a {
  text-decoration: none;
  padding: 15px 30px 15px 20px;
  justify-content: flex-start;
  align-items: center;
  gap: 0 25px;
}
.faq_list_wrap .faq_box a .numble {
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 400;
  width: 50px;
  margin: 3px 0 auto;
}
.faq_list_wrap .faq_box a .numble:before {
  counter-increment: number 1;
  content: 'Q'counter(number) ".";
}
.faq_list_wrap .faq_box a .question {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 400;
  width: calc(100% - 25px*2 - 50px - 50px);
}
.faq_list_wrap .faq_box a .btn {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: var(--mainColor);
  position: relative;
}
.faq_list_wrap .faq_box a .btn:after {
  content: '';
  width: 18px;
  height: 7px;
  background: url(../images/icon/btn_circle_arrow_wht.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.faq_list_wrap .faq_box a:hover {
  opacity: 1;
  background: #f8f8f3;
}
.faq_list_wrap .faq_box a:hover .btn:after {
  animation: btnArrow .3s ease-out .1s forwards;
}

/*館内のご案内*/
#around_facility {
  background: var(--mainColor);
  color: #fff;
}
#around_facility .wrap {
  padding: 80px 0 120px;
}
#around_facility .main_title,
#around_facility .lead_txt {
  color: #fff!important;
}
#around_facility .facility_list {
  justify-content: flex-start;
  gap: 35px 40px;
  margin-top: 50px;
}
#around_facility .facility_list .facility {
  width: calc((100% - 40px)/2);
  position: relative;
}
#around_facility .facility_list .facility a {
  display: block;
}
#around_facility .facility_list .facility img {
  border-radius: 10px;
}
#around_facility .facility_list .facility .btn_circle {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(30px, 30px);
  transition: .3s;
  z-index: 6;
}

/*館内のご案内2*/
#inside_hotel .cts_title {
  margin-bottom: 60px!important;
}
#inside_hotel a {
  display: block;
  text-decoration: none;
  color: var(--mainColor);
}
#inside_hotel .image {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  margin: 0 0 20px;
}
#inside_hotel .image img {
  width: 100%;
  border-radius: 10px;
}
#inside_hotel .cont {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
#inside_hotel .cont h3 {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 500;
}
#inside_hotel .cont .btn {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: var(--mainColor);
  position: relative;
}
#inside_hotel .cont .btn:after {
  content: '';
  width: 16px;
  height: 7px;
  background: url(../images/icon/btn_circle_arrow_wht.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: .3s;
}
#inside_hotel a:hover .cont .btn:after {
  animation: btnArrow .3s ease-out .1s forwards;
}

/*下層ANNEX*/
#annex {
  overflow: clip;
  padding: 120px 0 150px;
}
#annex .ttl .wrap {
  padding: 0 0 30px;
}
#annex .cts_box {
  background: url(../images/lower_annex_bgi.jpg) no-repeat center / cover;
  position: relative;
}
#annex .cts_box .wrap {
  padding: 80px 0;
}
#annex .cts_box .img_top {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(40px,-50%);
  z-index: 3;
}
#annex .cts_box .img_btm {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-25px,50%);
  z-index: 3;
}
#annex .cts_box .cts_wrap {
  align-items: flex-end;
  color: #fff;
}
#annex .cts_box .cts_wrap .image img {
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
}
#annex .cts_box .cts_wrap .contents {
  padding: 0;
  position: relative;
  z-index: 99;
}
#annex .cts_box .cts_wrap .contents .cts {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 25px;
}
#annex .cts_box .cts_wrap .contents .cts .logo_annex {
  width: 103px;
}
#annex .cts_box .cts_wrap .contents .cts .txt {
  width: calc(100% - 25px - 103px);
}
#annex .cts_box .cts_wrap .contents h3 {
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0 0 20px;
}
#annex .cts_box .cts_wrap .contents .floor {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0 0 10px;
}
#annex .cts_box .cts_wrap .contents p {
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 400;
}
#annex .cts_box .cts_wrap .contents .btn_wrap {
  margin-top: 20px;
  flex-direction: column;
  gap: 10px;
}
#annex .cts_box .cts_wrap .contents .btn_wrap .btn {
  width: 100%;
  max-width: 340px;
  height: 50px;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#annex .cts_box .cts_wrap .contents .btn_wrap .btn:after {
  content: '';
  width: 12px;
  height: 12px;
  background: url(../images/icon/link.png) no-repeat center / contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0,-50%);
}
#annex .ttl {
  position: relative;
  z-index: 555;
}

/*下層ANNEX パターン2*/
#annex02 {
  overflow: clip;
  padding: 120px 0 150px;
}
#annex02 .ttl .wrap {
  padding: 0 0 30px;
}
#annex02 .wrap {
  padding: 80px 0 70px;
  position: relative;
}
#annex02 .cts_box {
  background: url(../images/lower_annex_bgi.jpg) no-repeat center / cover;
  position: relative;
}
#annex02 .annex_cts {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 5;
}
#annex02 .annex_cts .logo_annex {
  width: 80px;
}
#annex02 .annex_cts .contents {
  width: calc(100% - 80px - 20px);
}
#annex02 .annex_cts .contents h3 {
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0 0 10px;
}
#annex02 .annex_cts .contents p {
  font-size: 14px;
  line-height: 2em;
}
#annex02 .link_more {
  margin-top: 0;
}
#annex02 .bgi01 {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(70%, calc(-50% + 60px));
  z-index: 3;
}
#annex02 .bgi01.mv_in {
  transform: translate(70%, -50%);
}
#annex02 .bgi02 {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, calc(-80px + 60px));
  z-index: 3;
}
#annex02 .bgi02.mv_in {
  transform: translate(-50%, -80px);
}
#annex02 .bgi03 {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(-15%, calc(50% + 60px));
  z-index: 3;
}
#annex02 .bgi03.mv_in {
  transform: translate(-15%, 50%);
}

/*宴会場一覧*/
#banquet_list .list_wrap {
  width: 100%;
  color: var(--mainColor);
  margin: 10px 0 0 0;
}
#banquet_list .list_wrap .list_line {
  justify-content: space-around;
  align-items: center;
  gap: 0;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-top: 1px solid var(--mainColor);
  border-bottom: 1px solid var(--mainColor);
  padding: 10px 0;
}
#banquet_list .list_wrap a.list_line {
  border-top: none;
  border-bottom: none;
  padding: 0;
}
#banquet_list .list_wrap a.list_line > div {
  border-bottom: 1px solid var(--mainColor);
}
#banquet_list .list_wrap a.list_line > div.no_bdr {
  border-bottom: none;
}
#banquet_list .list_wrap a.list_line:hover .details {
  opacity: 1;
  background: var(--mainColor);
  color: #fff;
}
#banquet_list .list_wrap a.list_line:hover {
  opacity: 1;
}
#banquet_list .list_wrap a.list_line:hover img {
  opacity: 1;
}
#banquet_list .list_wrap .list_line .name {
  width: 180px;
}
#banquet_list .list_wrap .list_line .img {
  width: 126px;
}
#banquet_list .list_wrap .list_line .details {
  width: calc(100% - 180px - 126px);
  transition: .3s;
}
#banquet_list .list_wrap .list_line .details .cont {
  width: calc((100% - 100px)/5);
}
#banquet_list .list_wrap .list_line .details .download {
  width: 100px;
}
#banquet_list .list_wrap a.list_line .name,
#banquet_list .list_wrap a.list_line .cont,
#banquet_list .list_wrap a.list_line .download {
  display: flex;
  height: 59px;
  justify-content: center;
  align-items: center;
}
#banquet_list .list_wrap .list_line .details .download .btn {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--mainColor);
  position: relative;
  margin: 0 auto;
}
#banquet_list .list_wrap .list_line .details .download .btn:after {
  content: '';
  width: 11px;
  height: 6px;
  background: url(../../p_common/images/icon/btn_circle_arrow_wht.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#banquet_list .list_wrap a.list_line:hover .details .download .btn {
  background: #fff;
}
#banquet_list .list_wrap a.list_line:hover .details .download .btn:after {
  animation: btnArrow .3s ease-out .1s forwards;
  background: url(../../p_common/images/icon/btn_circle_arrow.png) no-repeat center / contain;
}

/*モーダル*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100svh;
	background: rgba(237,237,227,.9);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  z-index: 99999;
}
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
.modal-body{
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translate(-50%, 0);
	display: inline-block;
	max-width: 1200px;
	width: calc(100% - 40px);
}
.modal-close{
	position: absolute;
	display: flex;
  align-items: center;
  justify-content: center;
	top: 0;
  right: 0;
  transform: translate(calc(100% + 10px), calc(-100% - 10px));
  width: 70px;
  height: 70px;
  border-radius: 70px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  background: #918e8e;
}
.modal-content{
	background: #fff;
  filter: drop-shadow(6px 6px 10px rgba(0,0,0,.15));
  width: 100%;
  max-height: calc(100svh - 150px);
  border-radius: 10px;
  overflow: auto;
}

.modal_wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100svh;
	background: rgba(0,0,0,.9);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  z-index: 99999;
}
.modal_wrap.active{
	opacity: 1;
	visibility: visible;
}
.modal_wrap .modal-close{
	top: 20px;
  right: 20px;
  transform: translate(0, 0);
}
.modal_wrap .modal_cts {
	position: absolute;
	top: 50%;
	left: 50%;
  transform: translate(-50%,-50%);
	width: auto;
  max-width: 1200px;
	height: auto;
	transition: .3s;
}
.modal_wrap .modal_cts p.cap {
  text-align: center;
  margin: 15px 0 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 500;
}

/*サブミットボタン*/
.sbmBtn {
  cursor: pointer;
  background: var(--mainColor) url(../images/icon/btn_circle_arrow_wht.png) no-repeat right 15px top 50% / 21px auto;
  border: 1px solid var(--mainColor);
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
  height: 60px;
  border-radius: 10px;
  position: relative;
  font-family: var(--fontFamily);
  transition: .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.sbmBtn:hover {
  opacity: .8;
  background: var(--mainColor) url(../images/icon/btn_circle_arrow_wht.png) no-repeat right 10px top 50% / 21px auto;
}
.sbmBtn.back {
  background: #fff url(../images/icon/btn_circle_arrow_back.png) no-repeat left 15px top 50% / 21px auto;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}
.sbmBtn.back:hover {
  background: #fff url(../images/icon/btn_circle_arrow_back.png) no-repeat left 10px top 50% / 21px auto;
}

/*インフォメーション*/
.post_list {
  width: 100%;
  margin: 0;
  padding: 0;
}
.post_list .post_set a {
  text-decoration: none;
  padding: 15px 20px;
  border-bottom: 1px solid #cdcdcd;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.post_list .post_set:first-of-type a {
  border-top: 1px solid #cdcdcd;
}
.post_list .post_set .post {
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  width: calc(100% - 50px - 25px);
}
.post_list .post_set a .date {
  width: 74px;
  font-size: 14px;
  line-height: 1.5em;
  pointer-events: none;
}
.post_list .post_set a .cat_tag {
  width: 105px;
  padding: 2px 0;
}
.cat_tag {
  width: fit-content;
  border-radius: 15px;
  background: #6c8937;
  color: #fff;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 600;
  text-align: center;
  padding: 2px 10px;
  pointer-events: none;
}
.cat_tag.other {
  background: #1e88a8;
}
.cat_tag.event {
  background: #c73e3a;
}
.cat_tag.fair {
  background: #0b346e;
}
.cat_tag.type01 {
  background: #e96011;
}
.cat_tag.type02 {
  background: #6c8937;
}
.cat_tag.type03 {
  background: #2c89b8;
}
.cat_tag.cat01,
.cat_tag.cat-rooms {
  background: #CC4D27;
  color: #fff;
}
.cat_tag.cat02,
.cat_tag.cat-restaurant {
  background: #6c8937;
  color: #fff;
}
.cat_tag.cat03,
.cat_tag.cat-wedding {
  background: #277AA3;
  color: #fff;
}
.cat_tag.cat04,
.cat_tag.cat-hotspring_spa {
  background: #877259;
  color: #fff;
}
.cat_tag.cat05,
.cat_tag.cat-banquet {
  background: #007072;
  color: #fff;
}
.cat_tag.cat06,
.cat_tag.cat-event {
  background: #FBC00A;
  color: #fff;
}
.cat_tag.cat07,
.cat_tag.cat-other {
  background: #414551;
  color: #fff;
}
.cat_tag.cat-info {
  background: #9f2f6a;
  color: #fff;
}
.cat_tag.cat-press {
  background: #86858a;
  color: #fff;
}
.cat_tag.cat-rooms_restaurant {
  background: #B21003;
  color: #fff;
}
.cat_tag.cat08 {
  background: #9f2f6a;
  color: #fff;
}
.cat_tag.cat09 {
  background: #e0ad40;
  color: #fff;
}
.cat_tag.cat10 {
  background: #86858a;
  color: #fff;
}
.cat_tag.cat11 {
  background: #b21003;
  color: #fff;
}
.cat_tag.cat12 {
  background: #a7cc0a;
  color: #fff;
}
.post_list .post_set a .title {
  width: calc(100% - 74px - 105px - 50px);
  font-size: 16px;
  line-height: 1.5em;
}
.post_list .post_set a .btn {
  width: 50px;
  height: 50px;
  position: relative;
}
.post_list .post_set a .btn:before {
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: var(--mainColor);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  animation: postHover-out .3s ease-out forwards;
}
.post_list .post_set a .btn:after {
  content: '';
  width: 14px;
  height: 6px;
  background: url("../images/icon/btn_circle_arrow_wht.png") no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.post_list .post_set a:hover {
  opacity: 1;
  background: #f8f8f3;
}
.post_list .post_set a:hover .btn:before {
  animation: postHover .3s ease-out forwards;
}
@keyframes postHover {
  0% {
    width: 50px;
    height: 50px;
  }
  99.9999%, 100% {
    width: 70px;
    height: 70px;
  }
}
@keyframes postHover-out {
  0% {
    width: 70px;
    height: 70px;
  }
  99.9999%, 100% {
    width: 50px;
    height: 50px;
  }
}
.post_list .post_set a:hover .btn:after {
  animation: btnArrow .3s ease-out .1s forwards;
}

/*pager*/
.pager {
  display: inline-block;
  width: 100%;
  margin: 90px 0;
}
.pager.disable {
  display: none;
}
.pager .page_list {
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.pager #prev,
.pager #next {
  width: 50px;
  height: 50px;
  position: relative;
}
.pager .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--mainColor);
  display: inline-block;
  opacity: .3;
  pointer-events: none;
  position: relative;
}
.pager a.arrow {
  opacity: 1;
  pointer-events: all;
}
.pager .arrow:before {
  content: '';
  width: 14px;
  height: 6px;
  background: url(../images/icon/btn_circle_arrow.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.pager #prev .arrow:before {
  transform: translate(-50%,-50%) rotate(180deg);
}
.pager a.arrow:hover {
  background: var(--mainColor);
}
.pager a.arrow:hover:before {
  background: var(--mainColor);
  background: url(../images/icon/btn_circle_arrow_wht.png) no-repeat center / contain;
}
.pager .paging {
  width: auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.4em;
  color: var(--mainColor);
}
.pager .paging a {
  text-decoration: none;
  color: var(--mainColor);
  padding: 10px;
  position: relative;
}
.pager .paging a:after {
  content: '';
  width: 10px;
  height: 1px;
  background: var(--mainColor);
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translate(-50%,0) scale(0,1);
  transform-origin: left;
  transition: .3s;
}
.pager .paging a.current:after,
.pager .paging a:hover:after {
  transform: translate(-50%,0) scale(1,1);
}
.pager .paging .dotted {
  position: relative;
}
.pager .paging .dotted:before {
  content: '...';
  padding: 0 10px;
}

/*年アーカイブ*/
.yaer_archives {
  display: inline-block;
  width: 100%;
  margin: 50px 0 0 0;
}
.yaer_archives .archives_list {
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 500;
  color: var(--mainColor);
}
.yaer_archives .archives_list a {
  text-decoration: none;
  color: var(--mainColor);
  position: relative;
}
.yaer_archives .archives_list li {
  position: relative;
}
.yaer_archives .archives_list li:after {
  content: '';
  width: 1px;
  height: 15px;
  background: var(--mainColor);
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translate(0,-50%);
}
.yaer_archives .archives_list li:first-child:after,
.yaer_archives .archives_list li:last-child:after {
  content: none;
}

.scrl_wrap {
  width: 100%;
  overflow: auto;
  position: relative;
}
.scrl_wrap .scroll_hint {
  width: 125px;
  height: 95px;
  background: url(../images/scroll_hint.png) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 999;
  transition: .3s;
}
.scrl_wrap .scroll_hint.show {
  display: block;
}

/*レイアウト*/
.col_2 {
  justify-content: flex-start;
  gap: 40px;
}
.col_2 .col {
  width: calc((100% - 40px)/2);
}
.col_3 {
  justify-content: flex-start;
  gap: 50px;
}
.col_3 .col {
  width: calc((100% - 50px*2)/3);
}
.col_4 {
  justify-content: flex-start;
  gap: 50px 40px;
}
.col_4 .col {
  width: calc((100% - 40px*3)/4);
}



/* ========================================================================================================
   1399px以下
   ========================================================================================================*/
@media screen and (max-width: 1399px) {
  .modal-close {
    transform: translate(0, calc(-100% - 10px));
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 18px;
  }
  .modal-body {
    top: 70px;
  }
  .modal-content {
    max-height: calc(100svh - 100px);
  }
  #page_title .wrap {
    padding: 20px 0 0;
    position: relative;
    z-index: 2;
  }
  #page_title .page_mv {
    width: 580px;
    height: auto;
    top: 0;
    bottom: unset;
    z-index: 1;
  }
  #sub_navi {
    opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }
  #sub_navi.show {
    opacity: 1;
    top: 79px;
  }
  #annex02 .bgi01 {
    transform: translate(50%, calc(-50% + 60px));
  }
  #annex02 .bgi01.mv_in {
    transform: translate(50%, -50%);
  }
}


/* ========================================================================================================
   1199px以下
   ========================================================================================================*/
@media screen and (max-width: 1199px) {
  .modal_wrap .modal_cts {
    width: 90%;
  }
  #banquet_list .list_wrap .list_line .details .download {
    width: 60px;
  }
  #banquet_list .list_wrap .list_line .details .cont {
    width: calc((100% - 60px) / 5);
  }
  
  
}


/* ========================================================================================================
   999px以下
   ========================================================================================================*/
@media screen and (max-width: 999px) {
  #banquet_list .scrl_inner {
    width: 100%;
    min-width: 950px;
  }
  #banquet_list .list_wrap .list_line {
    font-size: 14px;
  }
  #banquet_list .list_wrap .list_line .name {
    width: 150px;
  }
  #banquet_list .list_wrap .list_line .img {
    width: 110px;
  }
  #banquet_list .list_wrap .list_line .img img {
    height: 52px;
  }
  #banquet_list .list_wrap .list_line .details {
    width: calc(100% - 150px - 110px);
  }
  #banquet_list .list_wrap a.list_line .name,
  #banquet_list .list_wrap a.list_line .cont,
  #banquet_list .list_wrap a.list_line .download {
    height: 52px;
  }
  
  
}

/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  #page_title .wrap {
    padding: 25px 0 0 0;
    height: 210px;
  }
  #page_title .wrap.no_img {
    height: 190px;
  }
  #page_title .title {
    font-size: 28px;
    line-height: 1.2em;
  }
  #page_title .title span {
    font-size: 12px;
    line-height: 1.2em;
    margin: 10px 0 0 0;
  }
  #page_title .sub_title {
    font-size: 12px;
    line-height: 1.2em;
    margin: 0 0 10px;
  }
  #page_title .sub_title span {
    padding: 0 40px 0 0;
  }
  #page_title .sub_title span:after {
    width: 30px;
  }
  #page_title .page_mv {
    width: calc(50% - 10px);
    max-width: 350px;
    height: auto;
    top: unset;
    bottom: -15px;
  }
  #lower .main_title {
    font-size: 24px;
    margin: 0 0 20px;
  }
  #lower .cts_title {
    font-size: 20px;
    margin: 0 0 20px;
  }
  #lower .lead_txt {
    font-size: 12px;
    line-height: 2em;
  }

  .link_more {
    margin: 40px 0 0 0;
  }
  .link_more a {
    font-size: 14px;
  }
  .link_more a .btn {
    width: 35px;
    height: 35px;
    border-radius: 35px;
  }

  .anc_link_list {
    justify-content: flex-start;
    gap: 20px;
  }
  .anc_link_list a {
    width: calc((100% - 20px) / 2);
    min-width: auto;
    min-height: 55px;
    font-size: 12px;
    line-height: 1.6em;
    padding: 0 35px 10px 0;
  }

  .tab_wrap .tab_navi .tab_menu {
    font-size: 13px;
  }
  .tab_wrap .tab_navi .tab_menu .tab {
    padding: 16px 10px;
  }

  .contact_low {
    background: #fff url(../images/bgi_contact_low_sp.jpg) no-repeat center / cover;
  }
  .contact_low .wrap {
    padding: 45px 0 50px;
  }
  .contact_low .main_title {
    margin-bottom: 10px !important;
  }
  .contact_low .txt {
    gap: 0;
  }
  .contact_low .txt .ttl {
    font-size: 12px;
    width: auto;
  }
  .contact_low .txt .number {
    font-size: 24px;
    width: fit-content;
    padding-left: 10px;
  }
  .contact_low .txt .time {
    font-size: 12px;
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
  .contact_low .btn_wrap {
    margin-top: 25px;
    align-items: inherit;
    gap: 0 7px;
  }
  .contact_low .btn_wrap a.btn {
    width: 100%;
    padding: 10px 25px 10px 10px;
    font-size: 12px;
    line-height: 1.8em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact_low .btn_wrap a.btn.stay span {
    padding: 0 0 0 30px;
  }
  .contact_low .btn_wrap a.btn.stay span:before {
    width: 20px;
    height: 20px;
  }
  .contact_low .btn_wrap a.btn.faq span {
    padding: 0 0 0 20px;
  }
  .contact_low .btn_wrap a.btn.faq span:before {
    width: 14px;
    height: 14px;
  }
  .contact_low .btn_wrap a.btn.arrow:after {
    width: 10px;
    height: 6px;
    right: 10px;
  }

  .recommend_low .wrap {
    padding: 45px 0;
  }
  .recommend_low.lstn .wrap {
    padding-bottom: 120px;
  }
  #lower .recommend_low .main_title {
    margin-bottom: 20px !important;
  }
  .recommend_low .recom_list {
    gap: 25px 15px;
  }
  .recommend_low .recom_list .recom_box {
    width: calc((100% - 15px) / 2);
  }
  .recommend_low .recom_list .recom_box a .cts h3 {
    font-size: 14px;
    margin-top: 10px;
  }
  .recommend_low .recom_list .recom_box a .cts .innner {
    justify-content: center;
    gap: 12px 0;
  }
  .recommend_low .recom_list .recom_box a .cts .innner p {
    width: 100%;
    margin-top: 8px;
  }
  .recommend_low .recom_list .recom_box a .cts .innner .btn {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    margin-top: 0;
  }

  .faq_low .wrap {
    padding: 45px 0;
  }
  .faq_low.lstn .wrap {
    padding-bottom: 120px;
  }
  .faq_low .main_title {
    margin-bottom: 20px !important;
  }
  .faq_list_wrap .faq_box a .numble {
    font-size: 21px;
    width: 35px;
    margin: 0 0 auto;
  }
  .faq_list_wrap .faq_box a .question {
    font-size: 14px;
    width: calc(100% - 12px* 2 - 35px - 35px);
  }
  .faq_list_wrap .faq_box a .btn {
    width: 35px;
    height: 35px;
    border-radius: 35px;
  }
  .faq_list_wrap .faq_box a .btn:after {
    width: 12px;
    height: 7px;
  }
  .faq_list_wrap .faq_box a {
    padding: 10px;
    gap: 0 12px;
  }

  .plan_carousel {
    margin: 30px auto 0;
  }
  .plan_carousel .slick-slide {
    margin: 0;
  }
  .plan_carousel .slick-list:before,
  .plan_carousel .slick-list:after {
    content: none;
  }
  .plan_carousel .slick-dots {
    margin-top: 25px;
  }
  .plan_carousel .slick-arrow {
    top: 30%;
  }
  .plan_carousel .plan_box h3 {
    font-size: 14px;
  }
  .plan_carousel .plan_box p {
    font-size: 12px;
    margin: 5px 0 0 0;
  }

  .cat_tag {
    font-size: 11px;
  }
  .post_list .post_set .post {
    gap: 5px 20px;
    width: calc(100% - 35px - 15px);
  }
  .post_list .post_set a {
    padding: 10px 10px;
    gap: 15px;
  }
  .post_list .post_set a .btn {
    width: 35px;
    height: 35px;
  }
  .post_list .post_set a .btn:before {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    animation: none;
  }
  .post_list .post_set a .btn:after {
    width: 14px;
    height: 5px;
    animation: none;
  }
  .post_list .post_set a .date {
    width: auto;
    font-size: 11px;
    pointer-events: none;
  }
  .pager {
    margin: 30px 0 60px;
  }
  .pager #prev, .pager #next {
    width: 35px;
    height: 35px;
  }
  .pager .arrow {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background: var(--mainColor);
  }
  .pager .arrow:before {
    width: 11px;
    height: 6px;
    background: url(../images/icon/btn_circle_arrow_wht.png) no-repeat center / contain;
  }
  .pager .page_list {
    gap: 20px;
  }
  .pager .paging {
    gap: 5px;
    font-size: 14px;
  }
  .yaer_archives .archives_list {
    gap: 10px 40px;
    font-size: 14px;
  }
  .yaer_archives .archives_list li:first-child {
    width: 100%;
    text-align: center;
  }
  .yaer_archives .archives_list li:after {
    right: -20px;
  }
  .sbmBtn,
  .sbmBtn:hover {
    cursor: pointer;
    background: var(--mainColor) url(../images/icon/btn_circle_arrow_wht.png) no-repeat right 10px top 50% / 12px auto;
    font-size: 12px;
    max-width: 100%;
    height: 60px;
    border-radius: 5px;
  }
  .sbmBtn.back,
  .sbmBtn.back:hover {
    background: #fff url(../images/icon/btn_circle_arrow_back.png) no-repeat left 10px top 50% / 12px auto;
  }

  #around_facility .facility_list {
    gap: 20px 0;
    margin-top: 30px;
  }
  #around_facility .facility_list .facility {
    width: 100%;
    padding: 0 8% 50px 0;
    position: relative;
  }
  #around_facility .facility_list .facility img {
    width: 100%;
  }
  #around_facility .facility_list .facility .btn_circle {
    transform: translate(0, 0);
  }
  #around_facility .wrap {
    padding: 40px 0 50px;
  }
  #inside_hotel .cts_title {
    margin-bottom: 25px !important;
  }
  #inside_hotel .image {
    border-radius: 5px;
    margin: 0 0 10px;
  }
  #inside_hotel .image img {
    border-radius: 5px;
  }
  #inside_hotel .cont {
    gap: 5px;
  }
  #inside_hotel .cont h3 {
    font-size: 14px;
    width: calc(100% - 30px - 5px);
  }
  #inside_hotel .cont .btn {
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
  #inside_hotel .cont .btn:after {
    width: 12px;
    height: 5px;
  }


  #annex .cts_box .wrap {
    padding: 50px 0;
  }
  #annex .cts_box .cts_wrap .contents {
    padding: 0;
  }
  #annex .cts_box .cts_wrap .contents .cts {
    gap: 20px 0;
  }
  #annex .cts_box .cts_wrap .contents .cts .logo_annex {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  #annex .cts_box .cts_wrap .contents .cts .txt {
    width: 100%;
  }
  #annex .logo_annex img {
    width: 100%;
    max-width: 56px;
  }
  #annex .cts_box .cts_wrap .contents h3 {
    font-size: 21px;
    margin: 0 0 20px;
    text-align: center;
  }
  #annex .cts_box .cts_wrap .contents .floor {
    font-size: 12px;
    margin: 0 0 10px;
    text-align: center;
  }
  #annex .cts_box .cts_wrap .contents p {
    font-size: 12px;
    text-align: center;
  }
  #annex .cts_box .cts_wrap .contents .btn_wrap {
    margin-top: 20px;
    flex-direction: row;
    gap: 10px;
  }
  #annex .cts_box .cts_wrap .contents .btn_wrap .btn {
    width: calc(50% - 5px);
    height: 60px;
    border-radius: 5px;
    font-size: 12px;
    text-align: center;
  }
  #annex .cts_box .cts_wrap .contents .btn_wrap .btn:after {
    right: 10px;
  }
  #annex .cts_box .img_top {
    transform: translate(40%, -50%);
    width: 60%;
  }
  #annex .cts_box .img_btm {
    transform: translate(-30%, 50%);
    width: 35%;
  }
  #annex .ttl .wrap {
    padding: 0 0 20%;
  }
  #annex {
    padding: 0 0 25%;
  }
  #annex02 {
    padding: 32% 0 20%;
  }
  #annex02 .wrap {
    padding: 45px 0;
  }
  #annex02 .ttl .wrap {
    padding: 0;
  }
  #annex02 .annex_cts .logo_annex,
  #annex02 .annex_cts .contents {
    width: 100%;
    text-align: center;
  }
  #annex02 .annex_cts .logo_annex img {
    max-width: 60px;
  }
  #annex02 .annex_cts .contents h3 {
    font-size: 21px;
  }
  #annex02 .annex_cts .contents p {
    font-size: 12px;
  }
  #annex02 .bgi01 {
    width: 70%;
    transform: translate(50%, calc(-60% + 60px));
  }
  #annex02 .bgi01.mv_in {
    transform: translate(50%, -60%);
  }
  #annex02 .bgi02 {
    width: 50%;
    transform: translate(-45%, calc(-25% + 60px));
  }
  #annex02 .bgi02.mv_in {
    transform: translate(-45%, -25%);
  }
  #annex02 .bgi03 {
    width: 40%;
    transform: translate(40%, calc(50% + 60px));
  }
  #annex02 .bgi03.mv_in {
    transform: translate(40%, 50%);
  }

  #banquet_list .scrl_inner {
    min-width: 780px;
  }
  #banquet_list p {
    font-size: 14px;
  }
  #banquet_list .list_wrap .list_line {
    font-size: 12px;
  }
  #banquet_list .list_wrap .list_line .name {
    width: 120px;
  }
  #banquet_list .list_wrap .list_line .details {
    width: calc(100% - 120px - 110px);
  }
  #banquet_list .wrap {
    padding: 50px 0;
  }



  #sub_navi {
    width: 100vw;
    overflow: auto;
  }
  #sub_navi.show {
    top: 55px;
  }
  #sub_navi ul {
    width: fit-content;
    max-width: 1200px;
    margin: 0;
    padding: 0 20px;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  #sub_navi ul li {
    white-space: nowrap;
  }
  #sub_navi ul li a {
    font-size: 12px;
  }
  .pdf_icon {
    padding-right: 22px;
  }
  .pdf_icon:after {
    width: 16px;
    height: 20px;
  }
  .modal_wrap .modal_cts p.cap {
    font-size: 14px;
  }
  ul.circle li {
    font-size: 14px;
    line-height: 1.6em;
  }
  ul.circle li:before {
    top: 7px;
  }


  .sp_rvs {
    flex-direction: column-reverse!important;
  }
  .sp_col_1 {
    justify-content: flex-start;
    gap: 50px 0;
  }
  .sp_col_1 .col {
    width: 100%;
  }
  .sp_col_2 {
    justify-content: flex-start;
    gap: 20px 15px;
  }
  .sp_col_2 .col {
    width: calc((100% - 15px)/2);
  }
  
  
}
/* ========================================================================================================
   499px以下
   ========================================================================================================*/
@media screen and (max-width: 499px) {
  #annex02 {
    padding: 25% 0 20%;
  }
}