* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  background-color:ivory;
  height: 100%;
}

/* ===== ヘッダーのスタイル ===== */
/* ヘッダー */
header {
  color: royalblue;
  background-color: rgba(31,176,186,0.3);
  padding: 10px;
}

/* h1見出し */
h1 {
  /* 文字の種類 */
    font-family:DotGothic16;
  /* 文字の色 */
  color:royalblue;
  /* 文字の整列 */
  text-align: left;
  border-radius: 40px;
  font-size: 20px;
}

section.nannano{
  font-size: 15px;
  /* 文字の種類 */
  font-family:DotGothic16;
  /* 文字の色 */
  color : white;
  /* 文字の整列 */
  text-align: center;
  background-color:rgba(0,0,0,0.5);
  border-radius: 30px;
  border-style: double;
  border-color: white;
  border-width:10px; 
  padding:10px;
  margin: 10px;
   line-height: 180%;
}

h2{
  font-family: DotGothic16;
  color: navy;
  font-size:30px;
  text-align: center;
  padding:10px;
}

h3{
  font-family: DotGothic16;
  background-color: rgba(25,142,150,0.5);
  text-shadow:1px 2px 3px #808080;
  color: navy;
  font-size: 20px;
  text-align: center;
}

img {
  box-shadow: 1px 2px 3px #808080;
  border-radius: 10px;
  text-align: center;
}

h4{
  background-color: rgba(25,142,150,0.5);
  text-shadow:1px 2px 3px #808080;
  color: navy;
  font-size: 20px;
  text-align: center;
  font-family: DotGothic16;
}

div {
  display: flex;
   margin: 10px;
   line-height: 180%;
}

h5{
  background-color: rgba(25,142,150,1);
  text-shadow:1px 2px 3px #808080;
  color: white;
  font-size: 22px;
  text-align: center;
  display: block;
  padding: 10px;
  font-family: DotGothic16;
}

section.nandeya{
  font-family:DotGothic16;
  background-color:rgba(0,0,0,0.5);
  border-radius: 30px;
  border-style: double;
  border-color: white;
  border-width:10px; 
  padding: 20px;
  margin: 20px;
     line-height: 180%;

}

p{
  color:white;
   font-family:DotGothic16;
  padding: 20px;
  margin: 20px;
}

a {
  /* 文字の色 */
  color: white;
  /* 背景の色 */
  /* 内がわの余白 */
  padding: 10px;
  /* 文字の装飾 */
  text-decoration: none;
  /* 並べ方 */
  display: block;
  /* 文字の整列 */
  
}

/* リンクにさわった時 */
a:hover{
text-decoration: underline;
}
/* ===== フッターのスタイル ===== */
/* フッター */
footer {
  color: royalblue;
  text-align: center;
  padding-top: 100px;
}

/* スマホ用のフォントサイズと画像サイズの調整 */
@media (max-width: 600px) {
  h1 {
    font-size: 18px;
  }

  h2, h3, h4, h5 {
    font-size: 14px;
  }

  section.nannano,
  section.nandeya {
    font-size: 12px;
    padding: 5px; /* セクション全体のパディングを小さく調整 */
    margin: 5px; /* セクション全体のマージンも調整 */
  }

  div {
    flex-direction: column;
    align-items: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* パラグラフの余白を調整 */
  p {
    margin: 5px 0; /* 上下のマージンを狭くし、横幅を最大限広げる */
    padding: 0; /* 余計なパディングを削除 */
  }
}








