@charset "UTF-8";

/* すべてのページに適用される設定 */
:root {
	/* --colorMain: #253958; */
	--colorMain: #253958;
	--colorText:#333;
}
html {
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	scroll-behavior: smooth;
}
*,::before,::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	margin: 0 0 0 0;
}
p, li, td {
	line-height: 1.7;
	text-align: justify;
}
a:link {
	color: #f07d34;
	text-decoration: none;
}
a:visited {
	color: #f07d34;
	text-decoration: none;
}
a:hover {
	color: #f07d34;
	text-decoration: underline;
}
a:active {
	color: #f07d34;
	text-decoration: underline;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}

/* すべてのページに適用 - ヘッダー */
header {
	background-color: #fffb;
	background-image: url(../images/stripe.png);
	background-repeat: repeat-x;
	padding: 40px 0 20px;
	backdrop-filter: blur(4px);
}
.logo {
	text-align: center;
}
#hbg,
#hbg+label {
	display: none;
}
header nav ul {
	list-style-type: none;
	padding: 0;
	margin: 30px 0 0 0;
	display: flex;
	justify-content: center;
	gap: 40px;
}
header nav a:link {
	color: var(--colorMain);
}
header nav a:visited {
	color: var(--colorMain);
}
header nav a:hover {
	text-decoration: none;
}

/* すべてのページに適用 - ヒーロー */
.hero {
	width: 100%;
	text-align: center;
	background-position: center;
	background-size: cover;
	color: #fff;
	padding: 137px 0;
}
.hero.index {
	background-image: url(../images/home-hero.jpg);
	padding: 287px 0;
}
.hero.access {
	background-image: url(../images/access-hero.jpg);
}
.hero.menu {
	background-image: url(../images/menu-hero.jpg);
}
.hero.contact {
	background-image: url(../images/contact-hero.jpg);
}
/* すべてのページに適用 - メイン */
main {
	max-width: 1000px;
	margin: 90px auto;
}
main>div {
	margin-top: 60px;
}
main div h2{
	color: #253958;
	font-size: 1.3rem;
	border-bottom: 2px solid #253958;
	margin-top: 0;
}
/* すべてのページに適用 - フッター */
.gotop {
}
footer {
	text-align: center;
}
footer small {
	background-color: #253958;
	color: #fff;
	display: block;
	padding-top: 75px;
	padding-bottom: 75px;
	margin-top: 20px;
}
/* 個別のスタイル */
/* index.html */
.logo-whale {
	text-align: center;
}

.shop-info {
	border-collapse: collapse;
}
.shop-info th,
.shop-info td {
	border: 1px solid #dbdbdb;
	padding: 20px;
}
.shop-info th {
	white-space: nowrap;
	text-align: left;
	vertical-align: top;
}

/* accesss.html */
iframe {
	width: 100%;
	height: 70vh;
}

/* menu.html */
.items {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	list-style-type: none;
	padding: 0;
	gap: 40px 20px;
}
.items li img {
	margin-bottom: 10px;
}
.items li dl dd {
	margin: 0;
	font-weight: bold;
}
.items li dl dd small {
	font-weight: 400;
	font-size: 10px;
}

/* contact.html */
form {
	margin: 0 auto;
	max-width: 640px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
	width: 100%;
	padding: 6px;
	font: inherit;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	background-color: #ff9;
	outline: none;
}
textarea {
	height: 140px;
	resize: vertical;
}
form dl dd {
	margin: 0;
}
form ul {
	display: flex;
	justify-content: center;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
	list-style-type: none;
	padding: 0;
}
form ul li input {
	border: none;
	padding: 20px;
	width: 200px;;
	background: #253958;
	color: #fff;
	font-size: inherit;
	cursor: pointer;
}
input[type="reset"] {
	padding: 10px;
}

/* モバイル対応 */
@media (max-width: 1050px) {
	main {
		padding: 0 4%;
	}
}
@media (max-width: 767px) {
	header {
		position: sticky;
		top: 0;
		z-index: 1;
	}
	header nav ul {
		flex-wrap: wrap;
		gap: 5px 20px;
	}
	.hero.index {
		padding: 28vh 0;
	}
	.items li {
		width: 48%;
	}
}
@media (max-width: 500px) {
	header {
		position: fixed;
		width: 100%;
	}
	body {
		overflow-x: hidden;
	}
	.items li {
		width: 100%;
	}
	#hbg+label {
		display: flex;
		align-items: center;
		width: 2.5em;
		aspect-ratio: 4/3;
		position: absolute;
		inset: 2.25em 1.5em auto auto;
	}
	#hbg+label span,
	#hbg+label span::before,
	#hbg+label span::after {
		display: block;
		background-color: var(--colorMain);
		width: 100%;
		height: 4px;
		transition: .5s;
	}
	#hbg+label span::before,
	#hbg+label span::after {
		content: "";
		position: absolute;
	}
	#hbg+label span::before {
		top: 0;
	}
	#hbg+label span::after {
		bottom: 0;
	}
	#hbg:checked+label span {
		background-color: transparent;
	}
	#hbg:checked+label span::before {
		top: calc(50% - 2px);
		rotate: 315deg;
	}
	#hbg:checked+label span::after {
		bottom: calc(50% - 2px);
		rotate: -315deg;
	}
	header nav ul {
		background-color: #fff;
		flex-direction: column;
		border-top: 1px solid var(--colorMain);
		gap: 0;
		margin: 0;
		width: 100%;
		position: absolute;
		top: 100%;
		left: 100%;
		transition: .5s;
	}
	#hbg:checked~ul {
		left:0;
	}
	header nav ul li {
		border-bottom: 1px solid var(--colorMain);
	}
	header nav ul li a {
		display: block;
		text-align: center;
		font-size: 1.5em;
		padding: 1em 0;
		position: relative;
	}
	header nav ul li a::before {
		content: "";
		display: block;
		width: .5em;
		aspect-ratio: 1/1;
		border-top: .125em solid #f07d34;
		border-right: .125em solid #f07d34;
		position: absolute;
		top: calc(50% - .25em);
		left: 1em;
		rotate: 45deg;
	}
} 