@charset "UTF-8";
/* CSS Document */


body {
  background-color: #F3E3C1;
  margin: 0;
　padding: 0;
  font-family: "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", sans-serif;
  font-size: 16px;
  color: #220505;
}

.wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 16px;
  background-color: #F3E3C1;
  box-sizing: border-box;
}
 /* 16:9 Youtube用 
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  margin-bottom: 24px;
}

.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  left: 0;
  top: 0;
}
*/

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 */
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 埋め込み感アップ */
  border-radius: 12px;
}

.main-title {
  text-align: center;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 16px;
  margin: 0;
  color: #220505;
}

.main-title h1 {
  font-size: 20px;
  font-weight: bold;
  margin: 8px 0 0;
  color: #220505;
  line-height: 1.4;
}


.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-button {
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #220505;
  border: 1px solid #220505;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.step-button:hover {
  background-color: #D8C28A;
}

.step-content {
  display: none;
  padding: 12px;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 8px;
  margin-bottom: 16px;
  color: #220505;
  font-size: 16px;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}

.step-button {
  position: relative;
  display: block;
  background-color: #ffffff;
  color: #220505;
  border: 1px solid #220505;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px 40px 12px 16px; /* 右は矢印分確保 */
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.step-label {
  position: relative;
  display: inline-block;
}

/* 疑似要素で左に空白を作る */
.step-label::before {
  content: "";
  display: inline-block;
  width: 24px; /* 矢印と同じ幅くらい */
  height: 1px;
  margin-right: 4px;
}

.step-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.ingredients {
  margin: 16px 0;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #220505;
  border-radius: 12px;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #220505;
  text-align: center;
}

.ingredient-list {
  list-style-type: disc;
  padding-left: 1.5em;
  color: #220505;
  font-size: 16px;
  line-height: 1.8;
}

.ingredient-list li {
  margin-bottom: 8px;
}

.ingredients-note {
  font-size: 16px;
  line-height: 1.7;
  color: #220505;
  margin-top: 16px;
}

.important-note {
  color: #c0392b;
  font-weight: bold;
}

.green {
  color: #2e7d32; 
  font-weight: bold;
}

.karashi {
  color: #c49000; 
  font-weight: bold;
}

.brown {
  color: #7b5e3c; 
  font-weight: bold;
}


.step-block {
  margin-bottom: 24px;
}

.step-image {
  display: block;
  width: 100%;
  margin: 0 auto 12px;
  border-radius: 8px;
}

.step-text {
  font-size: 16px;
  line-height: 1.6;
  color: #220505;
}

.step-number {
  font-weight: bold;
  margin-right: 4px;
  color: #220505;
}

.note-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.note-title {
  font-size: 18px;
  font-weight: bold;
  color: #220505;
  margin-bottom: 16px;
  border-left: 4px solid #220505;
  padding-left: 8px;
}

.note-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.note-list li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.note-list li span {
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
}



.note-contact {
  font-size: 13px;
  margin-top: 16px;
  color: #5c4b3b;
text-align: center;
  line-height: 1.6;
}

.line-link {
  color: #007744; /* 深緑っぽい安心カラー */
  font-weight: bold;
  text-decoration: underline;
}

[id] {
  scroll-margin-top: 100px; /* ヘッダーの高さに合わせて調整 */
}

.note-text {
  font-size: 14px; 
  color: #666666;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 16px;
}

.copyright {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  body {
    display: flex;
    justify-content: center;
  }
}


/*
@media (min-width: 451px) {
  body {
    background-image: url("images/pc_bg.jpg"); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed; 
  }
}
*/
