@charset "utf-8";
/* すべてのページに適応される設定　*/
html{
    font-size: 16px;
    font-family: sans-serif;
}
*{
    box-sizing: border-box;
}
body{
    margin: 0000;
}

p,l,td{
    line-height: 1.7;
}
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%;
    height: auto;
}

/* すべてのページに適応　-ヘッダー　*/
.header{
    padding-top: 40px;
    background-image: url(../images/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;
}


.nav a:link{
    color: #253958;
}
.nav a:visited{
    color: #253958;
}
.nav a:hover{
    text-decoration: none;
}
.nav a:active{
    text-decoration: none;
}

/* すべてのページに適応-　ヒーロー */
.hero{
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #FFFFFF;
    padding: 137px;
}
.hero.index{
    padding: 287px 0;
    background-image: url(../images/home-hero.jpg);
}
.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{
    margin: 0 auto 0 auto;
    max-width: 1000px;
}

main h2{
    color: #253958;
font-size: 1.3rem;
margin: 60px 0 20px 0;
border-bottom: 2px solid #253958;
padding:0 0 5px 0}

/* すべてのページに適応-　フッター */
.gotop{
    text-align: center;
}
.copyright{
    background-color: #253958;
    color: #FFFFFF;
    text-align: center;
    padding-top: 75px;
    padding-bottom: 75px;
    margin-top: 20px;
    margin-bottom: 0;
}
/* 個別のスタイル */
/* 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;
}

/* access.html */
.map{
 margin-left: 50px;
 color: #253958;
}
.path{
    margin-left: 150;
}

/* menu.html*/
.container{
    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: #FFFFFF;
    font-size: 1rem;
}

/*スマホ用CSS*/
@media(max-width: 767px){
    .nav ul{
        flex-wrap: wrap;
        gap: 20px;
    }
    main{
        padding: 0 4%;
    }
    .hero.index{
        padding: 28vh 0;
    }
    .container{
        grid-template-columns: 1fr 1fr ;
    }
}