@charset "utf-8";

/********************************ヘッダー*********************************/
.main-title {
	height: 80px;
    margin: 0;
}
.main-title img {
	height: 100%;
	width: auto;
	object-fit: contain;
	padding: 0 20px;
}

.bg-color {
	background-color: #dc143c;
}
main {
	padding-top: 20px;
}

@media screen and (min-width: 768px) {
	.main-title {
		height: 100px;
		max-width: 1000px;
	}
	main {
		padding-top: 145px;
	}
} 
.header {
	position: fixed;
	top: 0;
	z-index: 99;
	/*position: sticky;*/
	/*background: var(--color-bw);*/
	background-color: #dc143c;
	width: 100%;
	height: auto;
    padding: 0;
}

.heading1 {
    max-width: 100%;
/*	height: 50px;*/
    font-size: 1.8rem;
    color: var(--color-2);
    font-weight: var(--weight-l);
}

.heading2 {
    text-align: left;
	margin-bottom: 20px;
    margin-left: 0;
    width: 85%;
/*    font-weight: var(--weight-m);
    background-color: var(--color-2);
    clip-path: polygon(0% 0, 100% 0, 90% 100%, 0 100%);*/
}
.flex-header {
/*    display: block;*/
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.heading-img {
    width: 100vw;
	height: 50px;
    overflow: hidden;
}
.heading-img img {
	width: auto;
    height: 100%;
	overflow: hidden;
	object-fit: cover;
	margin: 0 auto;
}

 header .logo {
    margin-left: 30px;
    font-size: 30px;
}
header {
    /* max-height: 100px; */
/*    flex-wrap: nowrap;*/
    z-index: 999;
}
header .logo {
}

@media screen and (max-width: 767px) {
header .logo {
    margin: 0 auto;
    width: 100%;
    padding-top: 5px;
    font-size: 18px;
    text-align: center;
}
}



.header_h {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
    margin: 0;
/*	background: #fff;*/
/*    position: fixed;*/
    right: 0;
}

.logo {
	font-size: 24px;
}

/* ここから下がハンバーガーメニューに関するCSS */
  
.drawer_hidden {
	display: none;
}
.drawer_open {
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;
	cursor: pointer;
}
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background: #333;
	transition: 0.5s;
	position: absolute;
}
.drawer_open span:before {
	bottom: 8px;
}
.drawer_open span:after {
	top: 8px;
}
#drawer_input:checked ~ .drawer_open span {
	background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ .drawer_open span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
	top: 0;
	transform: rotate(-45deg);
}
.nav_content {
	width: 100%;
	height: 100%;
	position: fixed;
    top: 0;
	left: 100%;
	z-index: 99;
	background: #00000082;
	transition: .5s;
}
.nav_list {
	list-style: none;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background-color: #fff;
}
.nav_rogo {
	width: 40%;
}
.nav_item {
	font-size: 14px;
	font-weight: 400;
	padding: 15px;
	width: 90%;
	border-bottom: 1px solid #e2e5e8;
}
#drawer_input:checked ~ .nav_content {
	left: 0;
}
@media screen and (min-width: 768px) {
	.header_h {
		display: none;
	}
}


/*********************************メニューボタン*********************************/
.menu_box {
	background-color: black;
	display: none;
}
.menu_btn {
	display: table;
	table-layout: fixed;
	/*background-color: black;*/
	width: 100%;
	max-width: 1120px;
	height: auto;
	margin: 0 auto;
	color: #fff;
	justify-content: space-evenly;
	align-items: center;
}
.menu_btn li {
	/*width: 100px;*/
	display: table-cell;
	position: relative;
	font-size: 13px;
	font-weight: 400;
}
.menu_btn a{
	display: block;
	position: relative;
	margin: 13px 0;
	border-left: 0;
	border-right: solid 1px #fff;
}
.menu_btn a:last-of-type {
	border-right: 0;
}


@media screen and (min-width: 768px) {
	.menu_box {
		display: block;
	}
	.menu_btn {
		height: 45px;
	}
	.menu_btn a {
		font-size: 16px;
		border-left: 1px solid #585656;
		border-right: 1px solid #585656;
	}
	.menu_btn a+ a {
		border-left: 0;
		border-right: 1px solid #585656;
	}
	.menu_btn a:last-of-type {
		border-right: 1px solid #585656;
	}
}
/*********************************スライダー*********************************/

.container {
	max-width: 1120px;
	padding-top: 10px;
}
.slick-next {
	right: 20px;
}
.slick-prev {
	left: 20px;
	z-index: 1;
}
.slick-prev:before, .slick-next:before{
	font-size: 20px;
}
@media screen and (min-width: 768px) {
	.slick-prev:before, .slick-next:before {
		font-size: 25px;
	}
}


/*********************************
contents
*********************************/
.content {
	margin-top: 30px;
}
.page_title {
	font-size: 24px;
	text-align: left;
	margin-bottom: 50px;
}
.item {
	margin-bottom: 20px;
}

.button-box-2 {
	margin: 0;
}
.wrap-grid {
	gap : 10px;;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}


.addition_box {
	margin: 0 auto;
}

.addition_box h2 {
	padding: 6px 0;
	border-bottom: solid 2px #0a0000;
	margin-bottom: 32px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
}
.addition_box p {
	font-size: 16px;
	margin-bottom: 10px;
	line-height: 2;
}
.addition_box .cos, .sham {
	text-align: left;
}
.item {
	margin-bottom: 20px;
}

.item img {
	width: 100%;
}

.addition_tittle {
	font-size: 24px;
	font-weight: 600;
	text-align: left;
	margin: 0 auto 3px;
	padding-left: 3px;
}

.addition_text_area {
	margin-bottom: 23px;
	padding-top: 5px;
	padding-left: 3px;
}

.addition_text {
	font-size: 16px;
    font-weight: 400;
	text-align: left;
	margin: 0 auto ;
	padding-top: 3px;
	padding-left :3px;
}

.addition_telltap {
	font-weight: bold;
	font-size: 19px;
	text-align: left;
	margin: 10px auto 0;
}

.addition_emphasize {
    font-size: 20px;
    text-align: left;
    margin: 0 auto 5px;
    padding: 3px 3px;
}

@media screen and (min-width: 768px) {
	.addition_box {
		max-width: 1120px;
	}
	.page_title {
		font-size: 32px;
	}
}

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

.footer {
	background-color: #0a0000;
	color: #fff;
	height: auto;
	padding-bottom: 0;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
}
.f_btn {
	padding-top: 16px;
	line-height: initial;
}
.f_btn i {
	padding-bottom: 5px;
}
.f_menu {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 16px 0 16px;
}
.f_menu li {
	padding: 0 9px;
	border-right: solid 1px #fff;
}
.f_menu li:last-of-type {
	border-right: 0;
}
.f_nav {
	font-size: 10.8px;
	line-height: 18px;
}

@media screen and (min-width: 768px) {}


/*********************************部屋*********************************/

.room_item {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	font-size: 16px;
	line-height: 2;
	gap: 10px;
}
.room_item p {
	text-align: left;
	font-weight: 300;
	margin-bottom: 10px;
}

@media screen and (min-width: 768px) {}


/*********************************
■■■
*********************************/
/*********************************マップ*********************************/

.map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.address {
	background: #e47a10;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
	line-height: 25px;
	font-weight: 400;
}
.ml {
	margin-bottom: 20px;
}

table {
    width: 100%;
    font-size: 13px;
}
table.hotel_pro {
	border-collapse: separate;
	border-spacing: 1px;
	text-align: left;
	line-height: 1.5;
	border-top: 1px solid #ffc46b;
	border-left:  1px solid #ffc46b;
	border-right: 1px solid #ffc46b;
	border-bottom: 0px;
	background: #fff;
}
table.hotel_pro th {
        width:25%;
	padding: 10px;
	font-weight: bold;
	text-align: center;
	vertical-align: center;
	border-bottom: 1px solid #ffc46b;
	background: #e47a10;
	border-left:  0px;
	border-right: 0px;
	border-top: 0px;
}
table.hotel_pro td {
	padding: 10px;
	vertical-align: center;
	border-bottom: 1px solid #ffc46b;
	border-left: 0px;
	border-right:  0px;
	border-top: 0px;
	font-weight: 400;
}
.hotel_pro a {
	text-decoration: none;
	color: #000;
}
@media screen and (min-width: 768px) {}


/*********************************
■■■
*********************************/
/*********************************クーポン*********************************/
.btn-close {
	width: 100%;
	height: auto;
	padding: 0 0 20px;
	background-color: white;
}
.cpn li {
	padding-bottom: 20px;
}

@media screen and (min-width: 768px) {}


/*********************************
■■■
*********************************/
/*********************************アンカーリンク*********************************/
#service1, #service2, #service3, #service4 {
	padding-top: 120px;
	margin-top: -120px;
}


@media screen and (min-width: 768px) {}


/*********************************
■■■
*********************************/
/*********************************■■■*********************************/



@media screen and (min-width: 768px) {}


/*********************************
■■■
*********************************/



