@charset "utf-8";


/* ▼ セクション案内ボタン----------------↓*/
/* ▼ ジャンプリンク（グリッドボタン形式） */
.anchor-links-grid {
  background-color: #f7fdfb;
  padding: 1em 1em 1.5em; /* ← 上を1emにして、下に余裕を持たせる */
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5em;
  max-width: 640px;
  margin: 1em auto 2em; /* ← 上に1emの余白追加で自然な余白に */
  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;
  margin-bottom: 0.5em; /* ← 下にスペースを足して、窮屈感を解消 */
}
/* ▼ セクション案内ボタン----------------↑*/


/* ======================================

よく使う

========================================= */

/* テキスト中央 */
.center-text {
  text-align: center;
}

.section-subtitle,
.lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 0.5em;
  font-size: 0.95rem;
  color: #333;
}

/* フォント */

.section-subtitle {
  font-weight: bold;
  color: #007b43; /* アクセントグリーン */
  font-size: 1.2rem;
}


/*-------- ▼▼▼▼▼▼▼▼▼▼ webtop　　------------------------------------*/

/* ▼ Web制作ページ専用スタイル（web.css） */

/* セクションブロック */
.web-section {
  margin-bottom: 3em;
  padding-bottom: 2em;
  border-bottom: 1px solid #ddd;
}

.web-section:last-of-type {
  border-bottom: none;
}

/* 見出し（既存トンマナに準拠） */
.web-section h3.section-heading {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  border-bottom: 2px solid #007b43;
  display: inline-block;
  padding-bottom: 0.2em;
  margin-top: 2em;
  margin-bottom: 1em;
}

/* 本文テキスト */
.web-section p {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1em;
}

/* ハイライト背景（しずる感やキャッチコピー用） */
.web-highlight {
  background-color: #e6f3ec;
  padding: 0.6em 1em;
  border-radius: 6px;
  display: inline-block;
  font-weight: bold;
  color: #003d29;
  margin-bottom: 1em;
}

/* ✔ リスト（ジャンル・対応サービス） */
.web-list {
  list-style: none;
  padding-left: 1em;
  margin-bottom: 1.5em;
}

.web-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.6em;
  font-size: 14px;
}

.web-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #007b43;
  font-size: 0.9em;
}

/* 補足テキスト */
.web-note {
  font-size: 13px;
  color: #555;
  margin-top: 0.5em;
}

/* 納品フロー画像のレスポンシブ対応 */
.web-flow-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 8px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .web-section h3.section-heading {
    font-size: 16px;
  }

  .web-section p,
  .web-list li {
    font-size: 13px;
  }
}


/* ========================
   ▼ ボタンスタイル 
   ======================== */
.button-green {
  display: inline-block;
  margin-top: 0.8em;
  padding: 0.6em 1.4em;
  background-color: #007b43; /* アクセントグリーン */
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-green:hover {
  background-color: #005c30;
  
  transform: translateY(-2px);
}



/* ▼ セクション案内ボタン----------------↓*/
/* ▼ ジャンプリンク（グリッドボタン形式） */
.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%;
}

/* ボタンスタイル再利用調整（中央寄せ） */
.visit-button-wrap {
  text-align: center;
  margin: 2em 0;
}


/* ▼ 個別対策：機械製造一覧にもし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;
}



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

/* 緑枠==================== */
.furusato-list-box {
  background-color: #f4fbf8;
  border: 1.5px solid #a3d8b2;
  border-radius: 10px;
  padding: 1.5em;
  margin: 2em auto;
  max-width: 360px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.furusato-list-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007b43;
  text-align: left;
  margin-bottom: 1em;
}

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

.furusato-list li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.7em;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
}

.furusato-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #007b43;
  font-size: 0.9em;
}

/* フォント調節 */

.furusato-list-note {
  font-size: 0.95rem;
  font-weight: 400;
  color: #007b43;
  text-align: center;
  line-height: 1.8;
  margin: 1.5em 5% auto 0;
  display: block;
  max-width: 90%;
  padding: 0;
}


.section-heading-green-center {
  font-size: 1.1rem;         /* 中くらいの大きさ */
  color: #007b43;            /* 常盤色のグリーン */
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin: 1em 0 1em;
}

/* フォント調節 */


/* レビュー風∸－－－－－－－－－－－－－－－－－－－－－－－－－ */

/* 全体ボックス（枠なし） */
.review-box {
  padding: 0.5em 1em 1.5em; /* 上だけ0.5emに詰める */
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

/* タイトル部分 */
.review-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

/* レビュー一覧 */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

/* 各レビューカード */
.review-item {
  background-color: #f0f9f5; /* 淡いグリーン塗りつぶし */
  padding: 1em 1.2em;
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  text-align: left;
}


/* テキスト＋マーク */
.review-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
  position: relative;
  padding-left: 1.4em;
}



/* ご注意tp最後--------------------------- */

.notice-box {
  color: #555555;               /* 濃いグレー文字 */
  padding: 1.2em 1.5em;
  margin-top: 0.5em;
  font-size: 0.70rem;
  line-height: 1.8;
  text-align: left;
  border-radius: 6px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.web-list-note {
  font-size: 0.95rem;
  text-align: center;
  color: #007b43;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.section-title-green.text-center {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 1.2em;
}

.note-caution {
  font-size: 0.85rem;
  color: #666;
  background-color: #fdfdfd;
  border-left: 4px solid #a3d8b2;
  padding: 1em;
  margin-top: 1.5em;
  line-height: 1.6;
}

/* ご注意tp最後--------------------------- */

/* EC制作============================== */

.section-subtitle,
.lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 0.5em;
  font-size: 0.95rem;
  color: #333;
}

/* フォント */

.section-subtitle {
  font-weight: bold;
  color: #007b43; /* アクセントグリーン */
  font-size: 1.2rem;
}

.img-wrap {
  text-align: center;
  margin: 2em 0;
}

.img-wrap img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}


.strong-green {
  font-size: 1.3em;        /* 少し大きめの文字サイズ */
  font-weight: bold;       /* 太字 */
  color: #007b43;          /* 本気モードでよく使われている常盤色（緑） */
  white-space: nowrap;     /* 改行させない */
  display: inline;
}

/* オプション設定 */

.option-price-list {
  list-style-type: disc;
  padding-left: 1.2em;
  margin: 1em 0;
}

.option-price-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.4em;
}

/* 小さめの黒丸を調整 */
.option-price-list li::marker {
  font-size: 0.6em;
  color: #666;
}

/* 必要な3つ */
.strategy-review-section {
  padding: 0.5em 1em 1.5em; /* 上だけ0.5emに詰める */
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}


.strategy-review-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}


.strategy-review-item {
  background-color: #f0f9f5; /* 淡いグリーン塗りつぶし */
   border: 1.5px solid #a3d8b2;
  padding: 1em 1.2em;
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.strategy-review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}


/* オプション設定 */

/* Q＆A */

.faq-section {
  margin: 2em auto;
  max-width: 800px;
  padding: 0 1em;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}

.faq-question {
  background: none;
  border: none;
  padding: 1em 0;
  width: 100%;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #007b43;
  cursor: pointer;
}

.faq-question:hover {
  text-decoration: underline;
}

.faq-answer {
  padding: 0.8em 0 1.2em 1.8em;
  font-size: 0.95rem;
  color: #444;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.icon-q, .icon-a {
  display: inline-block;
  width: 1.4em;
  font-weight: bold;
  color: #007b43;
  margin-right: 0.5em;
}

/* Q＆A */

/* -----------------------
多様なweb
------------------------- */


/* ▼ web-site-box セクション（制作カテゴリ用ボックス） */
.web-site-box {
  background-color: #f9fdfb;
  border-left: 4px solid #007b43; /* アクセントの常盤色 */
  border-radius: 8px;
  padding: 1.5em 1.2em;
  margin-bottom: 2em;
  box-shadow: 0 2px 6px rgba(0, 123, 67, 0.05);
}

.web-site-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.8em;
}

.web-site-center-text {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1em;
}


.web-site-list {
  padding-left: 1em;
  margin: 0;
}

.web-site-list p {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.6em;
  font-size: 0.95rem;
  color: #444;
}

.web-site-list p::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #007b43;
  font-size: 0.9em;
}

/* sapo-yo */

.lead-small {
  font-size: 0.9rem;
  line-height: 1.0;
  text-align:　left;
  color: #858383;
}



.lead-small-sab {
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: center;
  color: #333;
}

.furusato-lead-text {
  font-size: 0.95rem;
  line-height: 2;        /* 行間を広めに */
  text-align: center;    /* 中央揃え */
  white-space: normal;   /* 自然な折り返し */
  max-width: 90%;
  margin: 1.5em auto;
}


.section-subtitle-sab {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.0em;
  font-size: 1.2rem;
  font-weight: bold;
  color: #007b43;
}

/* ルポール宿泊　ギャラリー */


/* ▼ 横スクロールサムネイルエリア */

.main-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 0rem; /* ← ここを詰める！ */
}

@media (max-width: 600px) {
  .main-image {
    max-height: 45vh;
  }
}

/* ルポールギャラリー　横スクロール用*/
.event-nav-wrapper {
  display: flex;
  overflow-x: auto;
  padding: 1em 0;
  gap: 1em;
  scroll-behavior: smooth;
  margin-bottom: 0em;
}
.event-nav-item {
  white-space: nowrap;
  background: #007b43;
  color: white;
  padding: 0.5em 1em;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.event-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.5em;          /* ← 少し間隔を狭める */
  margin-bottom: 0em;/* ← 必要に応じて調整 */
}

.thumbnail-list {
  display: flex;
  gap: 0.5em;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  padding-top: 0;
  margin-top: 0;
}

.thumbnail-list::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-list::-webkit-scrollbar-track {
  background: transparent;
}

.thumbnail-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}



.thumbnail-list img {
  height: 60px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}
.thumbnail-list img:hover {
  transform: scale(1.05);
}

/* テキストリンク */
.price-link {
  display: inline-block;
  color: #007b43;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1em;
}

/* モーダル共通スタイル（前回と同じ） */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2em;
  border-radius: 10px;
  max-width: 90%;
  width: 600px;
  position: relative;
}

.close {
  color: #aaa;
  position: absolute;
  right: 1em;
  top: 1em;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
.price-table th,
.price-table td {
  border: 1px solid #ccc;
  padding: 0.6em;
  text-align: center;
}
.price-table th {
  background-color: #007b43;
  color: white;
}

/* 部屋案内　---------------------------- */
.room-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 1.0em;
}

.room-card {
  width: calc(50% - 12px); /* 2列配置 */
  background-color: #fff;
  border: 1px solid #ccc; /* ← 線枠を追加 */
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.room-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.room-card-text {
  padding: 1em;
  font-size: 0.9rem;
  line-height: 1.6;
}

.room-card-text h4 {
  margin-bottom: 0.5em;
  font-size: 1.05rem;
  color: #007b43;
}

/* 部屋案内　開閉---------------------------- */

.room-detail {
  margin-top: 0.8em;
  font-size: 0.85rem;
  color: #333;
  display: none;
}

.room-detail.show {
  display: block;
}

.show-more {
  color: #007b43;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 2em;
  border-radius: 8px;
  max-width: 600px;
  position: relative;
}

.close {
  color: #aaa;
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 28px;
  cursor: pointer;
}

/* ご飯画像 */

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1em;
  border-radius: 12px; /* ← 角を丸くする */
}


.meal-description-box {
  background-color: #f4fbf8;
  border: 1.5px solid #a3d8b2;
  border-radius: 10px;
  padding: 1.5em;
  margin: 2em auto;
  max-width: 360px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.meal-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.subtitle-green-center {
  display: block;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1em;
  padding: 0.5em;
  font-size: 1.2rem;
  font-weight: bold;
  color: #007b43;  /* アクセントグリーン */
  line-height: 1.6;
}

.furusato-list a {
  color: #007b43;  /* 緑色 */
  text-decoration: underline;
}

.furusato-list a:hover {
  color: #005a2e;  /* ホバー時の濃い緑 */
  text-decoration: none;
}

.machine-section {
  margin: 2em 0;
}

.machine-category {
  font-size: 1.2rem;
  color: #007b43;
  margin-bottom: 1em;
}

.machine-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 1.5em;
  gap: 1em;
}

.machine-img {
  max-width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.machine-text {
  flex: 1;
  min-width: 200px;
  font-size: 14px;
  line-height: 1.6;
}

