/* ========================
   基本リセット & フォント設定
   ======================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    font-family: 'Playfair Display', serif;
    background-color: #F8F9FA;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
  }


  @media screen and (max-width: 768px){
    .pc {display: none; }
    }
  @media screen and (min-width: 768px){
    .sp {display: none; }
    }

 
  
  /* Google Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;500;700&display=swap');
  
  /* コンテナ */
  .container {
    /*width: 90%;*/
    /*max-width: 1200px;*/
    margin: 0 auto;
  }
  
  /* ========================
     ヘッダー
     ======================== */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* デフォルトは透明 */
    background: transparent;
    box-shadow: none;
    padding: 15px 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin: 0 25px 0;
  }
  
  .logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
  }
  
  /* ナビゲーション */
 nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }

nav ul.open {
  display: flex;
}


  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #ff8989;
  }
  
  /* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
}

  /* PC版：スクロール時にヘッダー背景を付与 */
  @media (min-width: 769px) {
    header.scrolled {
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    }
  }
  
  /* 
  @media (max-width: 768px) {
    
    .hamburger {
      display: flex;
	 
    }
    
    nav ul {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: #fff;
      width: 100%;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	 
    }
    nav ul.open {
      display: flex;
    }*/
	  
	@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    width: 100%;
    padding: 20px;
    z-index: 1000;
  }

  nav ul.open {
    display: flex !important;
  }
}

	  
	  
    /* モバイルではヘッダー背景・シャドウは常に透明 */
    header,
    header.scrolled {
      background: transparent !important;
      box-shadow: none !important;
    }
    /* 課題提起セクション：一列表示 */
    .challenge-list {
      flex-direction: column;
      align-items: center;
    }
  }



/* ========================
   🏆 見出しデザイン（改善版）
   ======================== */
   h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    text-align: center;
    color: #f1eaea;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  
  
  h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
  }
  
  h2::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ff8989, #E15A28);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
  }
  
  h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff8989;
    text-align: left;
    position: relative;
    padding-left: 30px;
}

h3::before {
    content: "▶";
    font-size: 1.5rem;
    color: #E15A28;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}



  
  /* ========================
     ファーストビュー（ヒーローセクション）
     ======================== */
  .hero {
    background: url('img/top1.png') center/cover no-repeat;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 0 20px;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .hero h1,
  .hero p,
  .hero .cta-button,
  .hero .cta-secondary {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    max-width: 800px;
    text-align: center;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5), -2px -2px 10px rgba(0, 91, 187, 0.3);
  }
  
  .hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* 🔥 水平方向の中央揃え */
    justify-content: center; /* 🔥 垂直方向の中央揃え */
    text-align: center; /* 🔥 内部のテキストを中央揃え */
    height: 100%;
}
  
  /* CTAボタン */
  .cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: #F36C21;
    border: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.cta-button::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0.3s ease-in-out;
}

.cta-button:hover::after {
    left: 100%;
}

  
  /* ========================
   📌 課題提起セクション（修正）
   ======================== */
.challenges {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.challenge-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.challenge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.challenge-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.challenge-item h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #ff8989;
}

.challenge-item p {
  font-size: 1.1rem;
  color: #555;
}

/* ========================
   📱 モバイル対応（1列表示 + アイコン → h3 → p）
   ======================== */
@media screen and (max-width: 768px) {
  .challenge-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .challenge-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .challenge-item img {
    width: 50px;
    height: 50px;
  }

  .challenge-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .challenge-item p {
    font-size: 1rem;
  }
}







/* ========================
   なぜU+が選ばれるのか？（差別化を明確にするデザイン）
   ======================== */
   .why-choose {
    background: #FFF5E1;
    padding: 100px 0;
    text-align: center;
}

.section-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.comparison-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.comparison-box {
    width: 100%;
    max-width: 600px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.comparison-box.general {
    background: #f3f3f3;
    color: #555;
}

.comparison-box.uplus {
    background: #594e52;
    color: white;
    font-weight: bold;
}

.comparison-arrow {
    font-size: 2rem;
    color: #E15A28;
    font-weight: bold;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-box:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
    .comparison-box {
        max-width: 90%;
    }
}




/* ========================
     士業の未来セクション
     ======================== */
.update-future {
  background: #f9f9f9;
  padding: 100px 0;
  text-align: center;
}

.section-description {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  /*margin: 0 auto 30px;*/
  line-height: 1.6;
  padding: 20px 15px 20px;
}

.vision-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.vision-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.vision-box {
  flex: 1;
  position: relative;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  font-size: 1.2rem;
  background-size: cover;
  background-position: center;
  color: white;
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.vision-content {
  position: relative;
  z-index: 2;
  padding: 15px;
}

.vision-content h3 {
  color: #FFD3B6;
  font-size: 1.4rem;
  font-weight: bold;
}

.vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background: #FF758F;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background: #FF5C7B;
}

@media screen and (max-width: 768px) {
  .vision-row {
      flex-direction: column;
      gap: 15px;
  }

  .vision-box {
      max-width: 90%;
      margin: 0 auto;
  }
	.section-description{
		font-size:1rem;
	}
}





/* ========================
   📌 士業向けWebサポート
   ======================== */
   .web-support {
    background: #FFF5E1;
    padding: 80px 0;
    text-align: center;
}

.web-support h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* 3つの強みのリスト */
.support-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.support-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin: 0 20px 0;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
}

/* アイコン */
.support-icon {
    font-size: 2.5rem;
    color: #F36C21;
    margin-bottom: 10px;
}

.support-item h3 {
    font-size: 1.2rem;
    color: #E15A28;
    margin-bottom: 10px;
}

.support-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* 📌 対象士業ラベル */
.support-targets {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  text-align: left; /* 文章の揃え */
}

.target-item {
  background: #F36C21;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 55%; /* 幅を統一 */
  max-width: 600px; /* 最大幅を設定 */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-item:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* ✅マークの位置を揃える */
.checkmark {
  flex-shrink: 0;
  margin-right: 10px;
  font-size: 1.2rem;
}


/* 📱 モバイル対応 */
@media screen and (max-width: 768px) {
    .support-list {
        grid-template-columns: 1fr;
    }
    
    
    .web-support h2 {
        font-size: 1.5rem;
    }
    
    .target-item {
      width: 90%;
      padding: 12px 20px;
      font-size: 1rem;
  }

  .checkmark {
      font-size: 1.1rem;
      margin-right: 8px;
  }
}




  
  /*
  .services {
    background: #ffffff;
    text-align: center;
    padding: 80px 0;
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .service-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .service-item {
    background: #f1f1f1;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
  }
  
  .service-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .service-item p {
    font-size: 1.1rem;
  }
  
  
.case-studies {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.success-points {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.point-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 40px;
}

.point-item.reverse {
  flex-direction: row-reverse;
}

.point-text {
  flex: 1;
}

.point-text h3 {
  font-size: 1.8rem;
  color: #ff8989;
  margin-bottom: 10px;
}

.point-text p {
  font-size: 1.2rem;
  color: #555;
}

.point-image {
  flex: 1;
  text-align: center;
}

.point-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}


@media screen and (max-width: 768px) {
  .success-points {
    gap: 40px;
  }

  .point-item, .point-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .point-text {
    order: 2;
  }

  .point-image {
    order: 1;
  }

  .point-text h3 {
    font-size: 1.6rem;
  }

  .point-text p {
    font-size: 1rem;
  }

  .point-image img {
    max-width: 90%;
  }
}
*/


/* ========================
   🎯 士業向けWeb集客の成功ポイント
   ======================== */
   .case-studies {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
  }
  
  .success-strategy {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .strategy-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
  }
  
  .strategy-item.reverse {
    flex-direction: row-reverse;
  }
  
  /* h3 + 画像のブロック */
  .strategy-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* p のみのブロック */
  .strategy-text.only-text {
    justify-content: center;
    text-align: left;
  }
  
  /* 見出し */
  .strategy-text h3 {
    font-size: 1.8rem;
    color: #ff8989;
    margin-bottom: 15px;
    margin-top: 20px;
  }
  
  /* 説明文 */
  .strategy-text p {
    font-size: 1.2rem;
    color: #555;
    max-width: 450px;
    margin: 0 auto;
  }
  
  /* 画像 */
  .strategy-image {
    width: 100%;
    max-width: 350px;
    margin-top: 15px;
  }
  
  .strategy-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* ========================
     📱 モバイル対応
     ======================== */
  @media screen and (max-width: 768px) {
    .success-strategy {
      gap: 40px;
    }
  
    .strategy-item, .strategy-item.reverse {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .strategy-text {
      order: 2;
      text-align: center;
    }
  
    .strategy-image {
      order: 1;
    }
  
    .strategy-text h3 {
      font-size: 1.2rem;
		margin: 0 20px 0;
    }
  
    .strategy-text p {
      font-size: 1rem;
      max-width: 90%;
      text-align: center;
    }
  
    .strategy-image img {
      max-width: 90%;
    }
  }





/* ========================
   📌 申し込み〜運用開始のプロセス
   ======================== */
   .process {
    background: #FFF5E1;
    padding: 80px 0;
    text-align: center;
}

.process h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.process-description {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 40px auto 40px;
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
}

.step-header {
    background: #F36C21;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 1.2rem;
    color: #E15A28;
    margin-bottom: 10px;
}

.step p {
    font-size: 1rem;
    color: #555;
}

.process-call-to-action {
    margin-top: 30px;
}

.process-call-to-action p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* CTAボタン */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: #E15A28;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background: #C04D1F;
}

/* 📱 モバイル対応 */
@media screen and (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        text-align: center;
		margin: 0 20px 0;
    }
    
    .process h2 {
        font-size: 1.5rem;
    }
    
    .process-description {
        font-size: 1rem;
		margin: 0 20px 30px;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 10px 25px;
    }
}



  
  
  
  
  /* =====================
   📌 料金プランセクション
   ===================== */
.pricing-section {
  background: #fdf8f4;
  padding: 80px 0;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.pricing-description {
  font-size: 1rem;
  color: #555;
  margin: 40px;
}

/* 💡 テーブルを横スクロール対応 */
.table-wrap {
  width: 100%;
  overflow-x: auto; /* ✅ 横スクロールを適用 */
  display: block;
  -webkit-overflow-scrolling: touch; /* ✅ iOS対応 */
  padding-bottom: 10px;
}

/* 📌 料金表のデザイン */
.pricing-table {
  width: 100%;
  min-width: 800px; /* ✅ スマホ時に横スクロールを強制 */
  border-collapse: collapse;
  white-space: nowrap; /* ✅ 横スクロール時に改行を防ぐ */
}

.pricing-table th, 
.pricing-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: center;
	font-size: 1rem!important;
}

/* 📌 ヘッダー */
.pricing-table thead {
  background: #fafafa;
  font-weight: bold;
}

/* 📌 交互の背景色 */
.pricing-table tbody tr:nth-child(odd) {
  background: #f9f9f9;
}

/* 📌 通常価格（打ち消し線） */
.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1rem;
}

/* 📢 キャンペーン情報 */
.pricing-campaign {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(to right, #ffecd2, #fcb69f);  /* 柔らかいオレンジ系グラデーション */
  color: #333;  /* 柔らかい背景に合わせて文字色をダークグレーに */
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);  /* 影を少し薄くして柔らかく */
  display: inline-block;
  width: 80%;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}

.pricing-campaign .highlight {
  color: #E15A28;
  font-weight: bold;
  
}

/* 📱 モバイル対応 */
@media screen and (max-width: 768px) {
  .table-wrap {
      width: 100%;
      overflow-x: auto; /* ✅ スクロール確実に適用 */
  }
	.pricing-section h2 {
		font-size:1.5rem;
	}

  .pricing-table {
      font-size: 0.9rem;
  }

  .pricing-table th, .pricing-table td {
      padding: 10px;
	  font-size: 14px;
  }

  .pricing-campaign {
      font-size: 1rem;
      padding: 15px;
  }
	.pricing-table td:nth-child(4),  /* 内容列のみ対象 */
  .pricing-table th:nth-child(4) {
    text-align: left;             /* 左寄せにして読みやすく */
    word-break: break-word;       /* 長文の折り返しを許可 */
  }
}




 /* ========================
     代表者セクション
     ======================== */
     .representative-section {
      background: #FFF5E1;
      padding: 100px 0;
      text-align: center;
  }
  
  .representative-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
      flex-wrap: wrap;
  }
  
  .representative-photo {
      flex: 1;
      max-width: 300px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .representative-photo img {
      width: 100%;
      height: auto;
      border-radius: 50%;
  }
  
  .representative-text {
      flex: 2;
      text-align: left;
      font-size: 1.2rem;
      line-height: 1.6;
  }
  
  .representative-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
  }
  
  .representative-list li {
      font-size: 1.2rem;
      font-weight: bold;
      color: #D94F70;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
  }
  
  .list-marker {
      font-size: 1.5rem;
      color: #E15A28;
      margin-right: 10px;
  }
  
  
  
  @media screen and (max-width: 768px) {
      .representative-content {
          flex-direction: column;
          text-align: center;
      }
      .representative-photo {
          max-width: 200px;
      }
      .representative-text {
          text-align: center;
      }
      .representative-list li {
          font-size: 1rem;
		  margin: 0 20px 0;
      }
  }





  
  /* ========================
     お問い合わせセクション
     ======================== */
  .contact {
    background: #f8f9fa;
    /*padding: 80px 0;*/
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .contact-form {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin: 30px 30px;
  }
  
  .contact-info ul {
    list-style: none;
    font-size: 1.1rem;
  }
  
  .faq {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
  }
  
  
  
  .faq-item {
    margin-bottom: 20px;
  }
  
  .faq-item .question {
    font-weight: bold;
    font-size: 1rem;
  }
  
  .faq-item .answer {
    margin-top: 5px;
    font-size: 1rem;
  }

 @media screen and (max-width: 768px) {
 .contact h2 {
	 font-size:1.5rem;
	 }
}
  
  /* ========================
     フッター
     ======================== */
  footer {
    background: linear-gradient(135deg, #D87C45, #B65E31);
    color: #FAF3E0;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
  }
  
  footer .footer-nav ul {
    list-style: none;
   
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  
  footer .footer-nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer .footer-nav ul li a:hover {
    color: #FFFFFF;
  }
  
  .social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  .legal-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 0.9rem;
  }
  

   /* ========================
   📱 モバイル対応
   ======================== */
   @media screen and (max-width: 768px) {
  /* モバイル版のフォントサイズ調整 */
  .hero h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.4rem;
	  margin: 0 20px 55px;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
	  margin: 0 20px 0;
  }

  
}



/* ========================
   📌 ロード時のロゴフェードイン・フェードアウト
======================== */

/* ロゴを表示する白い背景 */
.hero-logo-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF; /* 白背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  animation: fadeOut 1.5s ease 2.5s forwards;
}

/* ロゴ画像 */
.hero-logo img {
  width: 150px;
  height: auto;
  opacity: 0;
  animation: fadeInLogo 1.5s ease 0.5s forwards, fadeOutLogo 1.5s ease 2.5s forwards;
}

/* ロゴフェードイン */
@keyframes fadeInLogo {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ロゴフェードアウト */
@keyframes fadeOutLogo {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* 背景を徐々に見せる */
@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* ========================
 📌 ヒーローセクションのアニメーション
======================== */
.hero {
  position: relative;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  padding: 0 20px;
  overflow: hidden;
}

/* グラデーション背景 */
.hero-gradient-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F4EDE4, #ff8989);
  transform: translateY(100%);
  z-index: 1;
}

/* メイン画像 */
.hero-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
}

/* ヒーローコンテンツ */
.hero-content {
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: fadeInContent 1s ease 3s forwards;
}

.hero-content h1, 
.hero-content p, 
.hero-content .cta-button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInContent 1s ease 4s forwards;
}





/* 📌 Webマーケティング成功ガイド バナー */
.web-marketing-banner {
  background: linear-gradient(135deg, #FFD3B6, #FF758F); /* 🔥 グラデーション背景 */
  color: white;
  text-align: center;
  padding: 50px 20px;
  border-radius: 15px;
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.15);
  margin: 60px auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.web-marketing-banner::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.web-marketing-banner h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.web-marketing-banner p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.banner-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background: #FF5C7B;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}

.banner-button:hover {
  background: #E14A6D;
}

/* 📱 モバイル対応 */
@media screen and (max-width: 768px) {
  .web-marketing-banner {
      padding: 40px 15px;
      max-width: 340px;
  }

  .web-marketing-banner h2 {
      font-size: 1.4rem;
  }

  .web-marketing-banner p {
      font-size: 1rem;
  }

  .banner-button {
      font-size: 1rem;
      padding: 10px 25px;
  }
}





.why-upra{
	background: #FFF5E1;
    padding: 80px 0;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
}

.feature-text {
  max-width: 500px;
  padding: 20px;
}

.feature-text .point-number {
  color: #f5a100;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.feature-text h3 {
  color: #ff8989;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.feature-text .desc {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.feature-image img{
	width:360px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .feature-row, .feature-row.reverse {
    flex-direction: column;
  }

  .feature-image, .feature-text {
    max-width: 100%;
  }
.feature-text {
	font-size:1rem;
	}

  .feature-image {
    margin-bottom: 20px;
  }
	
	.feature-image img{
	width:320px;
}
	.feature-text .desc {
		font-size:1rem;
	}
}


/* --- お知らせリスト --- */
ul.yupura-news-list { margin:0; padding:0; list-style:none; 
width: fit-content;
    margin: auto;}
@media (max-width: 768px) {
	ul.yupura-news-list {max-width: 360px;}}


ul.yupura-news-list li { display:flex; align-items:flex-start; gap:16px; padding:16px 0; }
ul.yupura-news-list li:last-child { border-bottom:none; }
.news-date   { width:120px; flex-shrink:0; font-weight:600; color:#555; }
.news-chip   { display:inline-block; padding:2px 12px; font-size:.85rem; border-radius:24px; white-space:nowrap; }

/* タグ別の色分け */
.chip-exhibition { color:#2e8b57; background:#e6f4ed; border:1px solid #2e8b57; }
.chip-holiday    { color:#004085; background:#e8f3ff; border:1px solid #004085; }
.chip-info       { color:#7b002c; background:#fff0f4; border:1px solid #7b002c; }

.news-title { color:#222; text-decoration:none; line-height:1.4; }
.news-title:hover { text-decoration:underline; }

/* ── 投稿ページ専用 ───────────────────── */
.entry-single {
  max-width: 780px;      /* 読みやすい横幅に中央寄せ */
  margin: 0 auto;
  padding: 0 1rem;
}

.single-header {
  text-align: left;      /* お好みで center に */
  padding: 96px 0 40px;  /* ↑: ヘッダーやナビ分の余白 / ↓: タイトル下余白 */
  position: relative;
}

.entry-label {           /* news チップ */
  display:inline-block;
  margin-bottom:12px;
  padding:2px 14px;
  font-size:.85rem;
  border-radius:20px;
  color:#7b002c;
  background:#fff0f4;
  border:1px solid currentColor;
}

.entry-title {
  font-size:1.6rem; 
  line-height:1.4;
  margin:0 0 12px;
}

.entry-date {
  font-size:.9rem;
  color:#666;
}

/* footer のカテゴリリンクが不要なら非表示に */
.entry-footer .cat-links { display:none; }
/* ———————————————————————————————— */

/* 768px 未満（スマホ想定）ではタイトルの追従をオフにする */
@media (max-width: 767px) {
  /* ─ 記事詳細ページ ─ */
  .single-header,
  .entry-header {
    position: static !important;   /* sticky / fixed を無効化 */
    top: auto !important;
  }

  /* ─ ブログ一覧ページで見出しが追従する場合はこちらも ─ */
  .blog-index .page-title,
  .blog-index .entry-header {
    position: static !important;
    top: auto !important;
  }
}


@media screen and (min-width: 768px) {
	p{
		font-size:18px;
	}
	
}

padd{
		padding:20px;
	}