/* ===== Webサイト全体のスタイル ===== */
/* html */
html {
  height: 100%;
}

/* body */
body {
  font-family: 'Noto Sans JP', sans-serif;
  height: 100%;
  margin: 0;
}

/* h1見出し */
h1 {
  color: #ffffff;/* フォントの色 */
  font-size: 90px;/* フォントの大きさ */
  font-family: lobster;/* フォントの種類 */
  border-left-style: dashed;/* 線の種類 */
  border-color: #dddddd;/* 線の色 */
  border-width: 3px;/* 線の太さ */
  text-align: center;/* 文字・画像を中央にそろえる */
  margin: 30px;/* 外側の余白 */
  letter-spacing: -0.1em;
  line-height: -10em;
}

/* ===== ヘッダーのスタイル ===== */
/* ヘッダーの箱 */
header {
  background-image: url(img/deer.jpg);/* 背景画像 */
  height: 450px;/* 高さ */
  padding-top: 250px;/* 上がわの余白 */
  background-size: cover;
  position: relative;     
  background-position: center;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

header::before{ 
    background: inherit;
    content: '';
    position: absolute;
    filter: brightness(0.5);
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
  }

/* ===== お店紹介のスタイル ===== */
/* セクション */
.shop {
  background-color: #ffffff;/* 背景の色 */
  color: black;
  padding: 50px;
}

/* h2見出し */
.title {
  font-size: 60px;
  border-left-style: dashed;
  border-left-width: 3px;
  padding-left: 15px;
  margin-bottom: 10px;
  color: black;
}

/* 段落 */
.shop p {
  font-size: 30px;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 30px;
  height: 350px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 画像 */
.shop img {
  float: right;/* 画像や箱の回り込み */
}


/* ===== パン紹介のスタイル ===== */
/* セクション */
.photo {
  padding: 10px;
  background-color: white;
}

/* h2見出し */
.photo h2 {
  color: #black;
  border-color: #f0f0f0;
}

/* h3見出し */
.photo h3 {
  color: black;
  font-size: 60px;
}

/* 段落 */
.photo p {
  color: black;
  clear: left;/* 画像や箱の回り込みをやめる */
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 30px;
}

.photo div {
  background-color: #f0f0f0;
  width: 1200px;/* 横幅を指定する */
  padding: 10px;
  margin: 30px;
  border-radius: 30px;
}
