/* 基本スタイル（全画面共通） */
body {
 font-family:  'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Noto Sans JP', 'Yu Gothic', sans-serif;

/*  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; */

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fdf6e3;
  font-weight: 400;
  color: #333;
  margin: 0;
  padding: 0;
  font-size: 1.125em;
  line-height: 1.7;
}

/* --------------------------------------- */
/* --------------------------------------- */
/* ------------- travel -------------------- */
/* --------------------------------------- */
/* --------------------------------------- */


.pop-title  {
  font-family: 'Hachi Maru Pop', cursive;
}

p {
  line-height: 1.7; /* 数値を大きくすると行間が広がります */
  margin-bottom: 1.5em; /* 段落の下に余白を追加 */
}

div {
  line-height: 1.7; /* 数値を大きくすると行間が広がります */
  margin-bottom: 1em; /* 段落の下に余白を追加 */
}

html, body {
  -webkit-text-size-adjust: 100%;
}

.update-info {
  text-align: right;
  font-size: 0.9em;
  color: #666;
}

header {
  background-color: #ddae2a;
  padding: 1em 0.2em 0.2em 0.2em;
  text-align: center;
}

header h1 {
  font-size: 1.5em;
  margin: 0;
}

/* 怪獣ロゴを横幅max700pxにする設定　消さないでね */
header h1 img {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

header h1 a,
footer a {
  text-decoration: none;
  color: #333;
}

header h1 a:hover,
footer a:hover {
  text-decoration: underline;
  color: #333;
}

header h1 a:visited,
footer a:visited {
  text-decoration: none;
  color: #333;
}

h2 {
  font-size: 1.2em;
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin: 0.5em 0;
  color: #000;
  letter-spacing: -0.05em;
}

h2::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -0.2em;
  width: 0%;
  height: 10px;
  background: linear-gradient(150deg,
    rgba(26, 92, 52, 0.85) 0%,
    rgba(26, 92, 52, 0.65) 60%,
    rgba(0, 0, 0, 0) 80%);
  border-radius: 2px 0 0 20px;
  transform: rotate(-0.5deg);
  filter: blur(0.3px) contrast(1.05);
  transition: width 0.6s ease-out;
  z-index: -1;
}

h2.animate::before {
  width: 120%;
}



nav {
  background-color: #ffe4b5;
  padding: 0em;
  text-align: center;
  font-size: 0.9em;
}

nav a {
  margin: 0em;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:hover,
nav a:visited {
  text-decoration: underline;
  color: #333;
  font-weight: bold;
}

main a {
  color: #3a7d3b;
  text-decoration: underline;
  transition: all 0.2s ease;
  font-weight: bold;
}

main a:hover {
  text-decoration: underline;
  font-weight: bold;
  background-color: #e6f2d9;
}

main a:visited {
  color: #75351F;
  text-decoration: underline;
  font-weight: bold;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  padding: 0em;
}

.nav-bar p {
  margin: 0;
  flex: 1;
  text-align: center;
}

footer {
  background-color: #ddae2a;
  text-align: center;
  padding: 0em 0em;
  font-size: 0.8em;
  font-weight: bold;
}

footer p {
  padding: 0em 0em;
  margin: 0em;
}

strong {
  position: relative;
  display: inline-block;
  margin: 0 0.1em;
  font-weight: bold;
  z-index: 0;
}

strong::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 0.2em;
  width: 0%;
  height: 50%;
  background: linear-gradient(150deg,
    rgba(255, 200, 0, 0.85) 0%,
    rgba(255, 200, 0, 0.65) 60%,
    rgba(0, 0, 0, 0) 80%);
  border-radius: 2px 0 0 20px;
  transform: rotate(-1deg);
  filter: blur(0.3px) contrast(1.05);
  transition: width 0.6s ease-out;
  z-index: -1;
}

strong.animate::before {
  width: 120%;
}

em {
  font-style: normal;
  font-weight: bold;
}

dfn {
  font-style: normal;
  color: #333;
}

dfn::before {
  content: "“";
}

dfn::after {
  content: "”";
}

q::before {
  content: "「";
}

q::after {
  content: "」";
}

.memo, .study {
  border: 2px dashed #ffcc66;
  background-color: #fff8e1;
  padding: 1em;
  margin: 1.5em 0;
  border-radius: 8px;
  font-size: 0.95em;
}

.memo::before {
  content: "📝 MEMO:";
  font-weight: bold;
  color: #d35400;
  display: block;
  margin-bottom: 0.5em;
}

.study::before {
  content: "📚 STUDY:";
  font-weight: bold;
  color: #2980b9;
  display: block;
  margin-bottom: 0.5em;
}

.resizeimage img {
  width: 100%;
}

/* レスポンシブレイアウト調整 */



@media screen and (max-width: 480px) {
  main {
    padding: 1.4em;
  }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  main {
    padding: 2em;
    max-width: 28em;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  main {
    padding: 2em;
    max-width: 32em;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1081px) and (max-width: 1440px) {
  main {
    padding: 2.5em;
    max-width: 36em;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1441px) {
  main {
    padding: 3em;
    max-width: 42em;
    margin: 0 auto;
  }
}


ul {
  margin-bottom: 2em;
}

body.tabi li {
  display: flex;
  align-items: center; /* 縦方向の中央揃え */
  min-height: 3em;     /* 2行分の高さなど、任意で指定 */
}

/* PC画面サイズ（1081px以上）でアイコンを小さくする */
@media screen and (min-width: 1081px) {
body.tabi li {
    display: block;
    align-items: stretch; 
    min-height: auto; 
  }

body.tabi li::before {
    font-size: 0.6em; /* 小さめに調整 */
  }
}


body.tabi ul {
  list-style: none; /* ・を消す */
  padding-left: 0;  /* インデントも消したい場合はこれも */
}


body.tabi li::before  {
  content: "🎫";
  margin-right: 0.4em;
  font-size: 1.8em; /* 通常サイズ */
  line-height: 1;
  display: inline-block;
}

/* --------------------------------------- */
/* --------------------------------------- */
/* ------------- recipe -------------------- */
/* --------------------------------------- */
/* --------------------------------------- */

img.recipe-step {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 6px;
}

/* PC画面（幅768px以上）のときは最大幅を500pxに変更 */
@media screen and (min-width: 768px) {
  img.recipe-step {
    max-width: 420px;
  }
}

li > p {
  margin: 0;     /* li要素の中のpだけはマージンを0にする */
  padding: 0;
}

li > img {
  display: block;       /* 改行させる（インライン→ブロック） */
  margin-left: 0;       /* 左寄せ（デフォルトでも左寄せだが明示） */
  margin: 0;     /* li要素の中のimgだけはマージンを0にする */
  padding: 0;
}
