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

/* 共通 */
.sub-mt{

}
.sub-mt-inner{
 margin-bottom: 0rem;
}

.sub-mt-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 100px;
  /* border-bottom: 1px solid #ccc; /* 罫線の色と太さ */
  padding-bottom: 100px; /* 中身と罫線の間隔 */
}

@media screen and (max-width: 768px) {
  .sub-mt-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center; /* 中央揃え */
       margin-bottom: 30px;
  padding-bottom: 30px; /* 中身と罫線の間隔 */
  }
}


.sub-mt-wrapper.kitchen {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 100px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 100px;

  width: 100vw;              /* ビューポート幅に広げる */
  margin-left: calc(50% - 50vw); /* 左端に揃える */
  background-color: #fff176;     /* 黄色系（レモン色） */
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}






h2 {
  width: 100%;
}
/* 共通 */

.subheader-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px; /* 高さを設定 */
  width: 100%; /* 幅を100%に設定 */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-image 0.5s ease-in-out; /* 背景画像の切り替えをスムーズに */
}

.subheader-text {
  font-family: 'Roboto', sans-serif; /* ゴシック体フォント */
  color: #FFFFFF; /* 薄いグレーの文字色 */
  font-size: 2rem; /* フォントサイズを少し小さく設定 */
  font-weight: normal; /* 太字なし */
  text-align: center; /* テキストを中央揃え */
  z-index: 1; /* テキストを背景の上に表示 */
  line-height: 1.2; /* 行間の設定 */
  padding: 0; /* 背景囲いをなくすために余白をゼロ */
  background-color: transparent; /* 背景を透明に設定 */
  border: none; /* 背景の囲いなし */
  max-width: 90%; /* テキストの最大幅 */
  margin: 0 auto; /* 中央に配置 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* 薄い影を追加 */
}



