@charset "UTF-8";

.ttl {
  text-align: center;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: .03em;
  margin-bottom: 2rem;
line-height: 1.5;
}

/* --------------------------------------------------
block1
-------------------------------------------------- */

/* block1 共通 */
.block1 {
  text-align: center;
  padding: 3rem 0rem 1rem;
}



/* 内側3カラム */
.block1-inner {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* 左右画像 */
.block1-img {
  flex: 1 1 30%;
}
.block1-img img {
  width: 100%;
  height: auto;
  /* border-radius: 4px; */
  display: block;
  object-fit: cover;
}

/* 中央リスト */
.block1-list {
  flex: 1 1 30%;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.block1-list li {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
  background: #fff;
  border-radius: 4px;
  padding: 0.8em 1em;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.block1-list li img {
  width: 20px;
  height: 20px;
  margin-right: 0.6em;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .block1-inner {
    flex-direction: column;
  }
  .block1-list {
    width: 100%;
  }
}
/* --------------------------------------------------
block2
-------------------------------------------------- */
/* block2 */

.block2-inner{
  width: 85%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  /* 親側で幅/背景が設定済みとのことなのでここでは触らない */
}

/* 左画像 */
.block2-img{ flex: 0 1 48%; }
.block2-img img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 右テキスト */
.block2-text{ flex: 0 1 48%; }
.block2-text p{
  color:#333;
  line-height: 1.5;
  font-size: clamp(14px, 1.5vw, 20px);
}
.block2-text p + p{ margin-top: 1.1em; }

/* スマホ：縦並びにして中央寄せ */
@media (max-width: 767px){
  .block2-inner{ flex-direction: column; gap: 1.5rem; }
  .block2-text{ width: 100%; }
}



/* --------------------------------------------------
block3
-------------------------------------------------- */
.block3 .ttl{
      margin-bottom: 0;
}
.block3-inner{
  width: 95%;
  margin: 0 auto;
}

.block3-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* 画像をタイルで綺麗に見せる */
.block3-grid .item{
  overflow: hidden;
}
.block3-grid .item img{
  width: 100%;
  object-fit: cover;
  display: block;
}
.block3-lead {
  text-align: center;
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: 2rem;
}
.block3-lead .point {
  color: #0b4a8f;   /* 強調カラー */
  font-weight: 700;
}

.block3-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0em 2.5em;
    margin-top: 2rem;
    font-weight: 600;
    font-size: clamp(16px, 1.6vw, 20px);
    color: #000;
}

.block3-list li {
  position: relative;
  padding-left: 1.4em;
}
.block3-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #0b4a8f;   /* 青い丸 */
  font-size: 0.9em;
  top: 0;
}

/* スマホ時 */
@media (max-width: 767px){
  .block3-list { justify-content: flex-start; }
/* スマホ：2列 */
  .block3-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}


/* --------------------------------------------------
  block4
-------------------------------------------------- */
.block4 { 
  padding: 3rem 1rem 0; 
margin-bottom: 5rem;
}
.block4 .ttl {
    margin-bottom: 0.7rem;
}
.block4-lead{
  text-align: center;
  font-size: clamp(14px,1.6vw,16px);
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* フロー（STEP1〜4） */
.flow{
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.flow li::marker {
  content: none;
}
.flow-item{
  position: relative;
  padding-top: 1.6rem;           /* バッジのスペース */
}


/* 中央バッジ（正方形画像） */
.step-badge{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  display: block;
}

/* 本文ボックス（薄い水色） */
.flow-body{
  width: 84.5%;
  margin: 0 auto;
  background: #f3f8fc;
  padding: 2rem 1rem;
  text-align: center;
  border-top: #0b4a8f solid 5px;
}
.flow-body h3{
  font-weight: 700;
  font-size: clamp(18px,2vw,22px);
  margin: 0.3em 0 .6em;
}
.flow-body p{
  margin: 0;
line-height: 1.5;
    font-size: clamp(16px, 1.7vw, 19px);
    text-align: left;
    display: inline-block;
}

/* 末尾：人物写真＋文章 */
.block4-bottom{
margin-top: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-direction: column;
}
.block4-note{
  flex: 1 1 60%;
  font-size: clamp(14px,1.6vw,16px);
  line-height: 1.9;
}
.block4-person{
  flex: 0 0 260px;   /* 画像の見え方は調整可 */
}
.block4-person img{
  width: 100%;
  height: auto;
  display: block;
}

/* スマホ最適化 */
@media (max-width: 767px){
  .step-badge{ width: 44px; height: 44px; }
  .flow-item{ padding-top: 1.2rem; }
  .flow-body{ width: 92%; padding: 1.6rem 1rem; }

  .block4-bottom{
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .block4-person{ width: 60%; max-width: 320px; }
}





/* --------------------------------------------------
  supplies厨房用品
-------------------------------------------------- */

.ttl-bar {
  background-color: #00408a; 
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px); 
  letter-spacing: .05em;
  padding: 0.6em 1em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

#supplies .block2.whiteblock{
  padding: 3rem 3rem 0;
      margin-top: 0rem;
}
#supplies .block2.whiteblock:last-child{
  padding-bottom: 3rem;
}
#supplies .comm-blc{
  padding: 2rem 4%;
}
/* 厨房用品グリッド */
.supplies-grid {
display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 95%;
    margin: 0 auto;
}
/* supplies figure */
.supplies-grid figure {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.supplies-grid img {
  display: block;
  width: 100%;
  height: auto;
}

/* キャプション（透過黒背景＋白文字） */
.supplies-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5em;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
      line-height: 1;
}

/* スマホ用：2列に */
@media screen and (max-width: 1180px) {
  .supplies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
  }
}
@media screen and (max-width: 780px) {
#supplies .block2.whiteblock {
    padding: 2rem 1rem;
}


  .supplies-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
}




/* --------------------------------------------------
 followupアフターフォロー
-------------------------------------------------- */
#followup .block2 .ttl{
  margin-bottom: 1rem;
}
.block4-lead.block4_2-lead{
text-align: left;
    width: 95%;
    max-width: 850px;
}

/* 青い見出し用 */
.txt-blue {
  color: #00408a;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 0.8em;
  line-height: 1;
}
.block2-inner.hukusu{
  margin: 2rem auto;
      align-items: flex-start;
}

.block2-inner.hukusu .block2-img {
    flex: 0 1 40%;
}

.block2-inner.hukusu .block2-text{
  padding-top: 1rem;
      flex: 0 1 55%;
}

/* --------------------------------------------------
 qaよくある質問　faq-block
-------------------------------------------------- */
/* FAQ ブロック */
.faq-block {
  padding: 3rem 2rem;
  margin-bottom: 5rem;
}
.faq-block h2 {
  font-size: clamp(18px, 1.6vw, 22px);
}
.faq-list {
  display: grid;
  gap: 1.5rem;
max-width: 960px;
    margin: 0 auto;
}

/* 各アイテム */
.faq-item {
  background: #f4f8fb;
  overflow: hidden;
}

/* 質問ボタン */
.faq-q {
  width: 100%;
  padding: 1.2rem 1.6rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: clamp(16px, 1.7vw, 20px);
  color: #0b4a8f;
  cursor: pointer;
  text-align: left;
}

/* ＋/−アイコン */
.faq-toggle {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s;
}

/* 回答部：アニメーション用 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-hr {
  border-top: 2px solid #e5e5e5;
  margin: 0 0 1rem 0;
}
.faq-answer p {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
  color: #333;
}

/* open時 */
.faq-item.open .faq-answer {
  padding: 0rem 1.6rem 1.6rem;
}
@media (max-width: 767px){
  .faq-block {
    padding: 2rem 1rem;
}
.faq-q {
    width: 100%;
    padding: 1.2rem 1.2rem;
  }
}
