
/*サンセリフ- Noto Sans JP  weight:100-900
  セリフ- Noto Serif JP    weight:200-900
  丸ゴ- Zen Maru Gothic    weight:300 400 500 700 900


  赤- #D53A3A
  緑- #459A4B
  ベージュ- #FAF4E1
  ベージュ- #F9C74F
  ベージュ- #F9CC5F*/

html, body {
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFF;
  color: #333;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1rem;
    line-height: 1.6;
  }
}


h1 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 1.8rem;
  color: #D53A3A;
  font-weight: 850;/*200-900*/
  font-style: normal;
}

h2 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #D53A3A;
  font-weight: bold;
  font-style: normal;
}

h3 {
  font-family: "Zen Maru Gothic",sans-serif;
  text-align: center;
  color: #D53A3A;
  font-weight: 700;
  font-style: normal;
}

p{
  font-family: "Noto Sans JP", sans-serif;
}

p,
.voice-box,
.recipe-box,
.faq-box,
.voice-user-label {
  font-size: 1.05rem;
}


@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  p {
    font-size: 0.95rem;
  }
}

/* =================== ヘッダー =================== */
  .mobile-header {
    display: none;
  }

@media screen and (max-width: 767px) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;   /* 左寄せ */
    gap: 0.5em;                    /* ロゴとテキストの間隔 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #D53A3A;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0 1em;
  }

  .logo-wrap {
    flex: 0 0 auto; /* サイズ固定 */
  }
    
  .logo-wrap img {
    height: auto;
    width: 35px;
    flex-shrink: 0;  /* ロゴが縮まないように */
    padding: 5px 0 0 2px;
  }

  .text-wrap {
    flex: 1; /* 空きスペースを全部使う */
    text-align: center; /* ← これでテキストが中央に見える！ */
  }

  .text-wrap p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #FFF;
    white-space: nowrap; /* 折り返し防止（必要に応じて） */
  }
    
  .dummy-wrap {
    flex: 0 0 auto;
    width: 40px;     /* ロゴ画像の最大幅と合わせる */
    height: 35px;    /* 高さも合わせるとより完璧 */
    visibility: hidden; /* 完全に見えなくする（display: none はNG！） */
  }
}


/* =================== 追従ボタン =================== */
.cta-fixed {
  position: fixed;
  z-index: 999;
  font-weight: bold;
  text-align: center;
  color: white;
  background-color: #D53A3A;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
}
  /* レスポンシブ調整 */
      @media (max-width: 768px) { /* モバイル */
       .cta-fixed {
         display: none;
       }
      } 

      @media (min-width: 769px) { /* タブレット・PC */
       .cta-fixed {
         box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
         top: 90%;
         right: 1em; /* 右端からの距離 */
         left: auto; /* 左方向の指定を解除 */
         transform: translateY(-50%);
         width: 100px;
         height: 100px;
         border-radius: 50%; /* 円形にする */
         display: flex;
         justify-content: center;
         align-items: center;
         font-size: 0.95rem;
         line-height: 1.4;
         padding: 1em;
        }
       .cta-fixed span.desktop-text { 
         display: inline;
        }
       .cta-fixed span.mobile-text { 
         display: none;
        }
       }



/* =================== メインビジュアル =================== */
.main-visual {
  width: 100%;
  height: 600px; /* PC時：トリミング前提の高さ */
  overflow: hidden;
  position: relative;
  line-height: 0;
}

.main-visual picture,
.main-visual-img {
  width: 100%;
  height: 100%;
}

.main-visual-img {
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ▼ 中間ゾーン（1099px以下） */
@media screen and (max-width: 1099px) {
  .main-visual {
    height: auto;
  }

  .main-visual-img {
    height: auto;
    object-fit: contain;
  }
}

/* ▼ スマホ（767px以下） */
@media screen and (max-width: 767px) {
  .main-visual-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 50px;/* ヘッダーの高さに合わせる */
  }
}

/* =================== セクション共通設定 =================== */
.sectio-main {
  padding: 2em 1em 7em 1em;
  max-width: 960px;
  margin: auto;
}

/* ライン_アニメーション */
.section-line {
  width: 0;
  height: 4px;
  background-color: #D53A3A;
  margin: 0.5em auto;
  border-radius: 2px;
  transition: width 0.6s ease-out 0.3s, opacity 0.5s ease-out;
  opacity: 0;
}
.section-line.visible,
.section-main:hover .section-line {
  width: 120px;
  opacity: 1;
}

/* 背景_ベージュ */
.bg-beige {
  background-color: #FAF4E1;
  padding-bottom: 10px;
}

.wave-img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -80px;
}


/* === セクション：甘味とコクの糖質ゼロとは？ === */
.top-exp-section {
  padding: 2em 0.5em;
  width: 100%;
}

.top-exp-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  margin: 2em auto 0;
  max-width: 950px;
  text-align: left;
}
.top-exp-img {
  max-width: 400px;
  width: 90%;
  height: auto;
  border-radius: 8px;
}
.top-exp-flex p {
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
  width:  85%;
}

@media (min-width: 769px) {
  .top-exp-flex {
    flex-direction: row;
    justify-content: center;
  }
  .top-exp-flex p {
    flex: 1;
  }
  .top-exp-img {
    margin-right: 1.5em;
  }
}

/* === こんな方におすすめ！リスト ==== */
.list13 {
  position: relative;
  margin: 2em 0em 1em 0em;
  background: #FFF;
  box-shadow: 0 2px 3px rgba(0,0,0,.22);
  text-align: center; /* ← ここ追加：中身を中央寄せ */
  max-width: 900px; /* ← お好みで */
  padding: 2.5em 1em 1em 1em;
}
   .list13:after {
       position: absolute;
       content: "";
       top: 25px;
       width: 30%;
       height: 40px;
       opacity: 0.6;
       margin: -35px auto 10px 35%;
       background: #D53A3A;
       transform: rotate(-2deg);
       left: 10px;
       right: 10px;
    }
   .list13 ul,.list13 ol  {
       position: relative;
       display: inline-block; /* ← ここ追加：ul全体を中央寄せの対象に */
       margin: 0;
       padding: 0 0.5em 0 0.5em;
       color: #000;
       border: none;
       list-style-type: none;
       text-align: left; /* ← テキストは左揃えを維持 */
    }
   .list13 ol {
       counter-reset: number;
    }
   .list13 ul li,.list13 ol li {
       line-height: 1.5;
       padding: 0.5em 0 1em 1.6em;
       border-bottom: dashed 1px #ee8992;
    }
.list13 ul li {
  position: relative;
  line-height: 3; /* 少し行間を広げて読みやすく */
  padding: 1.5em 4.5em 1.5em 1.6em; /* ← 右側の余白を増やして画像スペース確保 */
  border-bottom: dashed 1px #ee8992;
  min-height: 50px; /* ← 高さにゆとりを出す */
}

.list13 ul li:before {
  position: absolute;
  content: "✔";
  left: 0.3em;
  color: #D53A3A;
}
   .list13 ol li:before {
      display: inline-block;
      position: absolute;
      font-family: "Quicksand", sans-serif;
      content: counter(number);
      counter-increment: number;
      left: 0.5em;
      width: 22px;
      height: 22px;
      border-radius: 20%;
      background: #ee8992;
      color: white;
      font-size: 12px;
      font-weight: bold;
      text-align: center;
      vertical-align: middle;
      line-height: 22px;
   }
   .list13 ul li:last-of-type,.list13 ol li:last-of-type{
      border-bottom: none;
   }

/* PC表示：右側にアイコン */
.icon-right {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 85px;
  height: auto;
}

/* スマホ表示：下に表示 */
@media (max-width: 480px) {
  .list13 ul li {
    line-height: 1.5; /* 少し行間を広げて読みやすく */
    padding: 0.6em 1em 2em 1.6em; /* 下に余白を追加しておく */
    min-height: 40px; /* ← 高さにゆとりを出す */
  }

  .icon-right {
    position: static; /* ← absolute解除 */
    display: block;
    margin: 0.7em auto 0 auto; /* 中央寄せ＋少し上に余白 */
    transform: none;
    width: 100px; /* 必要に応じてサイズ変更 */
  }
}


/* === セクション：５つの特徴 === */

/* 全体ブロック */
.point-block {
  margin: 3em auto;
  padding: 1.5em;
  border: 1px solid #D53A3A;
  background: #fff;
  max-width: 960px;
}

/* タイトル */
 h3 {
  text-align: center;
  margin: 0 auto;
  font-family: "Zen Maru Gothic", serif;
  color: #D53A3A;
}

/* 小見出し */
.point-heading {
  font-size: 1.2rem;
  color: #D53A3A;
  margin-bottom: 1em;
}

/* 横並びブロック */
.point-content {
  display: flex;
  align-items: center;
  gap: 2em;
}

/* 画像 */
.point-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  flex: 0 0 30%;
  margin-top: 20px;
}

/* テキスト */
.point-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  flex: 1;
}


@media screen and (min-width: 769px) {
  .cp_box1 input {
    display: none;
  }

  .cp_box1 label {
    display: none;
  }
    
  .cp_box1 .cp_container {
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }
}


/* ▼ スマホ向けに縦並び・中央画像・左揃え文に切替 */
@media screen and (max-width: 768px) {
  .point-content {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .point-image img {
    margin: 20px 0 -25px 0;
  }

  .point-text {
    text-align: left;
    width: 90%;
  }
  
    
.cp_box1 {
  position: relative;
}
.cp_box1 input {
  display: none;
}
/*開くためのボタンとテキストを隠すグラデーションの設定*/
.cp_box1 label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: -10px;
  width: 100%;
  height: 100px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
/* 開いた時にグラデーションを消す */
.cp_box1 input:checked + label {
  background: inherit;
}
.cp_box1 input:checked + label {
  /* display: none ; 閉じるボタンを消す場合コメントアウトを外す */
}
.cp_box1 .cp_container {
  overflow: hidden;
  height: 150px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
/*続きをよむボタン*/
.cp_box1 label:after,
.cp_box1 label::before {
  content: '';
  position: absolute;
  line-height: 2.5rem;
}
.cp_box1 label:after {
  z-index: 2;
  bottom: 20px;
  width: 13em;
  content: '続きをよむ';
  color: #ffffff;
  background: #D53A3A;
  border-radius: 20px;
}
.cp_box1 label::before {
  position: absolute;
  bottom: 38px;
  left: calc(50% - 3.5em);
  z-index: 3;
  width: 10px;
  height: 5px;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0)
}
/*閉じるボタン*/
.cp_box1 input:checked + label:after {
  content: '閉じる';
}
.cp_box1 input:checked + label:before {
  left: calc(50% - 2.5em);
  transform: scale(1, -1);
}
.cp_box1 input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}
}



/* === セクション：栄養士おすすめ === */
.section-note h3 {
    margin-bottom: -30px;
}

.section-note {
  padding: 2em 1em;
  text-align: center;
}
.section-note .section-title,
.section-note .section-title span {
  font-family: "Zen Maru Gothic", serif;
  color: #D53A3A;
}
.section-note .section-title {
  font-size: 1.8rem;
  margin-bottom: 1em;
}
.section-note .section-title span {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0.3em;
}

.note-wrapper {
  position: relative; /* ← 重ねる基準点 */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 700px;
  margin: auto;
}
.note-box {
  background: #fff;
  border: 6px solid #f89b1c;
  border-radius: 24px;
  padding: 2em 1.5em 1.5em;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: relative;
  flex: 1 1 600px;
  margin: 2em auto;
}
.clip-icon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 24px;
  background: #ccc;
  border-radius: 4px;
  box-shadow: inset 0 -4px 0 #888;
}
.note-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.note-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  text-align: left;
  padding: 0.8em 5em;
  border-bottom: 1px dashed #D53A3A;
}
.note-list li:last-child {
  border-bottom: none;
}

.overlap-img {
  position: absolute;
  bottom: -10px; /* はみ出し調整（必要に応じて変更） */
  right: -10px;  /* PC時の右寄せ調整 */
  width: 200px;
  height: auto;
  z-index: 10;
}

/* 初期：PC表示 */
.text-sp {
  display: none;
}
.text-pc {
  display: inline;
}


@media (max-width: 768px) {
  .note-wrapper {
    display: block;
    align-items: initial;
    justify-content: initial;
  }

  .note-list li {
    padding: 0.8em 0;
  }
    
  .overlap-img {
    margin-top: 1em;
    width: 120px;
  }
    
  .text-sp {
    display: inline;
  }
  .text-pc {
    display: none;
  }
    
}

/* === 栄養士吹き出し === */
.dietitian-voice-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem auto 0;
  max-width: 720px;
  text-align: left;
}

.voice-item {
  display: flex;
  justify-content: center; /* 中央に配置 */
  align-items: flex-start;
  gap: 1rem;
  max-width: 700px;         /* 全体の最大幅を揃える */
  width: 100%;
  margin: 0 auto;
}


.voice-icon img {
  width: 100px;
  height: auto;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 吹き出し */
.voice-balloon {
  position: relative;
  background: #fff;
  border: 2px solid #FFF;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  width: 100%;
  max-width: 500px; /* 全部この幅で統一される */
  box-sizing: border-box;
}


/* 中身（白色）で内側を抜く処理 */
.voice-balloon::after {
  content: "";
  position: absolute;
  top: 1.2em;
  left: -15px; /* わずかに内側へ */
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 15px solid #fff; /* 吹き出しの背景色と一致 */
}



/* 強調テキスト */
.voice-balloon span {
  color: #e5433f;
  font-weight: bold;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .voice-icon img {
    width: 50px;
    height: auto;
  }

  .voice-balloon {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  .voice-balloon::before {
    top: 1em;
    left: -14px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 14px solid #e5433f;
  }

  .voice-balloon::after {
    top: 1em;
    left: -13px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 13px solid #fff;
  }
}



/* === セクション：利用者の声・レシピ === */
.voice {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.voice-box {
  width: calc((80% - 2em) / 3);
  min-height: 460px;
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1.5em;
  margin-top: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.voice-box img {
  width: 150px;
  height: auto;
  margin: 1em auto 0.3em;
}
          
.voice-box p{
    max-width: 90%;
    text-align: left;
    margin: auto;
}


/* 画像とラベルをまとめる */
.voice-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .voice-box {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: auto;
  }
}


/* === 商品情報 === */
.product-info-section {
  padding: 2em 1em;
}

.product-info-flex {
  display: flex;
  flex-wrap: wrap;
/*  gap: 0.2em;*/
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* 商品画像 */
.product-image {
  flex: 0 0 350px;
  max-width: 600px;
  text-align: left; /* ← デフォルトでもいいですが明示しておくと確実 */
  margin: 10px 0 0 0;
}

.product-image img {
  width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 商品スペック表 */
.product-spec {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.product-spec table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.product-spec th,
.product-spec td {
  border: 1px solid #e0e0e0;
  padding: 1em;
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
}

.product-spec th {
  background-color: #f5f5f5;
  width: 30%;
  font-weight: 600;
  color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .product-info-flex {
    flex-direction: column;
    gap: 1.5em;
  }

  .product-image,
  .product-spec {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .product-spec th,
  .product-spec td {
    font-size: 0.9rem;
    background-color: #fff;
    padding: 1em 1em; /* ← 左右にしっかり余白を */
    box-sizing: border-box; /* 念のため */
  }

  .product-spec table,
  .product-spec tr,
  .product-spec th,
  .product-spec td {
    display: block;
    width: 100%;
  }

  .product-spec tr {
    margin-bottom: 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
  }

  .product-spec th {
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
  }

  .product-spec td {
    white-space: normal;
    word-break: break-word;
  }
    

  .product-image {
    text-align: center;
  }

  .product-image img {
    margin: 0 auto;
    display: block;
  }
    
  .product-spec table {
    background-color: transparent; /* ← 表の外枠の白地を消す */
  }
}



/* === レシピ === */
.section-recipes {
  padding: 3em 1em;
  text-align: center;
}

.section-recipes .section-title {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  color: #D53A3A;
  margin-bottom: 2em;
}

/* レシピカードの枠 */
.recipe-card {
  border: 2px solid #F9C74F;
  border-radius: 12px;
  margin: 2em auto;
  padding: 1em;
  max-width: 960px;
  background: #fff;
}

/* 横並び */
.recipe-flex {
  display: flex;
  align-items: center;
  gap: 1em;
}

/* 左右反転 */
.recipe-flex.reverse {
  flex-direction: row-reverse;
}

/* 画像 */
.recipe-img {
  width: 50%;
  border-radius: 8px;
  object-fit: cover;
}

/* テキスト */
.recipe-text {
  width: 50%;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}

.recipe-text h3 {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.4rem;
  color: #D53A3A;
  margin-bottom: 0.5em;
}

.recipe-text p {
  font-size: 1rem;
  margin-bottom: 1em;
 text-align: left;
}

.recipe-btn {
  display: table;
  margin: 0 auto;
  background: #D53A3A;
  color: #fff;
  padding: 0.4em 5em;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
}


@media screen and (max-width: 768px) {
  .recipe-flex,
  .recipe-flex.reverse {
    flex-direction: column; /* ← reverseも無視して縦並び */
  }

  .recipe-img,
  .recipe-text {
    width: 100%;
    text-align: center;
  }

  .recipe-text {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    text-align: center;
  }
    
  .recipe-text h3 {
    margin-top: 0; /* 調整して見栄えが良ければOK */
  }

  .recipe-img {
    margin-bottom: 0;
    display: block;
  }
}


/* === サミット案内 === */
.purchase{
    padding-top: 40px;
}


.purchase p{
    text-align:center;
}

.button003 {
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
}
   .button003 span {
     background: #459A4B;
     border-radius: 50px;
     position: relative;
     display: flex;
     justify-content: center; /* 中央揃えに変更 */
     align-items: center;
     margin: 0 auto;
     max-width: 500px;
     padding: 15px 25px;
     color: #fff;
     transition: 0.3s ease-in-out;
     font-weight: 500;
     font-size: 1.3em;
     flex-direction: row; /* PC版では横並び */
     text-decoration: none; /* 下線を消す */
     text-align:center;
    }

/* ページトップに飛ぶボタン */
#page-top {
  text-align: center;
  margin-top: 1em;
}

#page-top a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0em 1.2em 0.5em 1.2em;
  color: #D53A3A;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

#page-top a:hover {
  background-color: #FFCFCF;
}

.arrow-symbol::before {
  content: "〈";
  display: inline-block;
  transform: rotate(90deg);
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0.2em;
}


/* =================== 会社案内 =================== */
footer {
  position: relative;
  background: #D53A3A;
  text-align: center;
  padding: 2em 1em 3em 1em;
  font-size: 1rem;
  margin-top: 0 ;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFF;
}

.school-info {
  text-align: center;
  margin-bottom: 2em;
}

.footer-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.footer-contact li {
  margin-bottom: 0.5em;
}

/* コピーライト */
small {
  display: block;
  text-align: center;
  margin-top: 1em; 
  font-size: 80%;
}
          
/* モバイルで追従ボタンと被らないように下余白を確保 */
/*
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 7em;
  }
}*/
