@charset "utf-8";
/*日本旅行共通のスタイル*/
@import url('https://www.nta.co.jp/akafu/east/common/css/common.css');
/*Shippori Mincho*/
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
/*fontawesome*/
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');
/* CSS Document */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}
@media screen and (min-width: 760px){
   .pc_none{
    	display: none;
  }
}
@media screen and (max-width: 759.9px){
   .sp_none{
    	display: none;
  }
}
.disnon {
  display: none;
}
.font_small {
	font-size: 90%;
}

/* 外側：背景（New Otani風・二トーン → 明るめに） */

#wrapper.region-page {
	width: 100%;
	background: #eaeaea;
}
#wrapper.region-page > .inner {
	width: 96%;
	max-width: 970px;
	margin: 0 auto;
	font-family: 'Shippori Mincho', serif;
	color: #333;
	overflow: hidden;
}
#wrapper.region-page * {
	box-sizing: border-box;
}
#wrapper.region-page img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
/*--------.page_roof-------------*/
.page_roof {
	width: 100%;
	height: 500px;
  position: relative;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.page_roof .inner{
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index: 1;
}
.page_roof .inner h2{
	width: 100%;
	max-width: 950px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 1.5s;
}
.page_roof .inner h2 img{
	width: 100%;
	height: auto;
}
@keyframes fadeIn { 
  0% { opacity: 0; }
  40% { opacity:0;}
  100% { opacity:1;}
}
@media screen and (max-width: 759.9px){
	.page_roof {
		height: auto;
	}
}


/* ----- Page header & plan tabs ----- */
.region-page .page_header {
	background: rgba(255,255,255,0.8);
	padding: 32px 20px 24px;
	font-family: 'Shippori Mincho', serif;
}

.region-page .page_header .inner {
	max-width: 950px;
	margin:-50px auto 0;
	position: relative;
	z-index: 10;
	background:  rgba(255,255,255,1);
	padding: 40px 10px;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2),-2px -2px 4px rgba(0,0,0,0.2);
}
.region-page .page_header .inner::before{
	content: "";
	position: absolute;
	top:0;
	left:0;
	right:0;
	height: 2px;
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}
.region-page .page_header h2 {
	font-size: 200%;
	font-weight: bold;
	color: #333;
	letter-spacing: 0.08em;
	margin:0 auto 20px;
	position: relative;
	padding: 10px 20px 10px;
	width: fit-content;
	text-align: center;
}
.region-page .page_header h2::before,
.region-page .page_header h2::after {
	position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}
.region-page .page_header h2::before {
  top: 0;
}
.region-page .page_header h2::after {
  bottom: 0;
}
.region-page .page_header p.lead {
	font-size: 160%;
	text-align: center;
  margin-bottom: 20px;
}
.region-page .page_header p.attention {
	font-size: 140%;
	width: fit-content;
	margin: 0 auto 20px;
	text-indent: -1em;
	padding-left: 1em;
}
.region-page .page_header .plan_tabs ul{
	margin-bottom: 20px;
}
.region-page .page_header .header_text {
	margin: 20px auto;
	width: 80%;
	border: 1px solid #704308;
	padding: 1em 2em;
}
.region-page .page_header .header_text p {
	margin: 5px auto;
	font-size: 120%;
	text-indent: -1em;
	padding-left: 1em;
}
@media screen and (max-width: 759.9px){
	.region-page .page_header .inner {
		margin:-40px auto 0;
		padding: 20px 10px;
	}
	.region-page .page_header h2 {
		font-size: 160%;
	}
	.region-page .page_header p.lead {
		font-size: 140%;
	}
	.region-page .page_header p.attention {
		font-size: 120%;
	}
	.region-page .page_header .header_text {
		margin: 20px auto;
		width: 90%;
		border: 1px solid #704308;
		padding: 1em 1em;
	}
	.region-page .page_header .header_text p {
		font-size: 110%;
	}
	
}
/* ----- Region NAV (東京〜福岡) ----- */
.region-page #pageNav.region_nav {
	background: #232323;
	width: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
	z-index: 20;
	margin-bottom: 40px;
}

.region-page #pageNav.region_nav ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.region-page #pageNav.region_nav ul li {
	flex: 1;
	background-image: url("../images/menu_line.svg");
	background-repeat: no-repeat;
	background-position: center right ;
	background-size: 1px;
}
.region-page #pageNav.region_nav ul li:last-child {
	background: none;
}

.region-page #pageNav.region_nav ul a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 56px;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 140%;
	letter-spacing: 0.05em;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	transition: background 0.2s;
}

.region-page #pageNav.region_nav ul li:hover {
	background-color: rgba(255, 255, 255, 0.08);
}
.region-page #pageNav.region_nav ul li.selected {
	background-color: rgba(255, 255, 255, 0.08);
}
.region-page #pageNav.region_nav.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
@media screen and (max-width: 759.9px){
	.region-page #pageNav.region_nav ul a {
		height: 45px;
		font-size: 100%;
	}
}
/*------------タブ-------------------*/

.tab_wrap {
	padding-top: 30px;
}
/*------------ホテル------------------*/

.region-page .title_block {
	text-align: center;
	margin-bottom: 24px;
}
.region-page .title_block .lead {
	font-size: 1rem;
	color: #666;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}

.region-page .title_block .lead::before {
	content: "";
	height: 12px;
	background: url("../images/bg_title.png") no-repeat center right;
	background-size: contain;
	margin: 0 10px;
	flex-grow: 1;
}

.region-page .title_block .lead::after {
	content: "";
	height: 12px;
	background: url("../images/bg_title.png") no-repeat center right;
	background-size: contain;
	transform: scale(-1, 1);
	margin: 0 10px;
	flex-grow: 1;
}

.region-page .plan_tabs ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: 80%;
}

.region-page .plan_tabs li {
	flex: 1;
	min-width: 120px;
}

.region-page .plan_tabs a {
	display: block;
	padding: 14px 16px;
	text-align: center;
	color: #333;
	text-decoration: none;
	font-size: 15px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ffffff 0%, #f5efe4 45%, #e2d0a8 100%);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(200, 155, 60, 0.5);
	font-weight: 600;
	letter-spacing: 0.08em;
	transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.region-page .plan_tabs li:last-child a {
	border-right: none;
}

.region-page .plan_tabs a:hover {
	color: #fff;
	background: linear-gradient(135deg, #c89b3c 0%, #f0d48a 40%, #c89b3c 100%);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
	transform: translateY(-1px);
}

/* ----- Hotel blocks (5 sections with IDs) ----- */
.region-page .hotel_block {
	background: rgba(255,255,255,0.9);
	padding: 0 10px 20px;
	/*border-bottom: 1px solid #d0d0d0;*/
	margin-bottom: 50px;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.region-page .hotel_block .inner {
	max-width: 920px;
	margin: 0 auto;
}

.region-page .area_name {
	font-size: 120%;
	letter-spacing: 0.12em;
	color: #FFFFFF;
	margin:0 auto 10px 10px;
	text-align: center;
	position: relative;
	padding:0 20px 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #333333;
	border-radius: 0 0 10px 10px;
	width: fit-content;
	height: 30px;
	
}
/*.region-page .area_name {
	font-size: 1.5rem;
	letter-spacing: 0.12em;
	color: #666;
	margin-bottom: 8px;
	text-align: center;
	position: relative;
	padding: 0 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}*/


/*.region-page .area_name::before {
	content: "";
	display: block;
	width: 40px;
	height: 20px;
	background: url("../images/bg_line_left.png") no-repeat center left;
	background-size: contain;
	flex-shrink: 0;
	z-index: 10;
}

.region-page .area_name::after {
	content: "";
	display: block;
	width: 40px;
	height: 20px;
	background: url("../images/bg_line_right.png") no-repeat center right;
	background-size: contain;
	flex-shrink: 0;
	z-index: 20;
}*/

.region-page .hotel_name {
	font-size: 220%;
	font-weight: bold;
	color: #333;
	letter-spacing: 0.04em;
	margin-bottom: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	position: relative;
	padding: 0 10px;
}

.region-page .hotel_name::before {
	content: "";
	display: block;
	width: 180px;
	height: 12px;
	background: url("../images/bg_title.png") no-repeat center right;
	background-size: contain;
	flex-shrink: 0;
}

.region-page .hotel_name::after {
	content: "";
	display: block;
	width: 180px;
	height: 12px;
	background: url("../images/bg_title.png") no-repeat center right;
	background-size: contain;
	transform: scale(-1, 1);
	flex-shrink: 0;
}

/* Main hotel photo + intro */
.region-page .hotel_main {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	margin-bottom: 40px;
}

.region-page .hotel_photo {
	flex: 0 0 52%;
	max-width: 52%;
}

.region-page .hotel_photo img {
	width: 100%;
	height: auto;
	display: block;
	background: #252525;
}

.region-page .hotel_intro {
	flex: 1;
	min-width: 0;
}

.region-page .hotel_intro p {
	margin: 0 0 12px;
	font-size: 0.95rem;
	line-height: 1.75;
	color: #555;
}

.hotel_link {
	text-align: center;
	margin: 16px auto 0;
}

/* Room section - 中央配置・bg_facilityあしらい */
.region-page .room_section {
	margin-bottom: 36px;
}

.region-page .room_section h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	letter-spacing: 0.15em;
	margin-bottom: 24px;
	text-align: center;
	background: url("../images/bg_facility.png") no-repeat bottom center;
	background-size: auto 18px;
	padding: 0 20px 24px;
	position: relative;
}

.region-page .room_item {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 24px;
}

.region-page .room_item .room_photo {
	flex: 0 0 380px;
}

.region-page .room_item .room_photo img {
	width: 100%;
	height: auto;
	display: block;
	background: #252525;
}

.region-page .room_item .room_text p {
	/*margin: 0;*/
	font-size: 140%;
	color: #555;
	line-height: 1.7;
}

.room_name {
	text-align: center;
	font-size: 120%;
	font-weight: bold;
	margin-bottom: 20px;
}
.room_name span.type{
	color: #704308;
	display: block;
	position: relative;
	padding-bottom: 8px;
}
.room_name span.type::before{
	content: "";
	position: absolute;
	bottom: 0;
	left:0;
	right: 0;
	width: 40px;
	height: 1px;
	margin: 0 auto 4px;
	background:rgba(112,67,8,0.6);
}

.recommend_wrap {
	display: flex;
	gap: 15px;
}

.recommend_name {
	font-weight: bold;
	margin: 10px auto;
}


.recommend_item {
	width: 32%;
	margin-bottom: 10px;
}

@media screen and (max-width: 759.9px) {
	.recommend_wrap {
		display: block;
	}

	.recommend_item {
		width: 100%;
	}
	.region-page .room_item .room_text p {
		font-size: 120%;
	}

}

/* CTA block (per hotel) */
.region-page .cta_block {
	background: #2a2a2a;
	padding: 24px 28px;
	margin: 20px 0 30px;
	border-radius: 2px;
}

.region-page .cta_text {
	font-size: 1rem;
	color: #fff;
	text-align: center;
	margin: 0 0 20px;
}

.region-page .cta_buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.region-page .btn_plan {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 48px;
	padding: 0 20px;
	background: linear-gradient(135deg, #c89b3c 0%, #f0d48a 40%, #c89b3c 100%);
	color: #20140a;
	text-decoration: none;
	font-size: 0.95rem;
	border-radius: 999px;
	border: 1px solid rgba(160, 120, 40, 0.9);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	font-weight: 600;
	letter-spacing: 0.08em;
	transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.1s;
}

.region-page .btn_plan:hover {
	background: linear-gradient(135deg, #e7c676 0%, #f7e3a6 40%, #e7c676 100%);
	border-color: rgba(200, 155, 60, 1);
	color: #20140a;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	transform: translateY(-1px);
}

/* ----- Breakfast section - 中央配置・bg_facilityあしらい ----- */
.region-page .breakfast_section {
	background: #eaeaea;
	padding: 48px 20px;
	border-top: 1px solid #d0d0d0;
}

.region-page .breakfast_section .inner {
	max-width: 920px;
	margin: 0 auto;
}

.region-page .breakfast_section h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	letter-spacing: 0.15em;
	margin-bottom: 24px;
	text-align: center;
	background: url("../images/bg_facility.png") no-repeat bottom center;
	background-size: auto 18px;
	padding: 0 20px 24px;
	position: relative;
}

.region-page .breakfast_content {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.region-page .breakfast_photo {
	flex: 0 0 380px;
}

.region-page .breakfast_photo img {
	width: 100%;
	height: auto;
	display: block;
	background: #252525;
}

.region-page .breakfast_text p {
	margin: 0;
	font-size: 0.95rem;
	color: #555;
	line-height: 1.75;
}

/* ----- Recommend section - 中央配置・kakkoあしらい ----- */
.region-page .recommend_section{
	width: 90%;
	margin: 0 auto;
	background: rgba(234,234,234,0.6);
	padding: 10px 20px;
}

.region-page .recommend_section h3 {
	font-size: 140%;
	font-weight: 600;
	color: #333;
	letter-spacing: 0.1em;
	margin: 24px auto;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
}

.region-page .recommend_section h3::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 32px;
	background: url("../images/kakko_left.png") no-repeat center;
	background-size: contain;
}

.region-page .recommend_section h3::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 32px;
	background: url("../images/kakko_right.png") no-repeat center;
	background-size: contain;
}

.region-page .recommend_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.region-page .recommend_item {
	text-align: center;
}

.region-page .recommend_photo {
	margin-bottom: 12px;
}

.region-page .recommend_photo img {
	width: 100%;
	height: auto;
	display: block;
	background: #252525;
}

.region-page .recommend_item p {
	margin: 0 0 6px;
	font-size:140%;
	color: #555;
	text-align: left;
}
.region-page .recommend_item .recommend_name {
	text-align: center;
}
.region-page .recommend_section .other_tokuten{
	margin-bottom: 20px;
}
.region-page .recommend_section .other_tokuten ul{
	width: fit-content;
	margin: 0 auto 10px;
	font-size: 120%;
}
.region-page .recommend_section .other_tokuten ul li{
	text-indent: -1em;
	padding-left: 1em;
	font-size: 120%;
}
.region-page .recommend_section .other_tokuten p{
	width: fit-content;
	margin: 0 auto;
	font-size: 120%;
}

/* ----- Bottom CTA ----- */
.region-page .cta_bottom {
	background: #2a2a2a;
	padding: 32px 20px;
}

.region-page .cta_bottom .inner {
	max-width: 920px;
	margin: 0 auto;
}

.region-page .cta_bottom .cta_text {
	text-align: center;
	margin: 0 0 20px;
	color: #fff;
	font-size: 1rem;
}

.region-page .cta_bottom .cta_buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}


/* -----  area（外側の暗い背景内・main直下） ----- */
#wrapper .banner_area {
	padding: 20px;
}

#wrapper .banner_area .inner {
	max-width: 960px;
	margin: 0 auto;
}

#wrapper .banner_item {
	margin-bottom: 16px;
}
#wrapper .banner_item img {
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid #CCC;
}
.banner_area h4 {
	text-align: center;
	font-size: 160%;
	margin: 10px auto;
}
.banner_area p {
	text-align: center;
	font-size: 140%;
	margin: 10px auto 20px;
}
.banner_item {
	width: 80%;
	margin: 0 auto;
}
@media screen and (max-width: 759.9px) {
	#wrapper .banner_area {
		padding: 0;
	}
	#wrapper .banner_item {
		margin-bottom: 10px;
	}
	.banner_area h4 {
		text-align: center;
		font-size: 120%;
		margin: 10px auto;
	}
	.banner_area p {
		text-align: center;
		font-size: 100%;
		margin: 10px auto 20px;
	}
	.banner_item {
		width: 100%;
		margin: 0 auto;
	}
}
/* ----- Responsive ----- */
@media screen and (max-width: 759.9px) {
	.region-page .page_header {
		padding: 24px 16px 20px;
	}

	.region-page .title_block .lead {
		flex-direction: column;
	}

	.region-page .title_block .lead::before {
		width: 80%;
		margin: 10px auto;
		background-position: center left;
	}

	.region-page .title_block .lead::after {
		width: 80%;
		margin: 10px auto;
		background-position: center left;
	}

	.region-page .room_section h3 {
		font-size: 1.25rem;
		background-size: auto 12px;
		padding: 0 15px 20px;
	}

	.region-page .breakfast_section h3 {
		font-size: 1.25rem;
		background-size: auto 12px;
		padding: 0 0 20px;
	}

	.region-page .recommend_section h3 {
		font-size: 1.1rem;
		height: auto;
		padding: 10px 0;
	}
	.region-page .plan_tabs ul {
		gap:20px;
	}
	.region-page .plan_tabs li {
		min-width: 100%;
	}

	.region-page .plan_tabs a {
		border-right: none;
		border-bottom: 1px solid #3a3a3a;
	}

	.region-page .plan_tabs li:last-child a {
		border-bottom: none;
	}

	.region-page .hotel_main {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 28px;
	}

	.region-page .hotel_photo {
		flex: none;
		max-width: 100%;
	}

	.region-page .hotel_block {
		padding:0 10px 30px;
	}
	.region-page .hotel_name {
		font-size: 140%;
		margin-bottom: 20px;
		padding: 0 5px;
		flex-direction: column;
	}

	.region-page .hotel_name::before,
	.region-page .hotel_name::after {
		width: 100%;
	}

	.region-page .area_name {
		font-size: 100%;
	}
	.region-page .room_item {
		flex-direction: column;
		gap: 12px;
	}

	.region-page .room_item .room_photo {
		flex: none;
		max-width: 100%;
	}

	.region-page .cta_buttons {
		flex-direction: column;
	}

	.region-page .btn_plan {
		min-width: 100%;
	}

	.region-page .breakfast_content {
		flex-direction: column;
	}

	.region-page .breakfast_photo {
		flex: none;
		max-width: 100%;
	}

	.region-page .recommend_grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}
/*-----その他ホテル----------------*/
#other-hotels .inner{
	width: 95%;
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 50px;
	font-family: 'Shippori Mincho', serif;
}
#other-hotels .otherbox{
	background: #FFFFFF;
	border: 1px solid #704308;
	margin-bottom: 10px;
	padding-bottom: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
#other-hotels .otherbox img{
	width: 100%;
	margin-bottom: 15px;
}
#other-hotels .otherbox h3{
	font-size: 140%;
	font-weight: bold;
	text-align: center;
}
#other-hotels .otherbox .cta_buttons{
	width: 80%;
	margin: auto auto 0 auto;
}
#other-hotels .otherbox .cta_buttons a{
	width: 100%;
	height: 30px;
	font-size: 100%;
}
@media screen and (max-width: 759.9px) {
	#other-hotels .otherbox h3{
		font-size: 140%;
		font-weight: bold;
		text-align: center;
	}
	#other-hotels .otherbox .cta_buttons{
		width: 90%;
	}
	#other-hotels .otherbox a{
		height: 25px;
		font-size: 100%;
	}
}

/*-----トップwiper ----------------*/
.swiper-container.top{
	width: 100%;
	margin:0 auto;
	height: 100%;
}
.swiper-container.top .swiper-slide {
  overflow: hidden;
}
.swiper-container.top .swiper-slide .swiper-img{
	width: 100%;
	height: 100%;
}
.swiper-container.top .swiper-slide .swiper-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.swiper-container.top .swiper-slide .swiper-img.basis_top img{
	object-position: top;
}

@media screen and (max-width: 759.9px){
	.swiper-container.top{
	}
}
/*-----inboxswiper--------------------*/
.swiper-container.inbox .swiper-slide{
	padding-bottom: 30px;
}
.swiper-container.inbox .swiper-slide img{
	width: 100%;
}

.swiper-container.inbox .swiper-slide .credit{
	position: absolute;
	bottom: 35px;
	right: 5px;
	font-size:12px;
	background: rgba(255,255,255,0.8);
	padding: 0 10px;
	border-radius: 10px;
}
/* ドットインジケーターの色*/
.swiper-pagination.inbox .swiper-pagination-bullet{
  opacity: 0.6;
}
/* ドットインジケーターの位置*/
.swiper-container.inbox .swiper-pagination {
	bottom: 5px;
}
.swiper-pagination.inbox .swiper-pagination-bullet-active{
  background: #704308;
}
/* prev&next 矢印の色とサイズ*/
.swiper-button-prev.inbox::after,
.swiper-button-next.inbox::after{
	font-size:20px;
	color: #FFF;
	font-weight: bold;
	padding-bottom: 20px;
}
@media screen and (max-width: 759.9px){
	.swiper-button-prev.inbox::after,
	.swiper-button-next.inbox::after{
		font-size:15px;
	}
}

/*-----朝食スライダー-----------------*/
.breakfast_wrapper {
	width: 100%;
	position: relative;
}

.swiper-container.breakfast {
	width: 95%;
	margin: 0 auto;
	padding-bottom: 30px;
}

.swiper-container.breakfast > .swiper-wrapper > .swiper-slide {
	padding: 15px 15px;
	height: auto;
	background: rgba(255, 255, 255, 1);
	border: 1px solid rgba(112,67,8,0.6);
}
.swiper-container.breakfast > .swiper-wrapper > .swiper-slide .room_item {
	margin-bottom: 0;
}
.swiper-button-prev.breakfast::after,
.swiper-button-next.breakfast::after {
	display: none;
}

.swiper-button-prev.breakfast,
.swiper-button-next.breakfast {
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: #232323;;
	z-index: 20;
}
.swiper-button-prev.breakfast {
	left: -5px;
}
.swiper-button-next.breakfast {
	right: -5px;
}
.swiper-container.breakfast .swiper-pagination {
	bottom: 0;
}
.swiper-pagination.breakfast .swiper-pagination-bullet-active{
  background: #704308;
}
@media screen and (max-width: 759.9px) {
	.swiper-container.breakfast {
		width: 90%;
		margin: 0 auto;
		padding-bottom: 30px;
	}

	.swiper-button-prev.breakfast,
	.swiper-button-next.breakfast {
		font-size: 20px;
		width: 30px;
		height: 30px;
		border-radius: 15px;
	}

	.swiper-container.breakfast > .swiper-wrapper > .swiper-slide {
		border: 1px solid #704308;
		padding: 10px 10px;
	}
}

/*-----その他ホテルスライダー-----------------*/
.otherhotels_wrapper {
	width: 100%;
	position: relative;
}

#other-hotels .swiper-container {
	width: 95%;
	margin: 0 auto;
	padding-bottom: 30px;
}

#other-hotels .swiper-container > .swiper-wrapper > .swiper-slide {
	height: auto;
}
.swiper-button-prev.otherhotels::after,
.swiper-button-next.otherhotels::after {
	display: none;
}

.swiper-button-prev.otherhotels,
.swiper-button-next.otherhotels {
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: #232323;;
	z-index: 20;
}
.swiper-button-prev.otherhotels {
	left: -5px;
}
.swiper-button-next.otherhotels {
	right: -5px;
}
#other-hotels .swiper-container .swiper-pagination {
	bottom: 0;
}
.swiper-pagination.otherhotels .swiper-pagination-bullet-active{
  background: #704308;
}
@media screen and (max-width: 759.9px) {
	#other-hotels .swiper-container {
		width: 90%;
		margin: 0 auto;
		padding-bottom: 30px;
	}

	.swiper-button-prev.otherhotels,
	.swiper-button-next.otherhotels {
		font-size: 20px;
		width: 30px;
		height: 30px;
		border-radius: 15px;
	}
}