/* ヘッダー */
.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;
}



/* =========================
   ナビ
========================= */

/* PCメニュー */
.nav-pc {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-pc a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* SPメニュー */
.nav-sp {
  display: none;
}

/* ログインボタン */
.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;
}



/* フッター */


.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 {
  text-align: center;
  overflow: hidden;
  background: #fff;
}

.hero picture {
  display: block;
}

.hero img {
  display: block;
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
}

.hero-slider{
  position:relative;

  margin:0 auto;
}

.hero-track{
  display:flex;
  transition:transform 0.8s ease;
}

.hero-slide{
  flex:0 0 100%;

  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-slide img{
  display:block;

  margin:0 auto;

  width:auto;
  max-width:100%;

  height:auto;
}

/* ●ナビ全体 */
.hero-dots{
  position:absolute;

  left:50%;
  bottom:20px;

  transform:translateX(-50%);

  display:flex;
  gap:12px;

  z-index:10;

  background:rgba(0,0,0,0.45);
  padding:10px 18px;

  border-radius:999px;

  backdrop-filter:blur(4px);
}

/* ●ボタン */
.hero-dot{
  width:12px;
  height:12px;

  border-radius:50%;

  border:none;

  background:rgba(255,255,255,0.5);

  cursor:pointer;

  transition:0.3s;
}

.hero-arrow{

position:absolute;

top:50%;
transform:translateY(-50%);

z-index:20;

width:56px;
height:56px;

border:none;

border-radius:50%;

background:rgba(0,0,0,0.45);

color:#fff;

font-size:2rem;

cursor:pointer;

transition:0.3s;

backdrop-filter:blur(4px);

display:flex;
align-items:center;
justify-content:center;

}

/* 右 */
.hero-next{

right:20px;

}

/* ホバー */
.hero-arrow:hover{

background:rgba(0,0,0,0.7);

transform:translateY(-50%) scale(1.08);

}


/* 現在の画像 */
.hero-dot.active{
  background:#ffffff;

  transform:scale(1.2);
}

@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-sp {
    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,.12);
    z-index: 9999;
}

.nav-sp.active {
    display: flex;
}

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

.nav-sp a:last-child {
    border-bottom: none;
}

.nav-pc {
    display: 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;
  }

}

.bridal {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.bridal-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bridal h1 {
  font-size: 3.2rem;
  color: #3e3a3a;
  margin-bottom: 30px;
}

.bridal-lead {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 45px;
}

.bridal-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 45px;
}

.bridal-item {
  background: #f7f7fb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.bridal-item img {
  width: 100%;
  display: block;
}

.bridal-item p {
  padding: 18px 12px;
  margin: 0;
  font-weight: bold;
  line-height: 1.7;
}

.bridal-text-box {
  background: #f7f7fb;
  border-radius: 18px;
  padding: 35px 28px;
  margin: 40px auto 60px;
  max-width: 900px;
  line-height: 2;
}

.bridal-message {
  font-weight: bold;
  font-size: 1.9rem;
  margin-top: 25px;
}

.media-box {
  background: #e6e5ef;
  border-radius: 20px;
  padding: 45px 30px;
  margin-top: 50px;
}

.media-badge {
  display: inline-block;
  background: #3e3a3a;
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 20px;
}

.media-box h2 {
  font-size: 2.8rem;
  color: #3e3a3a;
  margin-bottom: 20px;
}

.media-box p {
  line-height: 2;
  margin-bottom: 30px;
}

.media-video {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  background: #000;
}

.media-video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .bridal {
    padding: 55px 16px;
  }

  .bridal h1 {
    font-size: 2.4rem;
  }

  .bridal-lead {
    font-size: 1.6rem;
    text-align: left;
  }

  .bridal-images {
    grid-template-columns: 1fr;
  }

  .bridal-text-box {
    text-align: left;
    padding: 26px 20px;
  }

  .media-box {
    padding: 32px 18px;
  }

  .media-box h2 {
    font-size: 2.2rem;
  }
}

.bridal-detail{

display:flex;
align-items:center;
gap:50px;

margin:60px auto;

}

.bridal-detail-image{

flex:1;

}

.bridal-detail-image img{

width:100%;
border-radius:20px;

display:block;

}

.bridal-detail-text{

flex:1;
text-align:left;

line-height:2;

}

.bridal-message{

font-size:1.9rem;
font-weight:bold;

margin-top:20px;

}

@media(max-width:768px){

.bridal-detail{

flex-direction:column;

}

}

.bridal-slider {
  display: flex !important;
  flex-direction: row !important;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.bridal-slide {
  flex: 0 0 85%;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: #f7f7fb;
  border-radius: 18px;
  padding: 30px;
  scroll-snap-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.bridal-slider::-webkit-scrollbar {
  height: 8px;
}

.bridal-slider::-webkit-scrollbar-thumb {
  background: #ced7dc;
  border-radius: 10px;
}

.bridal-slide-img img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.bridal-slide-text {
  text-align: left;
}

@media (max-width: 768px) {
  .bridal-slide {
    flex: 0 0 90%;
    grid-template-columns: 1fr;
  }
}

.bridal-message-slider-section {
  margin: 50px auto 70px;
}

.bridal-message-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.bridal-message-slide {
  flex: 0 0 85%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: #f7f7fb;
  border-radius: 18px;
  padding: 30px;
  scroll-snap-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.bridal-message-img img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.bridal-message-text {
  text-align: left;
}

.bridal-message-text h3 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #3e3a3a;
}

.bridal-message-text p {
  line-height: 2;
}

.bridal-message-slider::-webkit-scrollbar {
  height: 8px;
}

.bridal-message-slider::-webkit-scrollbar-thumb {
  background: #ced7dc;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .bridal-message-slide {
    flex: 0 0 90%;
    grid-template-columns: 1fr;
  }
}

/* パンくず */
.breadcrumb {
  max-width: 1000px;
  margin: 30px auto 20px;
  padding: 0 20px;
  font-size: 14px;
  color: #666;
  text-align: left;
}

/* FAQ もっと見る */

.faq-more{

    text-align:center;

    margin-top:35px;

}

.faq-more-btn{

    display:inline-block;

    padding:15px 35px;

    background:#3e3a3a;

    color:#fff;

    text-decoration:none;

    border-radius:999px;

    font-size:16px;

    font-weight:bold;

    transition:.25s;

}

.faq-more-btn:hover{

    background:#555;

    transform:translateY(-2px);

}