:root {
   --key-color:#E84567;
   color:#333;
   font-size:16px;
}
main{
    font-size:16px;
}
section{
    padding:60px 0;
}
.d-flex{display: flex;flex-wrap:wrap;}
.content-width{
    max-width: 1024px;
    margin:auto;
}
.title-bg{
    position:relative;
}
.main-title{
    position:absolute;
    top:0;
    bottom:0;
    margin:auto;
    left:18vw;
    max-height: 412px;
    width: 35vw;
}
.main-bg{
    width:100%;
    max-height: 500px;
    object-fit: cover;
}
.lead-text{
    width: 74%;
    margin:24px auto 0;
    line-height: 162.5%;
}
.btn-area {
    background:#F5F5F5;
}
.btn-area ul{
    padding:20px 0 30px;
    justify-content: center;
    gap: 30px;
}
.btn-area a{
    display: block;
    font-weight: bold;
    text-align: center;
    border-bottom:2px solid #333; 
    color:#333;
    padding: 12px 0;
    margin:auto;
    position:relative;
    transition:all .5s ease-in-out;
}
.btn-area a:hover{
    transform:translateY(5px);
}

.fb-ttl-header {
    margin-bottom: 40px;
    font-weight: 700;
    color:var(--key-color);
}
.fb-ttl-header p {
    font-size: 40px;
}
.fb-ttl-header h2{
    font-size:20px;
    padding-left:28px;
    position:relative;
}
.fb-ttl-header h2::before{
    position:absolute;
    content:'';
    width:20px;
    height: 2px;
    background:#D9D9D9;
    left:0;
    top:0;
    bottom:0;
    margin:auto;
}
@media screen and (max-width:768px){
    section{
        padding:30px 0;
    }
    .content-width{
        padding:0 20px;
    }
    .main-title{
        left: 0;
        max-height: 240px;
        width: 60vw;
        right: 0;
    }
    .main-title img{
        object-fit: cover;
    }
    .main-bg {
        height: 240px;
        object-fit: cover;
    }
    .btn-area{
        gap: 8px;
    }
    .btn-area ul{
        padding: 8px 0 16px;
        justify-content: center;
        gap: 0 16px;
    }
    .btn-area li{
        font-size:14px;
    }
    .btn-area a{
        padding: 8px 0;
    }
    .lead-text{
        width:100%;
        font-size: 14px;
    }
    .fb-ttl-header{
        margin-bottom: 30px;
    }
    .fb-ttl-header p{
        font-size:30px;
    }
    .fb-ttl-header h2{
        font-size: 16px;
    }
}

.fb-spot-wrap {
    display: flex;
    gap: 22px;
}
.fb-spot-cont {
    border-radius: 15px;
    flex: 0 0 calc((100% - 22px * 3) / 4);
    position:relative;
}
.fb-spot-cont h3 {
    font-weight: 700;
    padding: 8px 0;
}
.fb-spot-img {
    aspect-ratio: 240 / 164;
    overflow: hidden;
}
.fb-spot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fb-spot-cont p {
    font-size: 15px;
}

@media (max-width: 768px) {
    .fb-spot-wrap {
        gap: 20px;
    }
    .fb-spot-cont {
        border-radius: 15px;
        flex: 0 0 calc((100% - 20px) / 2);
        position:relative;
    }
    .fb-spot-cont h3{
        font-size:15px;
    }
    .fb-spot-cont p {
        font-size: 14px;
    }
}
.fb-tour{
    background: #FAE8EC;
}
.fb-tour-cont {
    flex: 0 0 50%;
    background: #FFF;
    border: 2px solid #000;
    padding: 30px;
    margin-top: -2px;
}

.fb-tour-cont h3{
    font-weight: 600;
    font-size:18px;
    border-bottom:2px solid #808080;
    padding-bottom:12px;
    margin-bottom:12px;
}
.fb-tour-img{
    margin-right:20px;
    flex: 0 0 60%;
    aspect-ratio: 270 / 180;
}
.fb-tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-tour-ttl{
    display: flex;
    margin-bottom:16px;
}
.fb-tour-data {
    font-weight: bold;
}
.fb-tour-price{
    margin-bottom:20px;
}
.fb-tour-price dl{
    display:flex;
    flex-wrap:wrap;
}
.fb-tour-price dt{
    flex:0 0 40%;
}
.fb-tour-price dd{
    flex:0 0 60%;
}
.fb-tour-price span{
    color:#BD0000;
    font-size:20px;
}
.fb-tour-cate{
    background:var(--key-color);
    color:#FFF;
    padding:2px 12px;
    display: inline-block;
    font-weight: normal;
    font-size: 14px;
}
.fb-tour-schedule{
    background:#f5f5f5;
}
.fb-tour-schedule-inner{
    font-size:14px;
    padding: 8px;
}
.event {
  display: flex;
  position: relative;
}
.timeline-col {
  width: 65px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-col::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: #D9D9D9;
  z-index: 1;
}
.event.start .timeline-col::before {
  top: 22px;
}
.event.end .timeline-col::before {
  bottom: 0;
}
.event.end:last-child .timeline-col::before{
    content:none;
}

.marker-label {
  background-color: #D9D9D9;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  position: relative;
  z-index: 2;
}

.marker-icon {
  width: 8px;
  height: 8px;
  background-color: #d9d9d9;
  transform: rotate(45deg);
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

.details-col {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 8px;
  flex-grow: 1;
}

.event.start .details-col,
.event.end .details-col {
  align-items: center;
}

.time {
  font-weight: bold;
  margin-right: 15px;
  color: #222;
}

.location {
  font-weight: 500;
  color: #333;
}

.stop-details {
  align-items: center;
  padding: 8px 0;
  display: flex;
}

.stop-details img {
  width: 100px;
  height: 65px;
  object-fit: cover; 
  border-radius: 4px;
  margin-right: 12px;
}

.stop-details .info {
  display: flex;
  flex-direction: column;
}
.stop-details .location {
  font-weight: bold;
  margin-bottom: 4px;
}
.stop-details .activity {
  color: #555;
}
.fb-tour-btn a{
    background:#7CB200;
    color:#FFF;
    padding: 12px 0;
    width: 70%;
    display:block;
    margin:16px auto;
    text-align: center;
    transition:all .5s ease-in-out;
}
.fb-tour-btn a:hover{
    opacity: 0.9;
    transform:translateY(-2px);
}
.fb-tour-btn a span{
    font-size:0.8em;
    display: block;
}
@media (min-width: 769px) {
    .fb-tour-cont:nth-child(even) {
        border-left: 0;
    }
}

@media (max-width: 768px) {
    .fb-tour-wrap{
        flex-direction: column;
    }
    .fb-tour-cont{
        padding:16px;
    }
    .fb-tour-cont h3{
        font-size:16px;
    }
    .fb-tour-img{
        margin-right:12px;
        flex: 0 0 50%;
    }
    .timeline-col{
        width: 50px;
    }
    .fb-tour-btn a{
        width: 100%;
    }
}

.fb-point{
    background: #F3F9FF;
}
.fb-point-wrap{
    gap:23px;
    justify-content: space-between;
}
.fb-point-cont{
    background:#FFF;
    flex:0 0 30%;
    padding:20px;
}
.fb-point-img{
    height: 150px;
    justify-content:center;
    align-items: center;
}
.fb-point-cont h3{
    text-align: center;
    font-weight: 700;
    font-size:18px;
    margin:16px 0;
}
.fb-activity-wrap{
    gap:26px;
    justify-content: center;
}
.fb-activity-img{
    margin-bottom:16px;
    justify-content: center;
    align-items: center;
}
.fb-activity-cont{
    flex:0 0 20%;
    text-align: center;
}
.fb-activity-cont h3{
    font-weight: bold;
}
@media (max-width: 768px) {
    .fb-point-wrap{
        flex-direction: column;
    }
    .fb-activity-wrap{
        gap:16px;
        flex-direction: column;
    }
    .fb-activity-cont a{
        display: flex;
        align-items: center;
    }
    .fb-activity-img{
        flex: 0 0 30%;
        margin: 0 16px 0 0;
    }
    .fb-activity-cont h3{
        font-size:14px;
        margin-top:0;
    }
}