body {
  margin: 0;
  font-family: 'Zen Maru Gothic', sans-serif;

}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.section-mv {
  position: relative;
  background-image: url(../images/mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;  /* ← 画像が読み込めないときの保険 */
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.mv-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-130%, -50%);
  z-index: 2;
  text-align: center;
  color: #000;
  background: rgba(255,255,255,0.8);  /* ←テキスト読みやすく */
  padding: 2rem;
  border-radius: 16px;
  max-width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mv-wrapper img.mv-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.mv-wrapper h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.mv-wrapper h2 {
  color: #007bff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.mv-wrapper p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  background: #007bff;
  color: white;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.mv-wrapper .mv-tel {
    font-size: 2.1rem;
    font-weight: bold;
    color: coral;
    margin-top: 0.5rem;
}

.mv-badge {
  position: absolute;
  top: 76px;
  right: 120px;
  background: #d40000; /* 赤 */
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0.6rem 1rem;
  text-align: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  pointer-events: none; /* クリックを邪魔しない */
}

.mv-badge span {
  font-size: 2.6rem;
  display: block;
  margin-top: 0.2rem;
}

.mv-text {
  flex: 1;
  z-index: 2;
}

.mv-photo {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 5;
}

.mv-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}



.mv-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.mv-text h2 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.mv-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button {
  background: #007bff;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.mv-tel {
  margin-top: 1rem;
  font-weight: bold;
}


.section {
	text-align:center;
}

.plan {
	display: flex;
    justify-content: center;
}

.plan_c {
    width: 26%;
    border: solid 2px #ccc;
    text-align: center;
    margin: 12px;
height: 240px;
}

h2 {
	font-size:40px;
}

h3 {
	font-size:60px;
}
.site-header {
  width: 100%;
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  z-index: 999;
}


.logo img {
  height: 50px;
}

.header-cta {
  display: flex;
  gap: 10px;
}

.cta-button {
  padding: 8px 14px;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.cta-button.line {
  background-color: #06C755;
}

.cta-button.mail {
  background-color: #3498db;
}

.cta-button.phone {
  background-color: #e74c3c;
}

@media screen and (max-width: 768px) {
	.cta-phone {
	font-size: 1.0rem !important;
	}
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
	h2 {
		font-size:26px;
	}
  .header-cta {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .cta-button {
    width: -webkit-fill-available;
    text-align: center;
	font-size: 8px;
  }
	.mv-badge {
    position: absolute;
    top: 50px;
    right: 0;
}
	.step-card {
		width:100% !important;
	}
}

.section-footer {
  background: url(../images/about.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;  /* ←これが必要！ */
}

.section-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* 背景を暗くする */
  z-index: 1;
}

.site-footer {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;   /* ←オーバーレイの上に表示するために追加 */
  z-index: 2;
}


.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info, .footer-contact {
  flex: 1 1 300px;
  min-width: 280px;
}
.footer-info a {
  color: #fff !important;
  text-decoration: none;
}
.footer-info a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-contact p a {
  color: #007aff;
  text-decoration: none;
}

.footer-contact p a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}
.plan-section {
  background-color: #fefaf5;
  text-align: center;
  padding: 3rem 1rem;
}

.plan-title {
  font-size: 2.2rem;
  color: #3498db;
  margin-bottom: 0.5rem;
  font-family: 'Segoe UI', sans-serif;
}

.plan-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.plan-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.plan-card {
  width: 300px;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.plan-label {
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem;
}

.plan-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  color: #000;
  font-weight: bold;
}

.plan-price.green {
  background-color: #a6d77d;
}

.plan-price.yellow {
  background-color: #f6cf4e;
}

.plan-price.pink {
  background-color: #f9b5c2;
}

.plan-tag {
  background: white;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.plan-cost {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .plan-cards {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 90%;
  }
}
.news-section {
  background-color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.news-container {
  max-width: 800px;
  margin: 0 auto;
}

.news-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.news-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2rem;
}

.news-list {
  text-align: left;
  padding: 0 1rem;
}

.news-item {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 1rem;
  font-size: 1rem;
}

.news-date {
  width: 100px;
  color: #007aff;
  font-weight: bold;
}

.news-text {
  flex: 1;
  color: #333;
}

@media screen and (max-width: 768px) {
  .news-item {
    flex-direction: column;
    gap: 0.3rem;
  }

  .news-date {
    width: auto;
  }
}

.other-menu {
  background-color: #eaf6fd;
  padding: 60px 20px;
}

.menu-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.menu-title {
  font-size: 36px;
  font-weight: bold;
  color: #fcb900;
  letter-spacing: 2px;
}

.menu-title span {
  display: block;
  font-size: 14px;
  color: #333;
  margin-top: 4px;
}

.menu-subtext {
  font-size: 15px;
  color: #333;
  margin: 20px 0 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  justify-items: center;
}

.menu-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.menu-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.menu-label {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
}

.menu-num {
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  padding: 8px 12px;
  font-size: 14px;
  margin-right: 10px;
}

.menu-name {
  font-size: 14px;
  font-weight: bold;
  color: #005BAC;
  line-height: 1.4;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem; /* カラム間余白 */
  margin-top: 3rem;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  padding: 2rem;
  border-radius: 8px;
    margin: auto;
}

.footer-links > div {
  min-width: 160px;
}

.footer-links h4 {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

@media(max-width:768px){
  .footer-links { flex-direction: row; align-items: center; }
	.mv-wrapper .mv-tel {
		display:none;
	}
	.mv-text h1 {
    font-size: 1.5rem;
	}
	.mv-text h2 {
    font-size: 1.0rem;
    color: #007bff;
    margin-bottom: 1rem;
}
	.mv-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.6rem;
}
	.cta-buttons {
    display: flex;
    flex-direction: inherit;
    gap: 20px;
    /* min-width: 300px; */
    flex: 1;
    justify-content: center;
    padding: 20px;
}
.header-inner {
    display: grid !important;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
}
    .header-cta {
		background: #fff;
        /* display: none; */
        flex-direction: row;
        width: 100%;
        margin-top: 10px;
        position: fixed;
        bottom: 0;
		left: 0;align-content
		padding-top: 10px;	
	}
.mv-photo {
	display:none;
}
.mv-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #000;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 16px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ハンバーガーアイコン常に表示 */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

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

/* メニュー非表示 → toggleで表示されるように */
.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center; /* 横方向中央 */
  align-items: center;     /* 縦方向中央 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
  text-align: center;
}

.header-nav.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav li {
  margin: 1.5rem 0;
}

.header-nav a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

.close-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}
.blog-section {
  background-color: #f8f8f8;
  padding: 4rem 1rem;
  text-align: center;
}

.blog-container {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}

.blog-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.blog-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-item {
  width: 280px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: left;
}

.blog-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-date {
  font-size: 0.85rem;
  color: #888;
  padding: 0.5rem 1rem 0 1rem;
}

.blog-text {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  padding: 0.3rem 1rem 1rem 1rem;
}

.blog-more {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid #007aff;
  color: #007aff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.blog-more:hover {
  background-color: #007aff;
  color: #fff;
}
.voice-satisfaction-section {
  background: #fffaf4;
  padding: 5rem 1rem;
  text-align: center;
}

.satisfaction-info {
  max-width: 860px;
  margin: 0 auto 4rem;
}

.section-lead {
  font-weight: bold;
  font-size: 1.2rem;
  color: #444;
}

.satisfaction-info h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
}

.emphasis {
  font-size: 3rem;
  color: #ff8800;
  font-weight: bold;
}

.emphasis-orange {
  color: #ff8800;
  font-weight: bold;
}

.section-sub {
  font-size: 1.1rem;
  margin: 1rem 0;
  font-weight: bold;
}

.section-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
}

.voice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.voice-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 300px;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .voice-list {
    flex-direction: column;
    align-items: center;
  }
}
.section-cta {
  background: #e5f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.cta-inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 30px;
}

.cta-text {
  flex: 2;
  min-width: 400px;
}

.cta-title {
  font-size: 2rem;
  font-family: 'Roboto Slab', serif;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
  margin: 10px 0;
}

.cta-subtitle {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 5px;
}

.cta-message {
  font-size: 1rem;
  margin-top: 15px;
}

.cta-phone {
  font-size: 1.2rem;
  margin-top: 20px;
}

.cta-phone .big {
  font-size: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
  flex: 1;
  justify-content: center;
}

.cta-btn {
  background: #fff100;
  padding: 15px 20px;
  font-weight: bold;
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
  color: #333;
  border-radius: 8px;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-btn:hover {
  background: #ffe600;
}



.appeal-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.appeal-title span {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 4px solid #ffd700;
  display: inline-block;
  padding-bottom: 5px;
}

.appeal-subtitle {
  margin-top: 10px;
  font-size: 1rem;
  color: #666;
}

.appeal-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.appeal-card {
  background-color: #e5faff;
  border-radius: 12px;
  width: 200px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
}

.appeal-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.appeal-num {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.appeal-desc {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #333;
}

.appeal-desc strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  color: #000;
}

.section-greeting {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: #fff;
}

.greeting-inner {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  align-items: center;
  flex-wrap: wrap;
}

.greeting-text {
  flex: 1;
  min-width: 300px;
}

.greeting-text h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}

.greeting-text h2 span {
  font-size: 1.5rem;
  color: #333;
}

.greeting-text p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #007aff;
  border-radius: 30px;
  color: #007aff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: #007aff;
  color: #fff;
}

.greeting-image {
  flex: 1;
  min-width: 300px;
}

.greeting-image img {
  width: 100%;
  height: auto;
  display: block;
}
.plan-header, .plan-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 60px 20px;
  z-index: 2;
color: white !important;
}

.plan-header h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
color: white !important;
  z-index: 2;
}
.plan-header h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
color: white !important;
  z-index: 2;
}
.plan-header p {
  color: #666;
  font-size: 1.1rem;
}

.plan-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.plan-content p,
.plan-content ul {
  font-size: 1rem;
  color: #333;
}

.plan-content ul {
  list-style: disc;
  text-align: left;
  margin-top: 1rem;
  padding-left: 2rem;
}
/* プランページ */
.section-plan-title .plan-header h2,
.section-plan-title .plan-header h3 {
  color: white !important;
}

.section-plan-title {
  background-image: url('../images/s_plan.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white; /* 親に白指定 */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-plan-title::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}

.section-plan-saving {
  background-image: url('../images/s_plan1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-plan-saving::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* ←暗めにして文字読みやすく */
  z-index: 1;
}

.section-plan-family {
  background-image: url('../images/s_plan2.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section-plan-family::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* ←暗めにして文字読みやすく */
  z-index: 1;
}
.section-plan-marugoto {
  background-image: url('../images/s_plan3.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section-plan-marugoto::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* ←暗めにして文字読みやすく */
  z-index: 1;
}
.plan-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem;
}

.plan-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.plan-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.plan-description {
  background-color: rgba(0, 0, 0, 0.15);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.section-flow-intro,
.section-flow-detail {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-flow-intro h2,
.section-flow-detail h2 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 1rem;
}
.section-flow {
  position: relative;
}
.flow-list {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  padding: 0;
  list-style: none;
}

.flow-list li {
  margin-bottom: 1.5rem;
}
.slide-nav-bottom {
  position: absolute; /* ← fixed から変更 */
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  gap: 30px;
}

.slide-nav-bottom div {
  background: #007BFF;
  color: white;
  padding: 14px 20px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.slide-nav-bottom div:hover {
  background: #0056b3;
  transform: scale(1.1);
}


.slide {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* オーバーレイ */
.slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* ←ここで暗くしてる */
  z-index: 1;
}

.slide-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* スライドごとの背景画像 */
.step_intro { background-image: url('../images/step_c_i.jpg'); }
.step1 { background-image: url('../images/step1.jpg'); }
.step2 { background-image: url('../images/step2.jpg'); }
.step3 { background-image: url('../images/step3.jpg'); }
.step4 { background-image: url('../images/step4.jpg'); }
.step5 { background-image: url('../images/step5.jpg'); }
.step6 { background-image: url('../images/step6.jpg'); }


.section-steps {
  text-align: center;
  padding: 4rem 2rem;
}

.steps-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #007bff;
  font-weight: bold;
}

.step-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step-card {
  width: 176px;
  background: #eaf9ff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  padding-bottom: 1rem;
}

.step-card img {
  width: 100%;
  height: auto;
}

.step-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffc107;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
}

.step-lead {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.8rem 0 0.4rem;
}

.step-desc {
  font-size: 0.95rem;
  padding: 0 1rem;
}
