@charset "utf-8";
/* CSS Document */

/*追加*/
.point01__description span,
.media01__description span{
  background: linear-gradient(#FFE57B, #FFE57B) no-repeat;
  background-size: 100% 5px;
  background-position: 0 1em;
  font-weight: bold;
}
.sp {
  display: none
}
main {
  /*background: #F5FFFA;*/
	background: #f5f5f5;
  padding: 30px;
}
.column_inner {
  max-width: 980px;
  padding: 0.8rem 2rem;
  background: #fff;
  margin: 0 auto;
  border-radius: 12px;
}
.column_inner p {
  line-height: 1.8;
  margin: 0 0 1.8em;
}
.bottom {
  max-width: 980px;
  padding: 2rem;
  background: #fff;
  margin: 50px auto 0;
  border-radius: 8px;
  border-radius: 12px;
}
.column__title {
  /*border-top: 3px solid #00864B;*/
   border-bottom: 3px solid #00864B;
  font-size: 30.5px;
  font-weight: bold;
  /*margin: 1em 0 1em;*/
  padding: 10px;
  line-height: 1.5;
  letter-spacing: .06em;
}
.contact02__btn {
  padding: 10px 50px;
  background: #00864B;
  /*border-radius: 50px;*/
  color: #fff;
  font-size: 16.5px;
  font-weight: bold
}
.contact02__btn:hover {
  opacity: 0.8
}
a.txtlink {
  font-weight: 700;
  color: #00864B;
  text-decoration: underline;
}
a.txtlink:hover {
  text-decoration: none;
  opacity: 0.8;
}
.b-h2 {
  font-weight: 700;
  padding-bottom: 8px;
}
.table02 {
  width: 100%
}
.table02__td, .table02__th {
  border: 1px solid #707070;
  padding: 1em
}
.table02__th {
  background: #00864B;
  color: #fff;
  font-weight: bold;
	text-align: center
}
.table02__td {
  color: #333333
}
/* メインのカードコンテナ */
.access-card {
  width: 100%; /* 横幅いっぱいに広げる */
  max-width: 1100px; /* 最大幅は1100pxに制限 */
  margin: 0 auto 1.8em; /* 画面中央に配置 */
  background-color: #ffffff; /* 背景色（白） */
  border: 1px solid #e2e8f0; /* 薄いグレーの境界線 */
  border-radius: 12px; /* 角丸 */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  padding: 30px; /* PC環境での内側の余白 */
  box-sizing: border-box; /* パディングを含めたサイズ計算 */
}
/* タイトル部分 */
.access-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a; /* 濃いネイビー/黒 */
  margin: 0 0 20px 0;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
/* リスト全体 */
.access-list {
  list-style: none; /* デフォルトの丸ポチを消去 */
  padding: 0;
  margin: 0;
}
/* リストの各項目 */
.access-list li {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: #334155; /* 本文の柔らかい黒 */
  padding-left: 20px; /* ドットの分の左余白 */
  margin-bottom: 14px; /* 行間の設定 */
}
/* 最後の項目の下マージンを消去 */
.access-list li:last-child {
  margin-bottom: 0;
}
/* オレンジ色のドット（擬似要素） */
.access-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.65em; /* 文字の一行目中央付近に固定 */
  width: 5px;
  height: 5px;
  background-color: #f59e0b; /* ドットの色（オレンジ/ゴールド系） */
  border-radius: 50%; /* 真ん丸にする */
}
/* メインのテーブルコンテナ */
.spec-table {
  width: 90%;
  margin: 30px auto;
  background-color: #ffffff;
  border-top: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
  box-sizing: border-box;
}
/* 各行のスタイル（PCではFlexboxで横並び） */
.spec-row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}
.spec-row:last-child {
  border-bottom: none;
}
/* 左側のグレーのラベル部分 */
.spec-label {
  width: 180px;
  background-color: #f3f4f6;
  color: #1f2937;
  font-weight: 700;
  font-size: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  flex-shrink: 0;
}
/* 右側のコンテンツ部分 */
.spec-content {
  flex-grow: 1;
  padding: 30px;
  box-sizing: border-box;
}
/* 定員ブロック */
.capacity-block {
  padding-bottom: 4px;
}
.capacity-text {
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 16px;
  font-weight: 500;
}
/* 定員ブロック間の区切り線 */
.inner-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 24px 0;
}
/* ダウンロードボタン */
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0f3375;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  min-width: 280px;
  border-radius: 2px;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}
.download-btn:hover {
  background-color: #1d4ed8;
}
/* ボタン内の右矢印 */
.download-btn .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 16px;
}
/* 設備リスト */
.equipment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.equipment-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #1f2937;
  margin-bottom: 8px;
}
.equipment-list li:last-child {
  margin-bottom: 0;
}
/* トランクルームの補足テキスト */
.equipment-list .sub-text {
  display: inline-block;
  padding-left: 1.5em;
  color: #1f2937;
}
/*************チェックリスト*****************/
.box_check_list {
  margin: 30px auto;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  padding: 30px;
  box-sizing: border-box;
  width: 88%;
}
.check_list {
  /*margin: 30px auto;*/
}
.check {
  position: relative;
  color: white;
  background: #81d0cb;
  line-height: 1.4;
  padding: 0.5em 0.5em 0.5em 2.5em;
  /*border-bottom: 2px solid #81d0cb;*/
  font-size: 18px;
  font-weight: bold;
}
.check:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  position: absolute;
  left: 1em; /*左端からのアイコンまでの距離*/
}
.check_ans {
  margin: 20px auto 30px;
}