/* ===== 全体のスタイル ===== */
* {
  margin: 0;
  padding: 0;
}

/* ===== ヘッダーのスタイル ===== */
/* ヘッダー */
header {
  /* 背景の色 */
  background-color: #4262D3;
  
  /* 背景の画像を枠いっぱいに広げる */
  background-size: cover;
  /* 内がわの余白 */
  padding: 50px;
}


/* h1見出し */
.header-top{
  /* 文字の大きさ */
  font-size: 100px;
  /* 文字の種類 */
  font-family:serif;
  /* 文字の色 */
  color: ivory;
  /* 文字の整列 */
  text-align: center;
  transform:skew(-20deg);
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.header-middle{font-size: 45px;
  /* 文字の種類 */
  font-family:serif;
  /* 文字の色 */
  color: ivory;
  /* 文字の整列 */
  text-align: center;
  transform:skew(-20deg);
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
  
  

.header-bottom{
  font-size: 70px;
  /* 文字の種類 */
  font-family:serif;
  /* 文字の色 */
  color: ivory;
  /* 文字の整列 */
  text-align: center;
  transform:skew(-20deg);
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
  

/* ===== お店紹介のスタイル ===== */
/* セクション */
section {
  /* 背景の色 */
 font-family: serif;
  background-color: #f4f6fb;
  /* 内がわの余白 */
  padding: 30px;
  /* 文字の整列 */
  text-align: left;
  font-size:35px
}


/* h2見出し */
h2 {
  /* 文字の色 */
  color: black;
  /* 文字の大きさ */
  font-size: 45px;
  /* 下がわの余白 */
  margin-bottom: 20px;
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  
}
h2::first-letter{font-size:60px;
}
h3 {
  /* 文字の色 */
  color: black;
  /* 文字の大きさ */
  font-size: 45px;
  /* 下がわの余白 */
  margin-bottom: 20px;
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  
}
h3::first-letter{font-size:60px;
}


  
/* レイアウト用の箱 */
div {
  /* レイアウトのルール */
  display: flex;
}

/* 画像 */
img {
  /* 横幅 */
  /* 角丸 */
  border-radius: 10px;
  width: 250px;
  height: auto;
  margin-right:20px;
}

/* 段落 */
p {
  /* 文字の行間 */
  line-height: 180%;
  /* 左がわの余白 */
  text-indent: 1em;
  
}
/* リンク */
a {
  /* 文字の色 */
  color: #191970;
  background-color:#FFE38B;
  /* 内がわの余白 */
  padding: 10px;
  /* 文字の装飾 */
  text-decoration: none;
  /* 角丸 */
  border-radius: 20px;
  /* 並べ方 */
  display: block;
  /* 文字の整列 */
  text-align: center;
  font-size: 35px;
  font-family: serif
  
}
.small {font-size: 0.6em;
}

section.store-info {
  background-color: #f4f6fb;
  padding: 30px;
  font-family: serif;
  font-size: 20px; /* 文字サイズ調整 */
  line-height: 1.6;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

section.store-info h2 {
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
}

section.store-info ul {
  list-style: none; /* デフォルトの箇条書き削除 */
  padding-left: 0;
}

section.store-info li {
  margin-bottom: 10px;
}

section.store-info a {
  color: #6495ed;
  text-decoration: none;
  background-color:#FFE38B;
}

section.store-info a:hover {
  text-decoration: underline;
}

a:hover {
  display: block;
  color: #191970;
  background-color: #FFE38B;
  transform: scale(1.2);
  font-family: serif
  
}
a {
  
  display: inline-block;
  transition: 0.3s;
}




/* ===== フッターのスタイル ===== */
/* フッター */
footer {
  /* 文字の色 */
  color: white;
  /* 背景の色 */
  background-color: #4262D3;
  /* 文字の整列 */
  text-align: center;
  /* 内がわの余白 */
  padding: 10px;
  font-family: serif
}

