@charset "utf-8";


.PageTopMv {
    text-align: center;
    padding: 40px 16px;
    background-image: url(https://tamashi.hptest.work/wp-content/themes/agarlup00/img/mvtopbg.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

/* 固定ページ標準共通 */
.MvBox {
	position: relative;
    max-width: 1160px;
    margin: auto;
}
.MvBox .TitleArea {
	position: relative;
    background: rgba(255,255,255,0.6);
    padding: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, .34);
}
.MvBox .TitleArea:after{
	border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(234, 236, 128, 0);
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left-width: 30px;
    border-right-width: 30px;
    margin-left: -30px;
    border-top-color: rgba(202,246,247,0.6);
    top: 100%;
    right: 16%;
}
.MvBox .TitleArea h1 {
    font-size: clamp(1.0rem, 3vw, 2.6rem);
    text-shadow: 2px 2px #fff, 2px 2px 1px #fff, 2px 2px 1px #fff, 2px 2px 1px #fff, 2px 2px 1px #fff, 2px 2px 1px #fff, 2px 2px 1px #fff, 2px 2px 1px #fff, 2px 2px 1px #fff, 2px 2px 1px #fff, 2px 2px 1px #fff;
    margin: 0;
    letter-spacing: -.05em;
	color: #333;
}
.RagionImg {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* 共通内部リストボタン */
.ListBtnArea {
    background: #FFF;
    padding: 40px 0;
    position: relative;
}
.ListBtnArea li {
	list-style: none;
	margin: auto;
}
.ListBtnArea .Contents ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列 */
  gap: 10px; /* ボタンの間隔 */
  padding: 0;
  margin: 0;
  list-style: none;
}

.ListBtnArea .Contents ul li {
  margin: 0;
  padding: 0;
}

.ListBtnArea .Contents ul li a {
  display: block;
  text-align: center;
  background-color: #007bff; /* ボタンの背景色 */
  color: white; /* テキストの色 */
  padding: 15px;
  text-decoration: none;
  border-radius: 5px; /* 角を丸くする */
  transition: background-color 0.3s ease; /* ホバー時のエフェクト */
}

.ListBtnArea .Contents ul li a:hover {
  background-color: #0056b3; /* ホバー時の背景色 */
}

/* レスポンシブ対応: 画面幅が768px未満の場合は2列 */
@media (max-width: 768px) {
  .ListBtnArea .Contents ul {
    grid-template-columns: repeat(2, 1fr); /* 2列 */
  }
}

.Worries {
    background: #f1fcff;
    padding: 40px 0;
    position: relative;
}
.Worries h3 {
  font-size: clamp(1.3em, 2.5vw, 1.9em);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #1976d2, #42a5f5); /* 高級感ブルー帯 */
  padding: 14px 20px;
  border-radius: 8px;
  margin: 40px 0 20px;
  position: relative;
}
.Worries h3::before {
  content: "💧";
  margin-right: 8px;
}
/* H4：小見出し */
.Worries h4 {
font-weight: 600;
    font-size: clamp(1.2rem, 2vw, 1.5em);
    color: #333;
    margin: 24px 0 24px;
    position: relative;
    padding-left: 16px;
}

.Worries h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1.2em;
  background: #2644AC; /* h3と統一感のあるブルー */
  border-radius: 3px;
}
/* タブメニュー */
.tab-wrap {
  width: 100%;
  margin: 20px 0;
}

.tab-menu {
  list-style: none;
  display: flex;
  border-bottom: 2px solid #4BB5EB;
  padding: 0;
  margin: 0;
}

.tab-menu .tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  cursor: pointer;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-bottom: none;
  transition: background-color 0.3s;
  line-height: 0;
}
.tab-menu .tab:nth-child(1) {
    border-radius: 16px 0px 0 0;
}
.tab-menu .tab:nth-child(4) {
    border-radius: 0 16px 0 0;
}
.tab-menu .tab:hover {
  background-color: #e1f5fe;
}

.tab-menu .tab.active {
  background-color: #4BB5EB;
  color: #fff;
}

/* タブコンテンツ */
.tab-content {
  padding: 20px;
  border: 1px solid #ddd;
  display: none;
  background: #FFF;
}

.tab-content.active {
  display: block;
}
/* リストを2列のグリッド表示に変更 */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列表示に設定 */
  gap: 20px; /* 各アイテム間のスペース */
}

.check-list li {
  position: relative;
  padding-left: 30px; /* チェックアイコンのためのスペース */
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  display: inline-block;
}

/* チェックアイコンの追加 */
.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #4BB5EB;
  font-weight: bold;
  font-size: 1.2rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .check-list {
    grid-template-columns: 1fr; /* スマホでは1列表示 */
  }
  .check-list li {
    font-size: 1rem;
  }
}

.category-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の背景 */
  color: #ffffff; /* テキストの色 */
  padding: 5px 10px;
  border-radius: 3px; /* 角を丸く */
  font-size: 0.9em;
  font-weight: bold;
  z-index: 10; /* 他の要素より前面に表示 */
}
.category-label a {
  color: #ffffff; /* テキストの色 */
}
/* サムネイルのラッパーを相対配置にして、絶対配置のカテゴリラベルを固定 */
.article-thumbnail {
  position: relative;
}

.ServisePrice {

}
/* テーブルの全体的なスタイル */
.ServisePrice-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  text-align: left;
  table-layout: fixed; /* 列の幅を固定 */
}

/* テーブルヘッダーのスタイル */
.ServisePrice-table thead th {
  background-color: #175ed4; /* サイトカラーに基づいた青 */
  color: #ffffff; /* 白文字で視認性を向上 */
  padding: 12px;
  border-bottom: 2px solid #ddd;
  font-weight: bold;
  text-align: center;
}

/* テーブルの行（tbody）のスタイル */
.ServisePrice-table tbody tr {
  border-bottom: 1px solid #ddd;
  color: #333;
}
  .ServisePrice-table thead th:nth-child(1),
  .ServisePrice-table tbody td:nth-child(1) {
	font-weight: 700;
  }
  /* 料金列を特別にスタイル */
.ServisePrice-table tbody td:nth-child(2) {
    color: #ff9800; /* モバイルでも同様に料金を目立たせる */
	text-align: right;
	font-size: 1.4rem;
	font-weight: 700;
}

  .ServisePrice-table thead th:nth-child(3),
  .ServisePrice-table tbody td:nth-child(3) {
	  font-size: clamp(0.8rem, 1vw, 1.0rem);
}
/* 偶数行の背景色を変更 */
.ServisePrice-table tbody tr:nth-child(even) {
  background-color: #f2f2f2; /* 淡いグレー */
}

/* テーブルのセル（td）のスタイル */
.ServisePrice-table tbody td {
  padding: 12px;
  word-wrap: break-word; /* 長いテキストを自動で改行 */
  white-space: normal;
}

/* PCやタブレット時に列幅を指定 */
@media screen and (min-width: 769px) {
  .ServisePrice-table thead th:nth-child(1),
  .ServisePrice-table tbody td:nth-child(1) {
    width: 20%; /* 作業名の幅 */
  }

  .ServisePrice-table thead th:nth-child(2),
  .ServisePrice-table tbody td:nth-child(2) {
    width: 15%; /* 料金の幅 */
    color: #ff9800; /* 料金を目立たせる */
    font-weight: bold;
  }

  .ServisePrice-table thead th:nth-child(3),
  .ServisePrice-table tbody td:nth-child(3) {
    width: 65%; /* 作業内容の幅（残りのスペースを占める） */
  }
}

/* レスポンシブ対応 - スマホサイズ */
@media screen and (max-width: 768px) {
  /* テーブルヘッダーを非表示にしてカード形式にする */
  .ServisePrice-table thead {
    display: none;
  }

  /* 各行をブロック表示に変更 */
  .ServisePrice-table tbody tr {
    display: block;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
  }

  /* 各セルをブロック表示に変更 */
  .ServisePrice-table tbody td {
    display: block;
    text-align: right;
    padding: 10px;
    position: relative;
    width: 100%; /* スマホ時には幅を100%に */
  }

  /* 各セルの前に擬似要素でラベルを表示 */
  .ServisePrice-table tbody td:before {
    content: attr(data-label); /* th の内容をラベルとして表示 */
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 10px;
    font-weight: bold;
    text-align: left;
  }
}
.Lastnote {
  color: #333; /* 全体のテキストカラーを#333に設定 */
  font-size: clamp(0.8rem, 1vw, 1.0rem); /* 適宜フォントサイズを設定 */
  line-height: 1.5; /* 行間を調整 */
  text-align: center;
}

.Lastnote span {
  color: #ff9800; /* 目立たせるためにオレンジ色で強調 */
  font-weight: bold; /* 太字にしてさらに目立たせる */
}