/* 메인이미지 영역  */ 

 /*메인이미지 영역 끝*/ 

.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}



.section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}


/*가성비 비교*/
.compare-section {
  max-width: 1100px;
  margin:0 auto;
  padding: 30px 15px;
}

.compare-text {
  text-align: center;
  margin: 30px;
}

.compare-content {
  display: flex;
  justify-content: center;
  align-items: stretch; /* 이게 포인트 */
  gap: 60px;
  position: relative;
}

/* 각 컬럼 */
.column {
  flex: 0 0 300px;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.column ul {
  padding-left: 0;
  list-style: none;
}

.column li {
  margin-bottom: 10px;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}

.column .note {
  font-size: 13px;
  color: #888;
}

.column .tit{text-align:center; font-size:15pt; font-weight:bold;}

/* VS 원 */
.vs-circle {
  width: 70px;
  height: 70px;
  border: 2px dashed #999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
 font-weight: bold;
  font-size: 18px;
  color: #444;
  background: #fff;

  position: absolute;
  top: 50%;
  left: 50%; /* 또는 정중앙 */
transform: translate(-50%, -50%);
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .compare-content {
    flex-direction: column;
  }

  .column {
    flex: 0 0 100%;
    width: 100%;
    padding: 20px;
  }

  .vs-circle {
    width: 60px;
    height: 60px;
    font-size: 16px;
    margin: 15px auto;
  }
}


.block {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px dotted #ff9900; /* 🟠 주황색 도트선 */
}


.block:first-child {
  border-bottom: none; /* 마지막 블록은 선 제거 */
}

.block:last-child {
  border-bottom: none; /* 마지막 블록은 선 제거 */
}

.block h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.block ul {
  padding-left: 0;
  list-style: none;
}

.block li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
  color: #444;
}
/*가성비 비교 여기까지*/









/*✅이용안내 영역✅*/
.usage-guide {
  max-width: 1100px;
  margin: 60px auto 40px auto;
  padding: 30px 20px;
  background: #f8f9fa; /* 은은한 배경색 */
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.usage-guide .tt1 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

.usage-guide .section-guide {
  margin-top: 30px;
}


/*공통스타일*/
.section-guide {
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}


.section-guide .t-name {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #444;
  text-align: left;
}


/*아이템 공통스타일 */
.icon-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}


.departure {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.departure .icon-item {
  flex: 1 0 0;
}
.departure .gap-box{display:none;}



/*호버 공통스타일 */
.icon-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.icon-item img {
  width: 100px;
  height: auto;
}

.icon-item p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}


/* ✅ 도착 .arrival */
.arrival {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}


.arrival .icon-item {
  flex: 0 0 calc(25% - 12px);
  max-width: calc(25% - 12px);
  box-sizing: border-box;
}


.icon-item-button {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.icon-item-button button {
  background: #357ab8;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.icon-item-button button:hover {
  background: #265f94;
}


/* ✅ 반응형 */
@media (max-width: 760px) {
  .usage-guide {
    padding: 30px 5px;
  }

  .departure .icon-item {
    width: 33.33%;
    padding: 6px;
  }

  /* 가운데 여백용 */
  .departure .gap-box {
    display: block;
    width: 100%;
    height: 8px;
  }

  /* 마지막 두 개 반반 */
  .departure .icon-item.half {
    width: 50%;
  }



  /* 도착 */
  .arrival .icon-item {
    flex: 0 0 45%;
    max-width: 45%;
    margin-bottom: 16px;
  }

    .icon-item-button {
    margin-top: 16px;
  }

  .icon-item-button button {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 0;
  }
}
 /*이용안내 영역 여기까지*/











/* FAQ */
.faq-section {
  max-width: 1100px;
  width: 100%;
  margin: 60px auto;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 2px 2px 5px rgb(0, 0, 0, 0.1);
}

@media (max-width: 720px) {
  .faq-section {
    width: 100%;
    padding: 0 10px;
  }
}




  .faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin:2rem 0 1.5rem 0;
    letter-spacing: -0.03em;
  }


  .faq-item {
    margin:0 auto;
    width: 96%;
    border-bottom: 1px solid #ccc;
    padding: 0.8rem 0;
    cursor: pointer;
  }

  .faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    position: relative;
    padding-right: 1.5rem;
  }

  .faq-question::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #555;
    padding-left: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: max-height 0.35s ease;
  }
  /* FAQ  여기까지*/