/* ========================================
   TOP用メインビジュアル
======================================== */
.mv-top {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mv-top__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/top/img_mv.png');
}

.mv-top__circle {
    position: relative;
    width: 80%;
    aspect-ratio: 1 / 1;
    /* background: #fff; */
    /* border-radius: 50%; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/top/bg_circle.png');
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mv-top__title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.mv-top__img {
    width: 310px;
    height: auto;
}

.mv-top__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #F08337;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mv-top__btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.mv-top__btn-icon {
    width: 20px;
    height: 20px;
}

.mv-top__btn-arrow {
    width: 12px;
    height: 12px;
}

/* ========================================
   TOP用 人気の街カード
======================================== */
.popular-towns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-town-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-town-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.popular-town-card__image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.popular-town-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-town-card__content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.popular-town-card__subtitle {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 12px;
    color: #3E3732;
    margin: 0;
}

.popular-town-card__title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #3E3732;
    margin: 0;
}

.popular-town-card__lines {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.popular-town-card__lines span {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 3px;
}

/* ========================================
   TOP用 Aboutセクション
======================================== */
.sec-top-about {
    position: relative;
    padding: 49px 0;
    background: #fff;
}

.sec-top-about__box {
    background: var(--bg_lightyellow, #FFFBF0);
    border-radius: 15px;
    padding: 30px 20px;
}

.sec-top-about__illust-top {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
}

.sec-top-about__illust-top-left{
    width: 106px;
    height: auto;
}

.sec-top-about__illust-top-right{
    width: 91.2px;
    height: auto;
}

.sec-top-about__label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-orange);
    text-align: center;
    margin-bottom: 12px;
}

.sec-top-about__title {
    text-align: center;
    margin-bottom: 20px;
}

.sec-top-about__title h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-orange);
    margin: 0;
}

.sec-top-about__text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.sec-top-about__text p {
    margin: 0 0 15px;
}

.sec-top-about__text p:last-child {
    margin-bottom: 0;
}

.sec-top-about__illust-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sec-top-about__illust-bottom img{
    width: 261px;
    height: auto;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* ========================================
   TOP用 人気の街を見る（カルーセル）
======================================== */
.sec-pickup {
    padding: 40px 0;
    background: var(--bg_lightyellow, #FFFBF0);
}

.sec-pickup__label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-orange);
    text-align: center;
    margin-bottom: 5px;
}

.sec-pickup__title {
    text-align: center;
    margin-bottom: 30px;
}

.sec-pickup__title h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

/* カルーセルコンテナ */
.pickup-carousel {
    width: 100%;
    overflow: hidden;
}

.pickup-carousel__track {
    /* display: flex;
    gap: 15px; */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pickup-carousel__track::-webkit-scrollbar {
    display: none;
}

.p-slider {
    display: block;
    width: 100%;
    overflow: hidden;
}

.p-slider .slick-slide {
    height: auto;
}

.p-slider .pickup-card {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.p-slider .slick-slide > div {
    padding: 0 10px;
    box-sizing: border-box;
}

.p-slider .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    padding: 0;
    list-style: none;
    text-align: center;
    width: 100%;
}

.p-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.p-slider .slick-dots li button {
    width: 10px;   /* ボタンのクリック領域を大きく */
    height: 10px;
}

.p-slider .slick-dots li button:before {
    font-size: 10px;  /* ドットの見た目のサイズ */
    width: 10px;
    height: 10px;
    line-height: 10px;
}
.p-slider .slick-dots li.slick-active button:before
{
    color:#333;
}
.p-slider .slick-list {
    padding: 0 40px !important; 
    overflow: visible;
}

.pickup-card {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.p-slider .slick-slide {
    width: 284px; 
    margin: 0 10px;
    outline: none;
}
.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}


/* カルーセルカード */
.pickup-card {
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-sizing: border-box;
}

.pickup-card:first-child {
    margin-left: 0;
}

.p-slider .slick-slide:last-child .pickup-card {
    margin-right: 0;
}

.pickup-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.pickup-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.pickup-card__content {
    padding: 15px;
    min-height: 173px;
}

.pickup-card__subtitle {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 10px;
}

.pickup-card__station {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.pickup-card__station-icon {
    width: 24px;
    height: 24px;
}

.pickup-card__title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

.pickup-card__line {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    color: #3E3732;
    margin: 0;
    padding-left: 34px;
}


