@charset "UTF-8";

.tourist_hero {
    padding-top: 250px;
    overflow: clip;
    position: relative;
}

.bg-tourist {
  width: 2160px;
  position: absolute;
  top: 1120px;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央に配置 */
  transform-origin: center center;  /* 要素の中心を回転軸に */
  z-index: -1;
  animation: loop 60s infinite linear;
}

.sec_intro {
    font-size: 30px;
    text-align: center;
    margin: 30px 0;
}

.sec_txt {
    max-width: 960px;
    margin: 0 auto;
}

@keyframes loop {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.illust-event_bnr {
    position: absolute;
}

.illust-event_bnr.-no1 {
    left: 5%;
    bottom: 30%;
}

.illust-event_bnr.-no2 {
    right: 2%;
    top: 50%;
}

/* tourist_body */

.tourist {
    background: url(/img/cmn/bg-blue.png) center;
    background-size: contain;
    border-radius: 50px;
}

.tourist_body {
    margin-bottom: 15px;
}

.tourist_link {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tourist_link p {
    border-radius: 30px 30px 0 0;
    background: #314D98;
    color: #fff;
    padding: 25px 30px;
    text-align: center;
    font-size: 24px;
    width: 100%;
    max-width: 500px;
}

.tourist_link p:hover {
    cursor: pointer;
}

.tourist_link p.-active {
    background: #fff;
    color: #000;
}

.tourist_row {
    display: none;
}

.tourist_row.-active {
    display: block;
}

.tourist_body {
    border-radius: 30px;
    background: #fff;
    padding: 60px 70px;
}

.tourist_body_ttl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    color: #314D98;
}

.tourist_body_ttl::before {
    content: '';
    width: 37px;
    height: 46px;
    background: url(/img/tourist/icon-spot_pin.png) no-repeat center;
    background-size: cover;
}

.tourist_img {
    width: 100%;
    max-width: 460px;
    height: 100%;
    aspect-ratio: 460 / 309;
    border-radius: 30px;
}

.tourist_list li {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    gap: 5%;
    position: relative;
}

.tourist_list li:last-child {
    padding-bottom: 0;
}

.tourist_list li::after {
    content: '';
    width: 100%;
    height: 2px;
    background: url(/img/cmn/cmn_line.svg);
    background-size: contain;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
}

.tourist_list li:last-child::after {
    content: none;
}

.tourist_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.tuorist_list_cnt {
    flex: 1;
}

.tuorist_list_cnt_ttl {
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 24px;
    border-bottom: solid 1px #B7B7B7;
    position: relative;
}

.tuorist_list_cnt_ttl::after {
    content: '';
    width: 110px;
    height: 2px;
    background: #6E96CD;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.tuorist_list_cnt_text {
    margin-bottom: 20px;
}

.tuorist_list_cnt_info {
    font-size: 14px;
    margin-bottom: 20px;
}

.tuorist_list_cnt_link {
    color: #314D98;
    text-decoration: underline;
    position: relative;
}

.tuorist_list_cnt_link:hover {
    text-decoration: none;
}

.tuorist_list_cnt_link::after {
    content: '';
    width: 12px;
    height: 12px;
    background: url(/img/cmn/icon-link.svg) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.tourist_body_hd {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.season_ttl.-en {
    font-size: 110px;
    line-height: 120px;
}

.season_ttl.-en.spring {
    color: #FF7BAC;
}

.season_ttl.-en.summer {
    color: #0CA000;
}

.season_ttl.-en.autumn {
    color: #D17900;
}

.season_ttl.-en.winter {
    color: #036EB8;
}

.season_ttl.-ja {
    font-size: 28px;
}

/* .bnr_list_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px 40px;
    flex-wrap: wrap;
} */

.bnr_list_ttl {
    font-size: 24px;
    width: fit-content;
    margin: 0 auto 30px;
    position: relative;
}

.bnr_list_ttl::before {
    content: '';
    width: 3px;
    height: 31px;
    border-radius: 20px;
    background: #3C3C3C;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
    left: -20px;
}

.bnr_list_ttl::after {
    content: '';
    width: 3px;
    height: 31px;
    border-radius: 20px;
    background: #3C3C3C;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    right: -20px;
}


.bnr_list_wrapper a {
    transition-duration: .5s;
}

.bnr_list_wrapper a:hover {
    opacity: .8;
}


@media screen and (max-width:767px) {

    .bg-tourist {
        width: 1000px;
        top: 530px;
    }

    .tourist_hero {
        padding-top: 100px;
    }

    .sec_intro {
        font-size: 22px;
        line-height: 35px;
        margin: 20px 0 30px;
    }

    .sec_txt {
        padding: 0 24px;
    }

    .tourist_link {
        gap: 10px;
    }

    .tourist_link p {
        padding: 20px 15px;
        font-size: 18px;
        line-height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tourist_body:first-child {
        border-radius: 0 0 30px 30px;
    }

    .tourist_body {
        padding: 30px 20px;
    }

    .tourist_body_ttl {
        font-size: 20px;
        justify-content: center;
    }

    .tourist_body_ttl::before {
        width: 27px;
        height: 34px;
    }

    .tourist_list li {
        flex-flow: column;
        gap: 10px;
        padding: 30px 0;
    }

    .tuorist_list_cnt_ttl {
        font-size: 20px;
    }

    .bnr_list_ttl {
        font-size: 18px;
    }
    

    .illust-event_bnr {
        position: unset;
    }

    .tourist_illust {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .illust-event_bnr {
        width: 30%;
        height: auto;
    }

    .season_ttl.-en {
        font-size: 80px;
        line-height: 90px;
    }

    .season_ttl.-ja {
        font-size: 24px;
    }
}