@charset "utf-8";
/**
 *
 *  ページ用CSS
 *　plan
 */
/*--------------------------------------------------------------------------
   Overwright
---------------------------------------------------------------------------*/
.plan-mv {
  position: relative;
}
.plan-section-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  top: 85px;
  color: #fff;
  font-size: 60px;
  line-height: 1.1;
  text-align: center;
  letter-spacing: .1em;
}
.plan-section-title-ja {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: .05em;
}
.plan-mv-image {}
.plan-mv-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: width 0.2s ease, height 0.2s ease;
}
/*--------------------------------------------------------------------------
   Overwright
---------------------------------------------------------------------------*/
.plan-box-unit {
  width: 976px;
  display: flex;
  justify-content: space-between; /* 両端揃え */
  margin-bottom: 70px;
}
.plan-box {
  display: flex;
  flex-direction: column;
  width: 304px;
  background-color: #fff;
  border: 2px solid #937e28;
  padding: 0 16px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.plan-box-disabled-wrapper {
  position: relative;
  width: 304px;
  background-color: #fff;
  border: 1px solid #937e28;
  padding: 0 16px;
}
.plan-box-disabled {
  display: flex;
  flex-direction: column;
  filter: blur(6px); /* 中身をぼかす */
}
.comingsoon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  color: #666;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.4); /* 見やすく */
  pointer-events: none;
}
.comingsoon .line1-main {
  font-size: 40px;
}
.comingsoong .line1-sub {
  font-size: 20px;
}
.plan-box:hover {
  background-color: #f0f0f0;
}
.plan-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan-box-title, .plan-box-subtitle, .plan-box-text, .plan-box-text .small, .plan-box-link {
  line-height: 1;
}
.plan-box-number {
  display: flex;
  align-items: center;
  gap: 3px;
  background-color: #937e28;
  padding: 8px 25px 12px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  border-radius: 0 0 10px 10px;
  vertical-align: middle;
}
.plan-box-number .small {
  font-size: 24px;
  vertical-align: middle;
}
.plan-box-title {
  font-size: 40px;
  text-align: center;
  color: #a5862d;
  margin-bottom: 15px;
}
.plan-box-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
.plan-box img {
  width: 100%;
  height: auto;
}
.plan-box-image {
  margin-bottom: 20px;
}
.plan-box-text {
  font-size: 26px;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #999;
  letter-spacing: .05em;
  width: 100%;
}
.plan-box-text .small {
  font-size: 20px; /* 数字＋丸括弧含む */
}
.plan-box-text.boxed {
  display: inline-flex;
  align-items: center;
  border: 1px solid #a5862d;
  padding: 7px 20px 10px;
  color: #a5862d;
  margin-bottom: 10px;
}
.plan-box-text:last-of-type .small {
  font-size: 16px;
}
.plan-box-area-wrapper {
  margin-bottom: 20px;
}
.plan-box-area {
  display: flex;
  gap: 10px;
  font-size: 13px;
  align-items: baseline;
  letter-spacing: .05em;
}
.plan-box-area span {
  font-size: 18px;
}
/* 下リンクを枠にピッタリ揃える */
.plan-box-link {
  background-color: #937e28;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 12px 0; /* 上下のみ */
  width: calc(100% + 32px); /* padding16pxを含めて横幅枠いっぱい */
  margin-left: -16px; /* 左枠にピッタリ */
  margin-top: auto; /* flexで下に押し出す */
}
/*--------------------------------------------------------------------------
   plan-cencepts
---------------------------------------------------------------------------*/
.plan-concepts-section {
  padding-top: 100px;
  margin-bottom: 110px;
}
.plan-concepts-heading {
  text-align: center;
  color: #a5862d; /* 枠と同じ色 */
  margin-bottom: 60px; /* 枠との距離 */
}
.plan-concepts-title {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.plan-concepts-subtitle {
  font-size: 27px;
  line-height: 1.4;
}
.plan-concepts {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.plan-concept-card {
  width: 225px;
  background: #fff;
  border: 2px solid #937e28;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* これでテキストと画像を上下に分けて揃える */
  box-sizing: border-box;
}
.plan-concept-text {
  padding: 15px 20px;
  text-align: center;
  flex-grow: 1; /* 余白があっても伸びる */
}
.plan-concept-title {
  font-size: 50px;
  color: #a5862d;
  margin: 0 0 15px 0;
  line-height: 1.1;
}
.plan-concept-desc {
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}
.plan-concept-image {
  width: 100%;
  max-width: 255px;
  height: 176px;
  object-fit: cover;
}
.plan-division {
  margin-bottom: 60px;
}
.plan-division img {
  width: 100%
}
.plan-request-banner {
  width: 800px;
  margin-inline: auto;
}
/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
.product-section {}
.product-heading {
  text-align: center;
  color: #a5862d; /* 枠と同じ色 */
  margin-bottom: 50px; /* 枠との距離 */
}
.product-title {
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: .1em;
}
/* セクション全体マージン */
.product-group {
  padding-bottom: 80px;
}
/* グループタイトル */
.group-title {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1.2;
  color: #a5862d;
}
.group-title::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 1px;
  content: "";
  background: #a5862d;
}
/* 共通カテゴリ設定 */
.product-category {
  margin-bottom: 60px;
}
.product-category:last-child {
  margin-bottom: 0;
}
.category-title {
  width: 976px;
  background-color: #937e28;
  color: #fff;
  font-size: 16px;
  padding: 4px 0 6px 15px;
  box-sizing: border-box;
  margin-bottom: 25px;
}
/* 共通商品リスト */
.product-list {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}
.product-list + .product-list {
  margin-top: 45px;
}
/* 商品画像・テキスト */
.product-image img {
  width: 100%;
  display: block;
}
.product-image + .product-name {
  margin-top: 10px;
}
.product-name {
  font-size: 18px;
  line-height: 1.5;
  color: #a5862d;
  margin-bottom: 5px;
}
.product-sub-name {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
  color: #e0e0e0;
}
.product-desc {
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  color: #e0e0e0;
}
.product-notes {
  font-size: 10px;
  line-height: 1.5;
  text-align: justify;
  margin-top: 10px;
  color: #e0e0e0;
}
.product-desc + .product-sub-name {
  margin-top: 10px;
}
/* 横幅共通クラス */
.w-304 {
  width: 304px;
}
.w-472 {
  width: 472px;
}
.w-640 {
  width: 640px;
}
/* 縦組みスペース対応 */
.product-vertical {
  display: flex;
  flex-direction: column;
}
.product-vertical .product-image + .product-name {
  margin-top: 10px;
}
/* plan-detail
-----------------------------------------------------------------*/
.plan-detail-wrapper {
  padding: 70px 0;
}
.plan-detail {
  background-color: #fff;
  margin: 50px auto 70px;
}
.plan-hd {
  text-align: center;
  padding-bottom: 70px;
}
.plan-detail .plan-num {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 25px;
  color: #fff;
  background-color: #a5862d;
  border-radius: 10px;
  padding: 13px 50px 16px;
  line-height: 1;
}
.plan-detail .plan-num span {
  font-size: 30px;
}
.plan-detail .plan-layout {
  font-size: 35px;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.plan-detail .plan-layout span {
  font-size: 22px;
}
.plan-detail .plan-lead {
  font-size: 35px;
  margin-bottom: 25px;
  text-align: center;
}
.plan-detail .plan-area {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.plan-detail .plan-area-box {
  display: flex;
  align-items: baseline;
  gap: 5px;
  border-bottom: 1px solid #333;
  padding: 0 10px 5px;
}
.plan-detail .plan-area dt {
  font-size: 15px;
}
.plan-detail .plan-area dd {
  font-size: 15px;
}
.plan-area dd span {
  font-size: 25px;
}
.plan-detail .plan-img-area {
  text-align: center;
}
.plan-detail .plan-label {
	margin: 60px auto 0;
	width: 50%;
	}
.plan-detail .plan-photo-area {
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
}
.plan-detail .plan-photo-area.photo-two {
  justify-content: space-between;
}
.plan-detail .plan-photo-cap {
  margin-top: 5px;
  font-size: 13px;
}
.back-btn {
  margin-top: 70px;
}
.back-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  color: #a5862d;
  border: 2px solid #a5862d;
  background-color: #fff;
}