@charset "utf-8";

p, ul {
	margin: 0;
}

button:hover {
  background-color: transparent;
  color: var(--color-txt);
  border-width: 2px;
}

/* -------------------------------------------------------------- */

body {
	display: flex;
	flex-direction: column;
}

main {
	flex-grow: 1;
}

/* -------------------------------------------------------------- */

.PageHeader {
	background-image: url(../img/home/kv_7.webp);
}

.no-webp .PageHeader {
	background-image: url(../img/home/kv_7.jpg);
}

.PageHeader::before {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0)
}

/* -------------------------------------------------------------- */

#reservation {
    margin-block-start: 20px;
}

@media screen and (min-width: 768px) {
    #reservation {
        margin-block-start: 30px;
    }

	.section-header + * {
        margin-block-start: 40px;
    }

	.section-header__read {
		max-width: 100%;
		text-align: center;
	}
}

/* -------------------------------------------------------------- */

.tab {
	display: flex;
	flex-direction: column;
	row-gap: 12px;
}

@media screen and (min-width: 1080px) {
	.tab {
		row-gap: 20px;
	}
}

.tab__btns {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	row-gap: 10px;
}

@media screen and (min-width: 1080px) {
	.tab__btns {
		column-gap: 20px;
	}
}

@media screen and (min-width: 1280px) {
	.tab__btns {
		column-gap: 40px;
	}
}

.tab__btn {
	font-size: 1.6rem;
	line-height: 1.5;
	border-width: 2px;
	border-radius: 10px;
	font-weight: 600;
	grid-column: span 12;
	padding-block: 1.2rem;
	padding-inline: 1rem;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

@media screen and (min-width: 1080px) {
	.tab__btn {
		font-size: 1.7rem;
		line-height: 1.2;
		grid-column: span 4;
		padding-block: 1.4rem;
		padding-inline: 1.4rem;
	}
}

.tab__btn .small {
	font-size: 1.2rem;
}

@media screen and (min-width: 1080px) {
	.tab__btn .small {
		font-size: 1.4rem;
	}
}

.tab__btn[aria-selected="true"] {
	background-color: var(--color-txt);
	color: #fff;
}

.tab__extra {
	text-align: center;
}

.tab__extra-icon svg {
	width: 36px;
	height: 36px;
}

@media screen and (min-width: 1080px) {
	.tab__extra-icon {
		stroke-width: 0.5;
	}

	.tab__extra-icon svg {
		width: 48px;
		height: 48px;
	}
}

.tab__extra-title {
	font-size: 1.6rem;
	font-weight: bold;
}

@media screen and (min-width: 1080px) {
	.tab__extra-title {
		font-size: 1.8rem;
	}
}

.tab__extra-text {
	margin-top: 12px;
}

@media screen and (min-width: 1080px) {
	.tab__extra-text {
		margin-top: 20px;
	}
}

.tab__panels {
	position: relative;
	min-height: 0;
	transition: min-height 0.3s ease;
	overflow: hidden;
}

.tab.is-active .tab__panels {
	display: block;
}

.tab__panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	transform: translateY(40px);
	transition-property: opacity, transform;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(.17,.84,.44,1);
	transition-delay: 0s;
	pointer-events: none;
}

.tab__panel[aria-hidden="false"] {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.tab.is-active .tab__panel[aria-hidden="false"] {
	transition-delay: 0.3s;
}
/* -------------------------------------------------------------- */

.flow-table {
	line-height: 1.7;
}

.flow-table__row {
	--cols: 1;

	display: grid;
	column-gap: 20px;
	row-gap: 15px;
	grid-template-columns: repeat(var(--cols), 1fr);	
	padding-block: 20px 30px;
	border-top: 1px solid rgba(0,0,0,0.08);
}

@media screen and (min-width: 1080px) {
	.flow-table__row {
		--cols: 2;
		
		padding-block: 20px;
	}
}

.flow-table__list {
	line-height: 2;
}

.flow-table__item.bold {
	font-weight: bold;
}

.flow-table__item > .-small {
    font-size: 85%;
}

.flow-table__reservation {
	text-align: center;
}

@media screen and (min-width: 1080px) {
	.flow-table__reservation {
        display: grid;
        place-self: flex-end;
		text-align: right;
	}
}

.flow-table__btn {
	padding-block: 17px;
	padding-inline: 25px 15px;
	border-radius: 10px;
	width: calc(100% - 2px);
}

.flow-table__btn:nth-child(n + 2) {
    margin-block-start: 10px;
}

@media screen and (min-width: 1080px) {
	.flow-table__btn {
		width: auto;
        transform: translateX(-1px);
	}
}

.flow-table__btn::before {
	border-radius: 10px;
}

.flow-table__tel {
	font-size: 2rem;
	line-height: 1.75;
	font-weight: bold;
}

.flow-table__time {
	font-size: 1.1rem;
	line-height: 1.36;
}

/* -------------------------------------------------------------- */

.popular-contents-inner {
	display: none;
}

.gf__sitemap {
	display: none;
}
