@charset "UTF-8";
/* CSS Document */

/* Regular */
@font-face {
  font-family: 'LINESeedJP';
  src: url('../fonts/LINESeedJP_TTF_Rg.eot');
  src: url('../fonts/LINESeedJP_TTF_Rg.eot?#iefix') format('embedded-opentype'),
       url('../fonts/LINESeedJP_OTF_Rg.woff2') format('woff2'),
       url('../fonts/LINESeedJP_OTF_Rg.woff') format('woff');
  font-weight: normal; /* または 400 */
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'LINESeedJP';
  src: url('../fonts/LINESeedJP_TTF_Bd.eot');
  src: url('../fonts/LINESeedJP_TTF_Bd.eot?#iefix') format('embedded-opentype'),
       url('../fonts/LINESeedJP_OTF_Bd.woff2') format('woff2'),
       url('../fonts/LINESeedJP_OTF_Bd.woff') format('woff');
  font-weight: bold; /* または 700 */
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

/* ヘッダーの高さ分オフセット */
:target {
  scroll-margin-top: 80px; /* ヘッダーの高さに合わせて調整 */
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px!important;
    }
}

/* フェードイン対象の初期状態 */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

/* 表示されたときの状態 */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/*ローディング*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

#loading.hide {
  opacity: 0;
  pointer-events: none;
}

/* 点滅アニメーション */
.loading-img {
  width: 200px; /* お好みで調整 */
  animation: blink 1s ease-in-out infinite !important;
}

@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0.2; } /* 完全に消えず少し残す */
  100% { opacity: 1; }
}




/* フォントを適用する例 */
body {
  font-family: 'LINESeedJP', sans-serif!important;
}


 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
/*
      font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
      background: #fff;
*/
    }

    /* ===== HEADER ===== */
    header {
      background: #faf6f1;
      border-bottom: 1px solid #e8ddd4;
      position: sticky;
      top: 0;
      z-index: 1000;
	transition: transform 0.3s ease;
    }

header.header-hidden {
  transform: translateY(-100%);
}

    .header-inner {
      display: flex;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 7px 24px;
/*      height: 80px;*/
		height: auto;
      gap: 0;
    }

    /* ===== LOGO (左端固定) ===== */
    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      margin-right: auto; /* 残りスペースを全部ここに押し付けて右側を右寄せ */
    }

    .logo-img {
      height: 70px;
      width: auto;
      display: block;
    }

    /* ===== 右側グループ ===== */
    .header-right {
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }

    /* ===== PHONE ===== */
    .phone-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
      margin-right: 16px;
    }

    .phone-label {
      background: #fe7400;
      color: #fff;
      font-size: 11px;
      padding: 3px 12px;
      border-radius: 2px;
      margin-bottom: 4px;
      white-space: nowrap;
    }

    .phone-number {
      font-size: 26px;
      font-weight: 900;
      color: #592703;
      letter-spacing: 0.04em;
      line-height: 1;
    }
.phone-number a{
	color: #592703;
}

    .phone-hours {
      font-size: 10px;
      color: #000;
      margin-top: 3px;
      white-space: nowrap;
    }

    /* ===== CTA BUTTONS (仮画像) ===== */
    .cta-buttons {
      display: flex;
      gap: 5px;
      flex-shrink: 0;
    }

    .cta-btn {
      display: block;
      width: 80px;
      height: 80px;
      text-decoration: none;
      overflow: hidden;
      flex-shrink: 0;
      transition: opacity 0.2s;
    }

    .cta-btn:hover { opacity: 0.85; }

    .cta-btn img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* 仮画像SVGプレースホルダー */
    .cta-placeholder {
      width: 80px;
      height: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
    }

    .cta-placeholder svg {
      width: 26px;
      height: 26px;
      fill: #fff;
    }

    .cta-btn.estimate .cta-placeholder { background: #c8a96e; }
    .cta-btn.reserve  .cta-placeholder { background: #6a9fa8; }

    /* ===== HAMBURGER ===== */
    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 80px;
      height: 80px;
      cursor: pointer;
      gap: 6px;
      background: none;
      border: none;
      padding: 0 8px;
      flex-shrink: 0;
    }

    .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background: #000;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }

    .hamburger.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    .hamburger.is-open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .hamburger.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    /* ===== DRAWER MENU ===== */
    .drawer {
      position: fixed;
      top: 80px;
      right: 0;
      width: 300px;
      height: calc(100vh - 80px);
      background: #fff;
      box-shadow: -4px 0 20px rgba(0,0,0,0.12);
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 999;
      overflow-y: auto;
    }

    .drawer.is-open {
      transform: translateX(0);
    }

    .drawer-overlay {
      position: fixed;
      inset: 80px 0 0 0;
      background: rgba(0,0,0,0.35);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      z-index: 998;
    }

    .drawer-overlay.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer nav ul {
      list-style: none;
      padding: 16px 0;
    }

    .drawer nav ul li a {
      display: block;
      padding: 14px 24px;
      color: #333;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      border-bottom: 1px solid #f0ebe5;
      transition: background 0.15s, color 0.15s;
    }

    .drawer nav ul li a:hover {
      background: #faf0e6;
      color: #e07b2a;
    }

    .drawer-cta {
      padding: 20px 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .drawer-cta a {
      display: block;
      text-align: center;
      padding: 12px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .drawer-cta a:hover { opacity: 0.85; }
    .drawer-cta .d-estimate { background: #fe7400; color: #fff; }
    .drawer-cta .d-reserve  { background: #5f8886; color: #fff; }

.hp-bar-area{
	padding: 20px 16px;
}
    /* ===== DEMO CONTENT ===== */
    .demo-content {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 24px;
      text-align: center;
      color: #aaa;
      font-size: 14px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 640px) {
      .header-inner { padding: 0 12px; height: 75px; }
      .drawer { top: 64px; height: calc(100vh - 64px); }
      .drawer-overlay { top: 64px; }
      .logo-img { height: 60px; }
      .phone-block { margin-right: 8px; }
      .phone-number { font-size: 18px; }
      .phone-label { font-size: 10px; padding: 2px 8px; }
      .phone-hours { font-size: 9px; }
      .cta-btn, .cta-placeholder { width: 60px; height: 64px; }
      .cta-placeholder { font-size: 10px; }
      .cta-placeholder svg { width: 20px; height: 20px; }
      .hamburger { width: 65px; height: 65px; }
    }

/* ===== rlp: reform-lp スライダー ===== */
.rlp-slider-section {
  padding: 20px 0;
  background: #fff;
  overflow: hidden;
}

.rlp-slider-wrapper {
  margin: 0 auto;
/*
  max-width: 1400px;
  padding: 0 80px;
*/
}

.rlp-slide-item {
  padding: 0 8px;
}

.rlp-slide-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ドット */
.rlp-main-slider .slick-dots {
  bottom: -28px;
}

.rlp-main-slider .slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
  opacity: 1;
}

.rlp-main-slider .slick-dots li.slick-active button:before {
  color: #fe7400;
  opacity: 1;
}

/* 矢印 */
.rlp-main-slider .slick-prev { left: -50px; }
.rlp-main-slider .slick-next { right: -50px; }

/* ===== スマホ ===== */
@media (max-width: 768px) {
  .rlp-slider-wrapper {
    padding: 0px;
  }
  .rlp-slider-section {
    padding:0px;
  }
	.rlp-slide-item{
	padding:0px;
	}
	.rlp-slide-item img{
	border-radius: 0px;
	}
}

/*コンセプト*/
.taiou-area {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: #e7d0b6;
    padding: 10px;
    font-weight: 600;
    color: #592703;
	margin-bottom: 30px;
}
.concept_boxs{
	background-image: url("../img/reform-lp/concept-bac.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-bottom: 100px;
    padding-top: 100px;
}
.title-box h2{
	font-size: clamp(24px, 4vw, 48px);
	font-weight: 700;
}
.title-box p{
	font-size: clamp(12px, 2vw, 18px);
}
.con-image{
	text-align: center;
}
.con-image img{
	max-width: 350px;
	width: 100%;
}
.concept_boxs h2,.concept_boxs p{
	color: #592703;
}
.concept-txt{
	text-align: center;
	color: #592703;
		
}
.concept-txt h3{
	font-size: clamp(24px, 4vw, 48px);
	margin: 50px 0px;
}
.concept-txt p{
	font-size: clamp(16px, 2vw, 29px);
	margin-bottom: 30px;
	line-height: 2;
}

/*EVENT*/
.event_lp_boxs h2,.event_lp_boxs p{
	color: #592703;
}
.event_lp_boxs{
	padding: 50px 0px;
}
.right-image-colms {
    text-align: right;
}

/* ===== rlp-event ===== */
.rlp-event-section {
  padding: 40px 20px;
}

/* 2カラムグリッド */
/*
.rlp-event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}
*/

/* カード */
.rlp-event-card {
  background: #fff;
  overflow: hidden;
/*  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);*/
  transition: box-shadow 0.3s ease;
  padding: 10px; /* ← 追加：カード内余白 */
box-shadow: 10px 10px 0px 0px rgba(187, 187, 187, 0.4);
    border: 1px solid #e5e5e5;
}


.rlp-event-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}


/* サムネイル */

/* サムネイル：正方形 */
.rlp-event-card__thumb {
  overflow: hidden;
aspect-ratio: 1 / 1; /* ← これだけでOK */
}

.rlp-event-card__thumb img {
  width: 100%;
/*  padding-bottom: 100%; */
	height: 100%;
  object-fit: cover;
  display: block;
}

/* 本文エリア */
.rlp-event-card__body {
  padding: 16px 0px;
}

/* カテゴリ */
.rlp-event-card__cat {
  display: inline-block;
  background: #5e8886;
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

/* タイトル */
.rlp-event-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rlp-event-card__title a {
  color: #333;
  text-decoration: none;
}

/* 抜粋 */
.rlp-event-card__excerpt {
  font-size: 14px;
  color: #000!important;
  line-height: 1.7;
  margin-bottom: 20px;
font-weight: 600;
}

/* 詳しくはこちらボタン */
.rlp-event-card__btn {
    display: block;
    background: #fe7302;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    border-radius: 50px;
    max-width: 350px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
    margin: 0 auto;
}

.rlp-event-card__btn:hover {
  opacity: 0.85;
  color: #fff;
}

/* イベント一覧ボタン */
.rlp-event-more {
  text-align: center;
  margin-top: 32px;
}

.rlp-event-more__btn {
  display: inline-block;
  background: #592703;
  color: #fff;
   padding: 10px 15px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
	max-width: 350px;
    width: 100%;
}

.rlp-event-more__btn:hover {
  opacity: 0.8;
  color: #fff;
}


@media screen and (max-width: 767px) {
  .rlp-reform-info-sp-slider.slick-initialized {
    display: block;
    margin-left: 0;
    margin-right: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
	margin-bottom: 80px;
  }

  .rlp-reform-info-sp-slider.slick-initialized .slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  .rlp-reform-info-sp-slider.slick-initialized .slick-track {
    display: flex;
  }

  .rlp-reform-info-sp-slider.slick-initialized .slick-slide {
    height: auto;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .rlp-reform-info-sp-slider.slick-initialized .slick-slide > div {
    height: 100%;
  }

  .rlp-reform-info-sp-slider.slick-initialized .rlp-event-card {
/*    height: 100%;*/
  }

  .rlp-reform-info-sp-slider.slick-initialized .slick-dots {
    position: static;
    margin-top: 16px;
  }
  .rlp-reform-info-sp-slider .slick-dots li button:before {
    color: #ccc;
    opacity: 1;
  }

  .rlp-reform-info-sp-slider .slick-dots li.slick-active button:before {
    color: #fe7302;
    opacity: 1;
  }
	
	/*矢印系*/
	.rlp-reform-info-sp-slider .slick-prev,.rlp-reform-info-sp-slider  .slick-next{
		display: block!important;
	}
  .rlp-reform-info-sp-slider .slick-prev,
  .rlp-reform-info-sp-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
  }

  .rlp-reform-info-sp-slider .slick-prev {
    left: 0px;
	         top: unset;
        bottom: -5%;
  }

  .rlp-reform-info-sp-slider .slick-next {
    right: 0px;
	         top: unset;
        bottom: -5%;
  }

  .rlp-reform-info-sp-slider .slick-prev:before,
  .rlp-reform-info-sp-slider .slick-next:before {
    font-family: initial !important;
    font-size: 40px;
    color: #fe7400;
    opacity: 1;
  }

  .rlp-reform-info-sp-slider .slick-prev:before {
    content: "▶" !important;
    display: inline-block;
    transform: rotate(180deg);
  }

  .rlp-reform-info-sp-slider .slick-next:before {
    content: "▶" !important;
  }
}


/* ===== スマホ：1カラム ===== */

@media (max-width: 768px) {
 /* .rlp-event-grid {
    grid-template-columns: 1fr;
  }
*/

}

/*reform plan*/
.reform_pl_boxs {
    background-color: #f9f8f2;
    padding: 100px 0px;
    margin-top: 50px;
	color: #592703;
}
.reform_pl_kakakuimg{
	margin-top: 50px;
}
.reform_pl_kakakuimg img{
	width: 100%;
}

.ref-pla-p{
	font-size: clamp(14px, 2vw, 18px);
}

/*DESIGN REFORM LINEUP*/
.design_ref_lin_boxs h2,.design_ref_lin_boxs p{
	color: white;
}
.design_ref_lin_boxs{
	background-image: url("../img/reform-lp/desing-bac.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-bottom: 100px;
    padding-top: 100px;
}
.design_ref_lin_boxs h3{
	text-align: center;
	color: white;
	font-size: clamp(24px, 4vw, 48px);
	font-weight: 700;
    margin: 50px 0px;
}
.design_ref_lin_boxs h3.drl-title{
	color: #592703;
	margin: 0px;
	font-size: clamp(24px, 3vw, 36px);
}
.design_ref_lin_boxs p.drl-text{
	color: #000;
	font-size: clamp(16px, 2vw, 16px);
}

/* ===== drl: design reform lineup ===== */
.drl-section {
/*  padding: 60px 0;*/
}

.drl-section .container {
  overflow: hidden;
}

.drl-item {
  padding: 0 12px;
	height: 100%;
}

.drl-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 10px 10px 0px 0px rgb(0 0 0 / 40%);
	padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.drl-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.drl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drl-body {
  padding: 10px 20px 20px 20px;
	flex: 1;
}

.drl-title {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.drl-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

/* ===== 矢印 ===== */
.drl-slider .slick-prev,
.drl-slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.drl-slider .slick-prev:before {
  content: "◀";
  font-size: 28px;
  color: #fff;
  opacity: 1;
}

.drl-slider .slick-next:before {
  content: "▶";
  font-size: 28px;
  color: #fff;
  opacity: 1;
}

.drl-slider .slick-prev {
  left: -45px;
}

.drl-slider .slick-next {
  right: -45px;
}

/* ===== ドット ===== */
.drl-slider .slick-dots {
  bottom: -36px;
}

.drl-slider .slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
  opacity: 1;
}

.drl-slider .slick-dots li.slick-active button:before {
  color: #fe7302;
  opacity: 1;
}

/* ===== スマホ ===== */
@media (max-width: 767px) {
  .drl-item {
    padding: 0 8px;
  }

  .drl-title {
    font-size: 1rem;
  }

  .drl-text {
    font-size: 0.85rem;
  }
}

/* ===== drl: 矢印 ===== */
.drl-slider .slick-prev,
.drl-slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
}

/* デフォルトの矢印画像を非表示 */
.drl-slider .slick-prev:before,
.drl-slider .slick-next:before {
  font-family: inherit;
  font-size: 40px;
  color: #fff;
  opacity: 1;
}

.drl-slider .slick-prev:before {
  content: "◀"!important;
}

.drl-slider .slick-next:before {
  content: "▶"!important;
}

/* 矢印の位置調整 */
.drl-slider .slick-prev {
  left: -45px;
}

.drl-slider .slick-next {
  right: -45px;
}

/* スマホは内側に収める */
@media (max-width: 767px) {
  .drl-slider .slick-prev {
    left: 0px;
  }

  .drl-slider .slick-next {
    right: 0px;
  }
	.drl-slider .slick-prev, .drl-slider .slick-next{
	top: unset;
    bottom: -10%;
	}
  .drl-card {
    /* または */
    box-shadow: 8px 8px 0px 0px rgb(0 0 0 / 40%);
  }
}

.drl-slider .slick-prev,
.drl-slider .slick-next {
  display: block !important;
}

/* overflowを解除 */
.drl-section .container {
  overflow: visible !important;
}

/* slick-listはそのまま、sliderにpaddingで余白確保 */
.drl-slider {
  padding-bottom: 15px; /* 影の分だけ余白 */
}

/* 影が見えるよう下に余白を追加 */
.drl-card {
  margin-bottom: 15px;
}
/* slickのtrackをflexにする */
.drl-slider .slick-track {
  display: flex !important;
}

/* 各スライドを引き伸ばす */
/*
.drl-slider .slick-slide {
  height: auto !important;
  display: flex !important;
}
*/

/*COMPANY INFORMATION*/
section.company_info_boxs {
    padding: 50px 0px;
}
.company_info_boxs{
	color: #592703;
}
.company-imge-box{
	text-align: center;
}
.company-imge-box img{
	width: 100%;
}
.company-imge-box h3{
	font-size: clamp(18px, 2vw, 24px);
	font-weight: bold;
}
.company-imge-box p{
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 30px;
}

/*STEP&FLOW*/
.stepp_flow_boxs{
	color: #592703;
}
/* STEPカード全体 */
.step-card {
  border: 2px solid #592703;
  border-radius: 12px;
  padding: 32px;
  background: #fff;
/*box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);*/
	margin-bottom: 50px;
	overflow: hidden; /* 画像の角丸をカードに合わせる */
}

/* STEPバッジ（丸いオレンジ） */
.step-badge {
  width: 80px;
  height: 80px;
  background-color: #fe7400;
  border-radius: 50%;
  display: flex;
  flex-direction: row;        /* 横並び */
  align-items: flex-end;      /* ← 下揃え */
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  line-height: 1;
  padding-bottom: 25px;       /* 下すぎる場合は調整 */
}

.step-label {
  font-size: 16px;
  margin-bottom: 2px;         /* ← 微調整したい場合 */
}

.step-number {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
	margin-left: 3px;
}

/* タイトル */
.step-title {
  font-size: clamp(24px, 2vw, 40px);
  font-weight: bold;
	margin-top: 10px;
}

/* 説明文 */
.step-desc {
  font-size: clamp(15px, 1.5vw, 23px);
  color: #592803;
}

/* 画像 */
.step-img {
  object-fit: cover;
/*  aspect-ratio: 4 / 3;*/
  display: block;
}
.step2-img {
    text-align: center;
    padding: 5px;
    box-shadow: 3px 3px 0px 0px rgb(0 0 0 / 40%);
	font-weight: bold;
    font-size: clamp(12px, 1.5vw, 14px);
}

p.step_option {
    text-align: center;
	font-size: clamp(15px, 1.5vw, 23px);
}
.step_op_point {
    text-align: center;
    border-radius: 50px;
    background-color: #fe7400;
    color: #fff;
    margin-top: 20px;
    font-size: 20px;
    position: relative;
	padding: 10px 5px;
}
span.point_ads {
    position: absolute;
    font-size: 20px;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    font-weight: 700;
	text-shadow: 1px 1px 0 #fe7400, -1px -1px 0 #fe7400, -1px 1px 0 #fe7400, 1px -1px 0 #fe7400, 0px 1px 0 #fe7400, 0 -1px 0 #fe7400, -1px 0 0 #fe7400, 1px 0 0 #fe7400;

}
.w-100{
	width: 100%;
}
.step7_text {
    margin-left: 97px;
}
.step7_text p{
	font-size: clamp(15px, 1.5vw, 23px);
	
}
.step7_text ul{
padding-left: 20px;
}
.step7_text ul li{
	list-style: disc;
	font-size: clamp(15px, 1.5vw, 20px);
	line-height: 2;
}
/* 左エリア */
.step-left {
  padding: 0px 32px;
}

/* 右：画像エリア */
.step-right {
  flex-shrink: 0;
  width: 35%; /* 画像の幅。お好みで調整 */
	height: 150px;
}
.last-card{
	padding: 0px!important;
}

.step-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* スマホ：画像を横幅いっぱいに */
@media (max-width: 767px) {
  .step-right {
    width: 100%;
	height: auto;
  }
	.last-card{
	    padding: 32px!important;
}
	.step-left {
margin-bottom: 1.5rem;
	padding: 0px;
}
.step_op_point {
    font-size: 16px;
}
	.step-title{
		font-size: 18px;
	}
.step7_text {
    margin-left: 0px;
}
}

.step-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*お見積もりフォーム*/
.estimate_form_boxs h2,.estimate_form_boxs p{
	color: #592703;
}
/* ===== 無料見積もりフォーム ===== */
.cf7-estimate-form {
  width: 100%;
  border-top: 1px solid #ccc;
}

.cf7-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #ccc;
}

/* ラベル側（左） */
.cf7-label {
  display: flex;
  align-items: center;
justify-content: space-between;
  gap: 12px;
  width: 260px;
  min-width: 260px;
  background: #e8ddd4;
  padding: 20px 16px;
}

.cf7-label-text {
  font-size: 15px;
  color: #592803;
  font-weight: 500;
}

/* 必須バッジ */
.cf7-required {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

/* 任意バッジ */
.cf7-optional {
  display: inline-block;
  background: #999;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

/* フィールド側（右） */
.cf7-field {
  flex: 1;
  background: #f0f0f0;
  padding: 16px;
/*  display: flex;*/
  align-items: center;
}

.cf7-field input[type="text"],
.cf7-field input[type="tel"],
.cf7-field input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 15px;
  border-radius: 2px;
  box-sizing: border-box;
}

.cf7-field textarea {
  width: 100%;
  height: 200px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 15px;
  border-radius: 2px;
  box-sizing: border-box;
  resize: vertical;
}

/* placeholder */
.cf7-field input::placeholder,
.cf7-field textarea::placeholder {
  color: #aaa;
}

/* 送信ボタン */
.cf7-submit {
    text-align: center;
    background: #fff;
    margin-top: 50px;
}

.cf7-submit input[type="submit"] {
  background: #fe7400;
  color: #fff;
  border: none;
  padding: 14px 60px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.cf7-submit input[type="submit"]:hover {
  background: #d96100;
}
.cf7-estimate-form input:focus,
.cf7-estimate-form textarea:focus {
  outline: 2px solid #fe7400; /* 好きな色に変更 */
/*  border: 1px solid #fe7400; */
}

/* ===== スマホ：縦並び ===== */
@media (max-width: 768px) {
  .cf7-row {
    flex-direction: column;
  }

  .cf7-label {
    width: 100%;
    min-width: unset;
    padding: 12px 16px;
  }

  .cf7-field {
    padding: 12px 16px;
  }

  .cf7-field textarea {
    height: 150px;
  }
}

@media (max-width: 890px) {
    body {
        padding-bottom: 0px!important;
    }
}
@media (max-width: 500px) {
    footer {
        margin-bottom: 0px!important;
    }
}

/*スマホ修正*/
@media (max-width: 768px) {
	.hed-pc-phone{
		display: none!important;
	}
	.concept_boxs{
		padding: 50px 0px;
	}
	.taiou-area{
		margin-top: 30px;
	}
	.title-box h2{
		line-height: 1.2;
	}
}

/*TOPに戻るボタン*/
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #fe7400;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 500;
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
/*  background-color: #e06600;*/
}

#scroll-top svg{
	width: 30px;
	height: 30px;
}
@media (max-width: 768px) {
#scroll-top {
    bottom: 70px;
    right: 12px;
}
}
/*SP固定フッターメニュー*/
.sp-fixed-cta {
  display: none;
}


@media (max-width: 767px) {
  .sp-fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  .sp-fixed-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sp-fixed-cta.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  .sp-fixed-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
  }

  /* 電話：オレンジ */
  .sp-fixed-tel {
    background-color: #fe7400;
  }

  /* 来店予約：グリーン */
  .sp-fixed-reserve {
    background-color: #5f8886;
  }

  /* タップ時に少し暗く */
  .sp-fixed-tel:active {
    background-color: #d96200;
  }

  .sp-fixed-reserve:active {
    background-color: #4a6e6c;
  }
	#spFixedCta svg{
	width: 25px!important;
    height: 25px!important;
	margin: 0px 5px 0px 0px!important;
	}
}
