
@charset "utf-8";


:root {
  /* color */
  --main-bg: #ffffff;
  --main-text: #222222;
  --main-yellow: #ffee90;
  --main-d-yellow: #b29f35;
  --main-gray: #cccccc;
}

html {
	scroll-behavior: smooth;
}

body {
	width: 100%;
	height: 100vh;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	font-size: 1rem;
	color: var(--main-text);
	line-height: 1.5;
	font-family: 'Noto Sans', sans-serif;
	font-family: 'Quicksand', sans-serif;
}

img {
	width: 100%;
	height: auto;
}

a {
	display: block;
	color: var(--main-text);
	text-decoration: none;
}
a:hover {
	opacity: 0.7;
}

main {
	flex: 1;
}

section {
	max-width: 1240px;
	padding: 100px 30px 0;
	margin: 0 auto;
}

table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
	tr {
		th, td {
			padding: 1rem 0;
			border-bottom: 1px solid var(--main-gray);
		}
		th {
			width: 40%;
		}
		td {
			width: 60%;
		}
	}
}

span.arrow {
	margin-left: 1rem;
	display: block;
	width: 10px;
	height: 10px;
	border-right: 1px solid var(--main-text);
	border-bottom: 1px solid var(--main-text);
	transform: rotate(45deg);
}

div.pagetop {
	width: 60px;
	height: 60px;
	position: fixed;
	right: 10px;
	bottom: 20px;
	background: var(--main-d-yellow);
	opacity: 0;
	border-radius: 50%;
	transition: all .3s ease;
	cursor: pointer;
}
div.pagetop.is-active {
	display: block;
	opacity: 1;
	transition: all .3s ease;
}

/* Font Awesome */
div.pagetop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background-image: url(../images/arrow_top.png);
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: cover;
}


/*                  */
/*    main image    */
/*                  */
div.main_bg {
	width: 100%;
	height: 100vh;
	padding-top: 55px;
	display: flex;
	align-items: center;
	background-image: url('../images/top_bg.jpg');
	background-repeat: no-repeat;
	background-size:cover;
	background-position: center;
	div.main_bg_wrap {
		max-width: 1240px;
		width: 100%;
		margin: 0 auto;
		text-shadow: 2px 2px 2px var(--main-text);
		h1 {
			font-size: 2.5rem;
			font-family: 'Noto Serif', serif;
			color: var(--main-yellow);
			font-weight: 700;
		}
		p {
			margin: 1rem 0;
			font-size: 0.9rem;
			color: var(--main-bg);
		}
	}
}

div.category_bg {
	width: 100%;
	height: 75vh;
	padding-top: 55px;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-size:cover;
	background-position: center;
	h1 {
		width: 100%;
		padding: 30px 0;
		text-align: center;
		color: var(--main-bg);
		font-family: 'Noto Serif', serif;
		background-color: rgba(0, 0, 0, 0.5);
	}
}
div.category_bg.stay {
	background-image: url('../images/stay/stay_bg.jpg');
}
div.category_bg.restaurant {
	background-image: url('../images/restaurant/restaurant_bg.jpg');
}
div.category_bg.service {
	background-image: url('../images/service/sevice_bg.jpg');
}


/*                */
/*     header     */
/*                */
header {
	width: 100%;
	height: 55px;
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--main-bg);
	z-index: 999;
}

div.header_wrap {
	max-width: 1240px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	h1 {
		max-width: 200px;
		margin-top: 10px;
		a {
			display: block;
		}
	}
}

div.navi_wrap {
	display: flex;
	align-items: center;
	nav {
		div.navi_toggle {
			display: none;
		}
		ul {
			list-style: none;
			display: flex;
			li {
				padding: 0 1rem;
				border-right: 1px solid var(--main-d-yellow);
				a {
					font-size: 0.9rem;
					color: var(--main-d-yellow);
					text-decoration: none;
				}
			}
			li:last-of-type {
				border-right: none;
			}
		}
	}
	ul.head_btn {
		list-style: none;
		width: 110px;
		margin: 0;
		display: flex;
		li {
			width: 50%;
			a {
				display: block;
				img {
					vertical-align: bottom;
				}
			}
		}
	}
}

@media screen and (max-width: 867px) {
	div.navi_wrap {
		nav {
			div.navi_toggle {
				cursor: pointer;
				display: block;
				position: relative;
				width: 55px;
				height: 55px;
				span {
					position: absolute;
					background-color: var(--main-text);
					width: 40px;
					height: 2px;
					transition: all .5s;
				}
				span:first-child {
					top: 10px;
				}
				span:nth-child(2) {
					top: 20px;
				}
				span:nth-child(3) {
					top: 30px;
				}
				span:last-child {
					background: none;
					height: auto;
					bottom: 0;
					font-size: 0.9rem;
	                text-align: center;
				}
			}
			ul {
				display: flex;
				flex-wrap: wrap;
				position: absolute;
				background-color: #f0f0e6;
				width: 100%;
				left: 0;
				top: -150px;
				transition: all .5s;
				li {
					width: 50%;
					border: none;
					text-align: center;
					border-bottom: 1px solid var(--main-gray);
					border-right: none;
					a {
						padding: 1rem 0;
					}
				}
				li:nth-of-type(2n) {
					border-left: 1px solid var(--main-gray);
				}
			}
		}
		nav.is_active {
			div.navi_toggle {
				span {
					width: 30px;
				}
				span:first-child {
					-webkit-transform: translateY(10px) rotate(-45deg);
					transform: translateY(10px) rotate(-45deg);
				}
				span:nth-child(2) {
					opacity: 0;
				}
				span:nth-child(3) {
					-webkit-transform: translateY(-10px) rotate(45deg);
					transform: translateY(-10px) rotate(45deg);
				}
				span:last-child {
					background: none;
					height: auto;
					bottom: 0;
					font-size: 0.9rem;
	                text-align: center;
				}
			}
			ul {
				transition: all .5s;
				top: 55px;
			}
		}
	}
}

@media screen and (max-width: 500px) {
	div.navi_wrap {
		nav {
			ul {
				top: -250px;
				li {
					width: 100%;
				}
				li:nth-of-type(2n) {
					border-left: none;
				}
			}
		}
	}
}


/*                */
/*     footer     */
/*                */
footer {
	border-top: 1px solid var(--main-gray);
	margin-top: 100px;
}

div.footer_wrap {
	padding: 100px 30px 0;
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
	ul.footer_menu {
		list-style: none;
		display: flex;
		li {
			padding: 0 1rem;
			border-right: 1px solid var(--main-d-yellow);
			a {
				color: var(--main-d-yellow);
				text-decoration: none;
			}
		}
		li:first-of-type {
			padding: 0 1rem 0 0;
		}
		li:last-of-type {
			border-right: none;
			padding: 0 0 0 1rem;
		}
	}
	img.footer_logo {
		width: 100%;
		height: auto;
		max-width: 40px;
		margin: 0 auto;
		display: block;
	}
	p.copy {
		text-align: center;
		font-size: 12px;
		font-family: 'Noto serif', serif;
		font-style: italic;
		color: var(--main-d-yellow);
		margin: 50px 0;
	}
}

address {
	font-size: 0.9rem;
	font-style: normal;
	p.add, p.tel {
		display: flex;
		align-items: center;
	}
	p.add:before, p.tel:before {
		content: '';
		width: 0.8rem;
		height: 0.8rem;
		margin-right: 1em;
		margin-right: 0.5em;
		background-repeat: no-repeat;
		background-size: 0.8rem;
		background-position: center;
	}
	p.add:before {
		background-image: url('../images/icon_add.png');
	}
	p.tel:before {
		background-image: url('../images/icon_tel.png');
	}
	a.btn_inquery {
		display: flex;
		align-items: center;
		width: fit-content;
		color: var(--main-bg);
		text-decoration: none;
		background-color: var(--main-d-yellow);
		padding: 5px 1em;
		margin-top: 5px;
	}
	a.btn_inquery:before {
		content: '';
		width: 0.8rem;
		height: 0.8rem;
		margin-right: 0.5em;
		background-image: url('../images/icon_mail.png');
		background-repeat: no-repeat;
		background-size: 0.8rem;
		background-position: center;
	}
}

@media screen and (max-width: 867px) {
	div.footer_wrap {
		ul.footer_menu {
			display: none;
		}
	}
}


/*                */
/*     Swiper     */
/*                */

.arrow_r {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 2px;
	margin: 6.5px 0;
	border-radius: 9999px;
	background-color: #000000;
}

.arrow_r::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 16.5px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000000;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}

.arrow_l {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 2px;
	margin: 6.5px 0;
	border-radius: 9999px;
	background-color: #000000;
}

.arrow_l::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 16.5px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000000;
  transform: rotate(-45deg);
  transform-origin: 1px 50%;
}

.swiper {
	position: relative;
}
.swiper-wrapper {
    width: 100%;
    height: auto;
	margin-bottom: 30px;
}
.swiper-nav {
position: absolute;
    display: flex;
    justify-content: space-between;
    height: 20px;
    bottom: 0;
    right: 0;
    width: 100%;

	.swiper-button-next,
	.swiper-button-prev {
		width: auto;
	}
	.swiper-button-next:after,
	.swiper-button-prev:after {
		display: none;
	}
}


/*                */
/*    fancybox    */
/*                */
.fancybox__content {
	max-width: 90%;
}