@charset "utf-8";
:root {
  --vh: 1vh;
}


/*-------- ▼▼▼▼▼▼▼▼▼▼ 見学・体験　　------------------------------------*/







/*-------- ▼ サービス-大浜スイーツアカデミー★★★------*/




/* ▼ ベース設定 */
body {
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

a {
  color: #007b43;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ▼ ページラッパー */
.privacy-page-content {
  padding: 2em 1em;
  max-width: 1000px;
  margin: 0 auto;
}
.inner-content {
  width: 100%;
}

/* ▼ パンくずリスト */
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5em;
  color: #555;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumb li::after {
  content: ">";
  margin-left: 0.5em;
  color: #999;
}
.breadcrumb li:last-child::after {
  content: none;
}
.breadcrumb a {
  color: #007b43;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ▼ セクション全体 */
.service-section {
  margin-bottom: 4em;
}

/* ▼ セクションタイトル（中央揃え＋アンダーバー） */
.section-title-green-wrap {
  text-align: center;
  margin-bottom: 2em;
}

.section-title-green {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007b43;
  margin: 0;
  line-height: 1.4;
}

.section-title-underline {
  width: 60px;
  height: 3px;
  background-color: #007b43;
  margin: 0.5em auto 0;
  border-radius: 2px;
}

/* ▼ 各ブロック見出し */
.block-title {
  font-size: 1rem;
  font-weight: bold;
  color: #444;
  margin: 2em 0 1em;
  border-left: 5px solid #007b43;
  padding-left: 0.6em;
}

/* ▼ セクション案内ボタン----------------↓*/
/* ▼ ジャンプリンク（グリッドボタン形式） */
.anchor-links-grid {
  background-color: #f7fdfb;
  padding: 1.5em 1em;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5em;
  max-width: 640px;
  margin: 0 auto 2em;
  border-bottom: 1px dashed #ccc;
}

/* ▼ 各ボタン */
.anchor-links-grid .btn-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #007b43;
  border: 1px solid #007b43;
  padding: 0.5em 0.6em;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
  min-height: 32px;
  transition: all 0.2s ease-in-out;
}

.anchor-links-grid .btn-anchor:hover {
  background-color: #f0f8f5;
  transform: translateY(-1px);
}

/* ▼ 長文ボタン用（中央寄せで幅広） */
.anchor-links-grid .btn-anchor.full {
  grid-column: 1 / -1; /
  justify-self: center;
  width: 100%;
  max-width: 100%;
}


/* ▼ 個別対策：機械製造一覧にもしCSS効かない時の保険 */
.anchor-links-grid a[href="#factory"] {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #007b43;
  border-radius: 12px;
  padding: 0.5em 0.6em;
  font-size: 0.7rem;
  white-space: normal;
  line-height: 1.4;
}

.anchor-links-grid .btn-anchor.dummy {
  background-color: #007b43;
  color: #fff;
  font-weight: bold;
  border: none;
  pointer-events: none;
  cursor: default;
}



/* ▼ セクション案内ボタン----------------↑*/


/* ▼ 画像用 */
.image-wrapper {
  margin: 1.5em 0;
  text-align: center;
}
.image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ▼ 動画用 */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 1.5em;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ▼ プルダウンメニュー（共通） */
.select-wrap {
  text-align: left;
  margin-bottom: 0em;
}
.company-tab-select {
  padding: 0.5em 1em;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
}

/* ▼ レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .section-title-green {
    font-size: 1.4rem;
    text-align: center;
  }

  .block-title {
    font-size: 0.8rem;
  }

  .anchor-links .btn-anchor {
    font-size: 0.6rem;
    padding: 0.4em 0.8em;
    min-width: auto;
  }

  .company-tab-select {
    width: 100%;
  }
}

/* 全体の段落文字サイズを調整 */
.service-section p {
  font-size: 0.92rem; /* ←お好みで 0.9rem 〜 1rem の間で調整可能 */
  line-height: 1.7;   /* 行間も少し詰めすぎないように */
  color: #444;        /* 少しだけ柔らかく */
  margin-bottom: 1em;
}
/* アクセント強調用：緑色テキスト＋背景 */
.highlight-green {
  color: #007b43;
  background-color: #e8f5e9;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-weight: bold;
}
