/* ヘッダー */
.header {
  background: #fff;
  border-bottom: 1px solid var(--sub-color);
}

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

/* ロゴ */
.logo-img {
  width: 180px;
  height: auto;
  display: block;
}

/* ナビ */
.nav {
  display: none;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
}

/* ログインボタン */
.login-btn {
  background: #3e3a3a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* キャンペーンバー */
.campaign-bar {
  background: #3e3a3a;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: bold;
}

.campaign-bar a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

/* PC表示 */
@media (min-width: 768px) {
  .nav {
    display: block;
  }
}

/* フッター */


.footer {
  background: #3e3a3a;
  color: #fff;
  padding: 50px 20px 20px;
}

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

.footer-logo h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-row a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  text-align: center;
}

.footer-copy p {
  font-size: 12px;
  color: #ccc;
}

.footer-logo-img {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

.hero {
  position: relative;
}

.hero img {
  width: 100%;
  display: block;
}

/* ハンバーガー */

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  .header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: #3e3a3a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
  }

  .logo {
    flex: 1;
  }

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 15px 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    z-index: 9999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #3e3a3a;
  }

  .nav a:last-child {
    border-bottom: none;
  }
}
/* ----------------基本CSS -----------------------------------*/





/* CTAエリア */
.cta-area {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.btn {
  width: 200px;
  text-align: center;
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
}

/* 申し込み */
.btn-main {
  background: #ff6b6b;
  color: #fff;
}

/* LINE */
.btn-line {
  background: #00c300;
  color: #fff;
}

/* 実績 */
.bridal {
  padding: 40px 20px;
  background: #f8f8f8;
  text-align: center;
}

.bridal h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.bridal h1 {
  font-size: 40px;
  margin-bottom: 20px;
}


.bridal p {
  font-size: 14px;
  line-height: 1.8;
}

.bridal-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.bridal-item {
  text-align: center;
}

.bridal-item img {
  width: 255px;
  height: 255px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bridal-item p {
  margin-top: 8px;
  font-size: 13px;
  color: #3e3a3a;
}

@media (max-width: 768px) {
  .bridal-images {
    flex-direction: column;
    align-items: center;
  }
}

/* 選ばれる理由 */

.reason {
  padding: 40px 20px;
  text-align: center;
}


/* PC表示：横並び */
.reason-list {
  display: flex;
  justify-content: center;   /* 中央寄せ */
  gap: 20px;
  flex-wrap: wrap;
}

/* 画像 */
.reason-img {
  width: 273px;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* スマホ表示：縦並び */
@media (max-width: 768px) {
  .reason-list {
    flex-direction: column;
    align-items: center;
  }

  .reason-img {
    width: 90%;
    max-width: 273px;
  }
}

.title-main {
  font-size: 40px;
}

.title-sub {
  font-size: 20px;
}

.reason-point {
  text-align: center;
  margin-top: 20px;
}

.reason-point-img {

  display: inline-block;
}


/* ご利用の流れ */

.flow {
  padding: 50px 20px;
  background: #e6e5ef;
  text-align: center;
}


.flow-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #3e3a3a;
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

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

.flow-step {
  display: inline-block;
  background: #ced7dc;
  color: #3e3a3a;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 12px;
}

.flow-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.flow-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  text-align: left;
  margin-top: 8px;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.flow-icon {

  height: auto;
  display: block;
  margin: 10px auto;
}

/* スマホ */
@media (max-width: 768px) {
  .flow-list {
    flex-direction: column;
    align-items: center;
  }

  .flow-item {
    width: 90%;
    max-width: 320px;
  }
}



/* 料金表 */
.price {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.price-title {
  font-size: 28px;
  color: #3e3a3a;
  margin-bottom: 10px;
}

.price-sub {
  margin-bottom: 30px;
  color: #666;
}

.price-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price-box {
  width: 320px;
  padding: 25px;
  border: 2px solid #3e3a3a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.premium {
  background: #e6e5ef;
}

.standard {
  background: #f8f4e8;
}

.price-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.price-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-box li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.price-box span {
  font-weight: bold;
}

.price-box p {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.price-note {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.price-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: #3e3a3a;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}



/* FAQ */

.faq {
  padding: 50px 20px;
  background: #e6e5ef;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.faq-icon-img {
  display: block;
  height: auto;
  margin: 10px auto 25px;
}



/* CTA */
.final-cta {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.final-cta-title {
  font-size: 40px;
  color: #3e3a3a;
  margin-bottom: 15px;
  line-height: 1.5;
}

.final-cta-icon {
  display: block;
  height: auto;
  margin: 0 auto 20px;
}

.final-cta-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.final-btn {
  display: inline-block;
  width: 220px;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.final-btn-main {
  background: #ff6b6b;
  color: #fff;
  border: 1px solid #3e3a3a;
}

.final-btn-line {
  background: #06C755;
  color: #fff;
  border: 1px solid #3e3a3a;
}

/* スマホ */
@media (max-width: 768px) {
  .final-cta-title {
    font-size: 22px;
  }

  .final-btn {
    width: 90%;
    max-width: 300px;
  }
}


.reason {
  padding: 70px 20px;
  text-align: center;
  background: #fff;
}

.reason-icon {
  width: 70px;
  margin-bottom: 20px;
}

.title-main {
  font-size: 34px;
  color: #3e3a3a;
  margin-bottom: 10px;
  line-height: 1.5;
}

.title-sub {
  font-size: 28px;
  color: #666;
  margin-bottom: 40px;
}

.reason-list {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.reason-card {
  width: 300px;
  background: #e6e5ef;
  border: 2px solid #000;
  border-radius: 18px;
  padding: 30px 22px;
  box-sizing: border-box;
}

.reason-card h3 {
  font-size: 24px;
  color: #3e3a3a;
  margin-bottom: 15px;
}

.reason-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 768px) {
  .reason {
    padding: 50px 15px;
  }

  .title-main {
    font-size: 26px;
  }

  .title-sub {
    font-size: 22px;
  }

  .reason-card {
    width: 100%;
    max-width: 340px;
    padding: 25px 18px;
  }

  .reason-card h3 {
    font-size: 22px;
  }

  .reason-card p {
    font-size: 15px;
  }
}




/* 追従CTA */

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;              /* 横並び */
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: linear-gradient(to bottom, #ffffff, #e6e5ef);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.18);
  padding: 20px 10px;

  z-index: 9999;
}

/* 申し込みボタン */
.fixed-cta-btn {
  flex: 1;
  max-width: 250px;
  text-align: center;
  background: #ff6b6b;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* LINE画像 */
.fixed-cta-line img {

  display: block;
  border-radius: 6px;
}

@media (max-width: 768px) {

  .fixed-cta {
    justify-content: flex-start;
  }

  .fixed-cta-btn {
    display: none;
  }

  .fixed-cta-line {
    width: 80%;
    margin: 0;
  }

  .fixed-cta-line img {
    width: 100%;
    height: auto;
    display: block;
  }

}