@charset "UTF-8";
#header {background-color: rgba(255,255,255,1);}
#page_header{background-image: url("../img/header_img_pc.webp");}

.page_f-left{float: left;}
.page_f-right{float: right;}
/* ====== ページメニューPC 基本デザイン ====== */
/* ====== PC 基本デザイン ====== */
.menu {
  display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5列 */
    gap: 10px 10px;
  font-size: 1.2em;
  font-weight: 500;
  flex-wrap: nowrap; /* PCでは折り返さない */
}

.menu a {
  text-decoration: none;
  color: #333;
  padding: 10px 40px 6px 15px; /* 下線用に下余白 */
  position: relative;
  border-bottom: 2px solid #ddd; /* 下線追加 */
}

/* アクティブ（選択中） */
.menu a.active {
  background: #e5e5e5;
  padding: 10px 40px 6px 15px;
  border-bottom: 2px solid #333; /* アクティブ時は濃い下線 */
}

/* アクティブ時の矢印（PCのみ表示） */
.menu a::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
}

/* ====== スマホ（600px 以下）では3列グリッド ====== */
@media (max-width: 600px) {
  .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列 */
    gap: 0px 10px;
    font-size: 0.9em;
  }

  .menu a {
    padding: 10px 40px 6px 15px;
    border-bottom: 2px solid #ddd; /* 下線そのまま */
  }

  .menu a.active {
    background: #e5e5e5;
    border-bottom: 2px solid #333; /* アクティブは太め */
  }

}
.lead_copy{font-size: 1.4em;line-height: 1.6em;margin: 0.6em 0 0.6em;}
.wp_ttl_h2{font-weight: normal;font-size: 1.2em;line-height: 1.8em;margin: 0.6em 0 1em;}
.item_name{background-color: #dcdddd;padding: 2%;font-size: 1.6em;margin-bottom: 1em;font-weight: bold;}
.wp_main_img img{width: 100%;}
.item_number{padding: 2em 0;border-bottom: solid 1px #9fa0a0;margin-bottom: 2em;}
.wp_ttl_h3{font-size: 1.6em;margin-bottom: 0.4em;}
.wp_contents p{line-height: 1.8em;}
.item_contents{margin-bottom: 5em;}
.item_contents p{margin-bottom: 0.63em;}
.item_contents img{height: 360px;width: auto;}
/* --- 機能マークCSS --- */
.feature-wrapper {
  background-color: #7a6a55;  /* 左側のブラウン背景 */
  padding: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* --- タイトル部分 --- */
.feature-title {
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  margin-left: 20px;
}

/* --- 右側黒背景部分 --- */
.feature-content {
  background-color: #ffffff;
  padding: 10px 20px;
  flex: 1;
}
.feature-image{display: flex;}
/* --- 画像をレスポンシブに表示 --- */
.feature-image img {
  width: 80px;
  height: auto;
  margin-right: 2%;
}
.page_navi{margin: 5em 0 3em;}
.page_navi_lr{font-size: 1.2em;}
.more_btn{width: 40%;display: block;margin: 2em auto;}

.corner_ttl_h2{font-size: 2.2em;border-left: solid 6px #bb1b2a;padding-left: 0.4em;border-bottom: solid 1px #3e3a39;}
.funiture_box{display: block;height: 300px;margin-bottom: 10%;color: #3e3a39;}
.funiture_item_03{width: 31%;
    height: auto;
    display: block;
    margin-bottom: 2%;}
.funiture-bk-img {
  width: 100%;
  height: 220px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image:url("../img/dummy_img.svg");
	margin-bottom: 0.4em;
}
.item_ttl{font-size: 1.2em;font-weight: bold;}

/* ====== ページネーションCSS ====== */
.pagination .page-numbers {
  color: #333;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  line-height: 1.2rem;
  position: relative;
  display: inline-block;
  border: solid 1px #333;
  padding: 6px 11px 5px;
  margin: 0 6px;
}

.pagination .current {
  color: #fff;
  background-color: #333;
}

.pagination .dots {
  border: none;
  margin: 0 3px;
}

.pagination .prev {
  position: relative;
  padding-left: 23px;
}

.pagination .prev::after {
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(225deg);
  margin: auto;
}

.pagination .next {
  position: relative;
  padding-right: 23px;
}

.pagination .next::after {
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(45deg);
  margin: auto;
}

.pagination a:hover {
  color: #fff;
  background-color: #333;
  transition: .3s;
}

.pagination .prev:hover::after,
.pagination .next:hover::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
table{border-top: solid 0.5px #979898;border-bottom: solid 0.5px #979898;margin:2em 0;height:auto!important;}
table tr{
  display: flex;
  flex-wrap: wrap;
	width: 100%;
	margin: 0%;
	padding: 0;
	border-top: solid 0.5px #979898;
	height:auto!important;
}
table td:first-child {
  width: 14%!important;
height:auto!important;
  padding: 20px 5%;
 margin: 0 0 0 0;
  display: flex;
  align-items: center;
  justify-content: left;
	border-bottom: solid 1px #979898;
	font-size: 1.2em;
	font-weight: bold;
	background-color: #efefef;
	color:#4A4A4A;
}
table td:nth-child(2) {
  width: 68%!important;
	height:auto!important;
  padding: 20px 5% 20px 3%;
  margin: 0 0 0 0;
	border-bottom: solid 1px #979898;
	font-size: 1.2em;
	text-align: left;
	line-height: 1.8em;
	font-weight:normal;
}
.gallery-item {
    float: left;
    margin-top: 10px;
    text-align: center;
    width: 31%;
    margin: 10px 2% 20px 0%;
}
.gallery-item img {
    border: none;
    width: 100%;
    object-fit: cover;
    height: 350px;
}
/*
===================================================
 tb タブレット解像度
===================================================
*/
@media screen and (max-width:1000px) {

	}
/*
===================================================
 sp スマホ解像度
===================================================
*/
@media screen and (max-width:640px) {
#page_header{background-image: url("../img/header_img_sp.webp");}
	
.page_ttl_h2{font-size: 1.3em;}
.page_ttl_h3{color:#7d4e22;font-size: 1.2em;}
.a_blue{display:inline-block;color:#0A6BF1;}
.mt2em_sp{margin-top: 2em;}

.wp_ttl_h2{font-size:1.0em;line-height: 1.6em;margin: 0.6em 0 0.6em;}
.item_name{padding: 1.6%;font-size: 1.4em;margin-bottom: 1em}
.wp_main_img img{width: 100%;margin-bottom: 0.4em;}
.item_number{padding: 1em 0;border-bottom: solid 1px #9fa0a0;margin-bottom: 1.6em;}
.wp_ttl_h3{font-size: 1.14em;margin-bottom: 0.6em;line-height: 1.3em;}
.corner_ttl_h2{font-size: 1.3em;border-left: solid 6px #bb1b2a;padding-left: 0.4em;border-bottom: solid 1px #3e3a39;}
.funiture_box{display: block;height: auto;margin-bottom: 10%;color: #3e3a39;}
.funiture_item_03{width: 48%;
    height: auto;
    display: block;
    margin-bottom: 2%;}
.funiture-bk-img {
  width: 100%;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image:url("../img/dummy_img.svg");
	margin-bottom: 0.4em;
}
.item_contents{margin-bottom: 2.4em;}
.item_contents img{height: auto;width: 100%;}
.item_ttl{font-size: 1.14em;font-weight: bold;}
.more_btn{width: 70%;display: block;margin: 2em auto;}
/* --- 機能マークCSS --- */
/* --- タイトル部分 --- */
.feature-title {
  font-size: 1em;
}
/* --- 画像をレスポンシブに表示 --- */
.feature-image img {
  width: 60px;
  margin-right: 3%;
}
		
table td:first-child {
	font-size: 1.0em;
}
table td:nth-child(2) {
  font-size: 1.0em;
	line-height: 1.4em;
}
.boxitem_03{width: 100%; margin-bottom: 1%;}
}
