:root {
  --main-color: #ff9800;
  --accent-color: #0288d1;
  --text-color: #333;
  --bg-color: #fffdf7;
  --highlight: #e53935;
  --button-grad-start: #ff9800;
  --button-grad-end: #fb8c00;
  --button-hover-start: #fb8c00;
  --button-hover-end: #f57c00;
}


/* 基本設定 */
body {
  margin: 0;
  font-family: 'Arial Rounded MT Bold', 'Baloo 2', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 20px;
}

section h2 {
  font-size: 1.8em;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  color: var(--text-color);
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--main-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--button-grad-start), var(--button-grad-end));
  color: white;
  padding: 12px 30px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--button-hover-start), var(--button-hover-end));
  transform: translateY(-2px);
}

.product-cta {
  padding-top: 40px;
  text-align: center;     /*追加　by sunahara*/
}

/* ヘッダー */
.lp-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.sub-header-inner {
  /*　追加　2025/06/04 by sunahara*/
  display: flex;
}

.logo img {
  height: 50px;
}

.tell img {
  /*　追加　2025/06/02 by sunahara*/
  height: 50px;
  /* margin-left:2em;*/
}

.tell-resp {
  /*　追加　2025/06/04 by sunahara*/
  display: none;
}

.lp-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.lp-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.3s;
}

.lp-nav a:hover {
  background-color: #f1f1f1;
}

/* ヒーロー */
.lp-hero {
  background-color: #fff8e1;
  /*text-align: center;*/
  /*position: relative; /*追加　suna*/
  
}

.lp-hero .hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.lp-hero .hero-text p {
  font-size: 1.4em;
  color: #666;
  margin-bottom: 30px;
}

.hero-text span,.feature-copy span{    /*追加　2025/06/23 by sunahara*/
  color: #323232;
  background: linear-gradient(transparent 70%,#33dec7 50%);
  font-weight: bold;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-container img{
  width: 100%;  /*追加　2025/06/18 by sunahara*/
  position: relative;   /*追加　2025/07/21 by sunahara*/
}

.pickup-item img,
/*追加　2025/05/28 by sunahara*/
.product-item img,
.result-card img {
  width: auto;
  height: 170px;
}

.lp-hero-inner{   /*追加　2025/06/23 by sunahara*/
  display: flex;  
  position: relative;
  max-width: 1080px;
  min-height: 350px;
  margin: 0 auto;
}

.hero-img img{     /*追加　2025/06/23 by sunahara*/
  position: absolute;
  bottom: -60px;
  right: 0;
  max-height: 430px;
}
/* スマホ対応 */
@media screen and (max-width: 768px) {
  .lp-hero .hero-text h1 {
    text-align: left;
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  .lp-hero .hero-text p {
    text-align: left;
    font-size: 0.95em;
    color: #666;
    margin-bottom: 30px;
  }
  .lp-hero-inner{
    display: block;
  }
  .lp-hero img{
    position: static;
    max-height: 250px;
  }
}


/* キャンペーン */
.lp-campaign-banner {
  background: linear-gradient(to right, #ffecb3, #ffe082);
  padding: 30px 20px;
  text-align: center;
}

.campaign-text {
  font-size: 1.3em;
  color: #bf360c;
  font-weight: bold;
}

/* 買取対象エアコンセクション */
.lp-target .target-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.lp-target .target-item {
  display: flex;
  width: calc(50% - 10px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  padding: 10px;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  transition: transform 0.3s, box-shadow 0.3s;
}

.lp-target .target-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.lp-target .target-image img {
  width: auto;      /*90px->auto　変更　suna*/
  height: 150px;     /*auto->150px　変更　suna*/
  border-radius: 6px;
}

.lp-target .target-content h3 {
  margin: 0 0 6px;
  font-size: 1.4em;     /*1.1->1.4em　変更　suna*/
  color: #ff9800;
}

.lp-target .target-content p {
  margin: 0;
  font-size: 1.1em;    /*0.95->1.1em　変更　suna*/
  color: #555;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .lp-target .target-item {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .lp-target .target-image img {
    margin-bottom: 10px;
  }

  .lp-target .target-content {
    text-align: center;
  }
}



.tablepress {
  width: 100%;
  background-color: #fffefc;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Arial Rounded MT Bold', 'Baloo 2', sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.tablepress thead th {
  background-color: #4fc3f7;
  color: #fff;
  font-weight: bold;
  padding: 14px;
  text-align: center;
  font-size: 1em;
  border: none;
}

.tablepress tbody td {
  padding: 14px;
  text-align: center;
  font-size: 0.95em;
  border-bottom: 1px solid #eee;
  color: #444;
}

.tablepress tbody tr:hover {
  background-color: #fff9e6;
  transition: background 0.3s ease;
  border-left: 4px solid var(--main-color);
}

.dt-search input {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 0.95em;
  margin-left: 10px;
  background-color: #fff;
}

.dt-paging a {
  background-color: #fff0db;
  padding: 6px 14px;
  margin: 0 4px;
  border-radius: 20px;
  text-decoration: none;
  color: #fb8c00;
  font-weight: bold;
  border: 1px solid #ffe0b2;
  font-size: 0.9em;
}

.dt-paging a.current,
.dt-paging a:hover {
  background-color: #ffb74d;
  color: #fff;
  border-color: #ffa726;
}

/* 特徴 */
.lp-feature {
  text-align: center;
  background: #fff;
}

.lp-feature .label {
  color: var(--highlight);
  font-size: 1.2em;
}

.feature-image img {
  margin: 20px auto;
  display: block;
  /*追加 2026/06/10 by sunahara*/
  max-width: 880px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
}

.feature-copy {
  /*font-weight: bold;*/
  line-height: 1.8;
  font-size: 1.1em;
  margin: 30px auto;
  text-align: left;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;    /*20->50px 変更　2026/06/17 by sunahara*/
  /*margin-top: 30px;*/ /*コメント化　2026/06/17 by sunahara*/
  margin: 60px 0;    /*追加　2026/06/17 by sunahara*/
}

.badge {
  color: #fff;
  border-radius: 50%;
  width: 230px;     /*width&height 130px->230px 変更　2026/06/17by sunahara*/
  height: 230px;
  font-weight: bold;
  font-size: 1.6em;   /*0.9->1.6em 変更　2026/06/17by sunahara*/
  line-height: 1.5;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge1 {
  background-color: #0288d1;
  position: relative;   /*追加　2025/06/24 by sunahara*/
}

.badge1::before {     /*追加　2025/06/24 by sunahara*/
  content: '';
  display: block;
  width: 170px;
  height: 80px;
  background:url(/consumer/wp-content/themes/twentytwentythree-child/images/lp-reason01.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -8%;
  left: 30%;
}

.badge2 {
  background-color: #1565c0;
  position: relative;   /*追加　2025/06/24 by sunahara*/
}

.badge2::before {     /*追加　2025/06/24 by sunahara*/
  content: '';
  display: block;
  width: 170px;
  height: 80px;
  background:url(/consumer/wp-content/themes/twentytwentythree-child/images/lp-reason02.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -8%;
  left: 30%;
}

.badge3 {
  background-color: #26a69a;
  position: relative;   /*追加　2025/06/24 by sunahara*/
}

.badge3::before {     /*追加　2025/06/24 by sunahara*/
  content: '';
  display: block;
  width: 170px;
  height: 80px;
  background:url(/consumer/wp-content/themes/twentytwentythree-child/images/lp-reason03.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -8%;
  left: 30%;
}

.feature-des {   /*追加　2025/06/25 by sunahara*/
 display: flex;
 margin-bottom: -60px;
}

.feature-des img {
  width: 100%;
  flex-basis: 30%; 
}

.feature-des .feature-copy{
  flex-basis: 70%;
}


/* 買取強化品 */
.lp-pickup,
.lp-products,
.lp-results,
.lp-flow,
.lp-line,
.lp-faq,
.lp-contact {
  text-align: center;
}

.pickup-list,
.product-list,
.results-grid,
.flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pickup-item,
.product-item,
.result-card,
.flow-step {
  width: 260px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* 出張買取の流れ */
.flow-step .step-number {
  font-size: 1em;
  color: #00acc1;
  font-weight: bold;
}

.flow-step .step-title {
  font-size: 1.2em;
  margin: 10px 0;
}

.flow-step .step-img img {
  width: 100%;
}

/* LINE査定 */
/* LINEらしいボタン */
.line-btn {
  display: inline-block;
  background-color: #00c300;
  color: white;
  font-weight: bold;
  padding: 14px 28px;
  font-size: 1em;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.line-btn:hover {
  background-color: #00a000;
  transform: translateY(-2px);
}

.line-btn i {
  margin-right: 8px;
}


/* FAQ */
.faq-box {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 10px solid #00bfa5;
  overflow: hidden;
}

.faq-q {
  padding: 20px;
  background: #e0f7fa;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq-box.active .faq-q::after {
  content: "-";
}

.faq-a {
  display: none;
  padding: 20px;
  border-top: 1px solid #b2dfdb;
}

/* お問い合わせボタン（既存のCTAスタイル） */
.cta-button.contact {
  background: linear-gradient(135deg, var(--button-grad-start), var(--button-grad-end));
}

.cta-button.contact:hover {
  background: linear-gradient(135deg, var(--button-hover-start), var(--button-hover-end));
  transform: translateY(-2px);
}

.contact-text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

/* フッター */
.lp-footer {
  background: #00838f;
  color: white;
  padding: 30px 20px;
  text-align: center;
}


/* レスポンシブ */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  .lp-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .pickup-item,
  .product-item,
  .result-card,
  .flow-step {
    width: 100%;
    max-width: 320px;
  }

  .tell {       /*追加　2025/06/02 by sunahara*/
    display: none;
  }

  .feature-des {  /*追加　2025/06/25 by sunahara*/
    display: block;
  }

}

/* ハンバーガーメニュー */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  background-color: #000;
  height: 5px;
  /*3 ->5px 変更　2026/06/09 by sunahara*/
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.4s;
}

.lp-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* バツ印（×）のスタイル 追加　2026/06/09 by sunahara*/
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: #333;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #333;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .lp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .lp-nav.active {
    right: 0;
    background-color: #fff8e1;
  }

  .lp-nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .lp-header {
    flex-wrap: wrap;
  }

  .tell-resp {
    /*追加　2025/06/04 by sunahara*/
    display: block;
  }

  .tell-resp img {
    /*　追加　2025/06/02 by sunahara*/
    width: 90%;
  }

}

/*背景 追加　2026/06/17 by sunahara*/
.lp-estimate{
 /*background-color: #dafafc;*/
 background-image: url(/consumer/wp-content/themes/twentytwentythree-child/images/lp-sateibg02.png);
 background-size: cover;
 background-position: center;
 margin: -0.8em auto 0;
 padding: 2em;
}
.lp-hero{
  background-image: url(/consumer/wp-content/themes/twentytwentythree-child/images/lp-bg05.png);
  min-height:350px; 
}
.lp-pickup{
  background-image: url(/consumer/wp-content/themes/twentytwentythree-child/images/lp-bg08.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lp-feature{
  background-image: url(/consumer/wp-content/themes/twentytwentythree-child/images/lp-bg25.png);
  background-size: cover;
}
.lp-target{
  background: #dafafc;
}
.lp-results{
  background-image: url(/consumer/wp-content/themes/twentytwentythree-child/images/lp-bg16.png);
  background-size: cover;
}
.lp-line,.lp-contact{
  background: #effdfe;
}

/*査定フォーム 追加　2026/07/19 by sunahara*/
.estimate-form{
  width: 650px;
  margin: 0 auto;
  padding: 50px;
  background-color: #d4f9fc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 480px) {
  .lp-estimate {
    padding: 1em;
  }
  .estimate-form{
    width: 330px;
    margin: 0 auto;
    padding: 5px;
  }
}