@charset "utf-8";
/*すべてのページに適用される設定*/
html{
	font-size: 16px;
	font-family: Arial, Helvetica, "sans-serif";
	}
*{
	box-sizing: border-box;
}
body{
	margin: 0 0 0 0;
}
p,li,td{
	line-height: 1.7;
}
a:link{
	color: #F07D34;
	text-decoration: none;
}
a:visited{
	color: #F07D34;
	text-decoration: none;
}
a:hover{
	color: #FF0000;
	text-decoration: underline;
}
a:active{
	color: #F07D34;
	text-decoration: underline;
}
/*すべてのページに適用-ヘッダー*/
.header{
	padding-top: 40px;
	background-image: url("../imageｓ/stripe.png");
	background-repeat: repeat-x;
}
.logo{
	text-align: center;
}
.nav ul{
	margin: 30px 0 0 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	gap:40px;
}

/*すべてのページに適用-ヒーロー*/
.hero{
	padding: 100px 0;
	color: #000000;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
}
.hero.index{
	background-image: url("../imageｓ/home-hero.jpg");
	padding: 287px 0;
}
.hero.access{
	background-image: url("../imageｓ/access-hero.jpg");
}
.hero.menu{
	background-image: url("../imageｓ/menu-hero.jpg");
}
.hero.contact{
	background-image: url("../imageｓ/contact-hero.jpg");
	color: white;
}
/*すべてのページに適用-メイン*/
main{
	margin:90px auto 90px auto;
	max-width: 1000px;
}
main h2{
	color: #253958;
	font-size: 1.3rem;
	padding:0 0 5px 0;
	color: #253958;
	font-size: 1.7rem;
	border-bottom: solid #25395;
	padding: 0 0 5px 0;
}
/*すべてのページに適用-フッター*/
.gotop{
	text-align: center;
}
.copyright{
	margin-top: 20px;
	margin-bottom: 0px;	
	padding-top: 75px;
	padding-bottom: 75px;
	background-color: #253958;
	color: white;
	text-align: center;
}
/*個別のスタイル*/
/*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{
	width: 112px;
	text-align: left;
	vertical-align: top;
}

/*menu.html*/
.item{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

/*contact.html*/
form{
	margin: 0 auto;
	max-width: 640px;
}
input[type="text"],textarea{
	padding: 6px;
	width: 100%;
	font-size: 1rem;
}
textarea{
	height: 140px;
}

.submit{
	text-align: center;
}
input[type="submit"]{
	border: none;
	padding: 20px;
	width: 200px;
	background-color: #253958;
	color: white;
	font-size: 1rem;
}
/*モバイル対応*/

@media screen and (max-width:767px){
	.nav ul{
		flex-wrap: wrap;
		gap:20px;
	}
	main{
		padding: 0.4%;
	}
	/*index.html*/

.hero.index{
	padding: 28vh 0;
}
/*menu.html*/
.item{
	grid-template-columns: 1fr 1fr;
}
}

