/* すべてのページに適用される設定 */
html {
    font-size: 16px;
    font-family: sans-serif;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0 0 0 0 ;
    background-color: #541515;
    color: #ffffff;
}
p {
    line-height: 1.7;
}

/* すべての画像をボックスに合わせて伸縮する */
img {
    max-width: 100%;
    vertical-align:top; /* 垂直方向の配置を調整 */
}

/* すべてのページに適用される設定 - メイン */
main {
    margin: 20px auto 90px auto;
    max-width: 800px;
}
main h1{
    margin: 50px 0 20px 0;
    border-bottom: 2px solid #ffffff;
    padding: 0 0 5px 0;
    text-align: center;
    color: #ffffff;
    font-size: 1.1rem; /* 一次的に文字サイズ変更 */
}
main h2{
    margin: 50px 0 20px 0;
    border-bottom: 2px solid #ffffff;
    padding: 0 0 5px 0;
    text-align: center;
    color: #ffffff;
    font-size: 1.1rem;
}
.logo{
    text-align: center;
}
.signature{
    text-align: right;
}

/* 写真の並び */
.photos{
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

/* リンクのカラーのコントロール */
a:link,
a:visited,
a:hover,
a:active {
  color: #ffffff;
}

/* 店舗情報 */

/* ビル写真と店舗情報の並び */
.shopinfo-photo{
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* 表の整形 */
.shop-info {
    border-collapse: collapse;
    margin-bottom: 20px;
}
.shopinfo-photo table{
    width: 100%;
}
.shop-info th, .shop-info td {
    border: 1px solid #DBDBDB;
    padding: 10px 20px;
}
.shop-info th {
    text-align: center;
    vertical-align: top;
}

/* Google Map */
.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%; /* 比率を指定 */
    margin-top: 20px;
  }
   
  /* Google Mapのiframe */
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

/* すべてのページに適用される設定 - フッター */

.copyright {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #000;
    color: #ffffff;
    text-align: center;
}

/* モバイル対応※画面サイズに合わせて */
@media(max-width: 767px){
    main{
        padding: 0 4%;
    }

/* ビル写真と店舗情報の並び */
   .shopinfo-photo{
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
}

   /* menu.html */

}