@charset "UTF-8";

.break-point {
    display: inline-block;
}

/* part-price */
#part-price {
    background-image: url("../img/bg_price.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    background-position: center;
}

.part-price {
    max-width: 1448px;
    width: 75%;
    margin: 200px auto;
}

@media screen and (max-width: 769px) {
    .part-price {
        width: calc(100% - 32px);
        margin: 120px auto;
    }
}

.top-decorated {
    font-size: 48px;
    position: relative;
    text-align: center;
}

@media screen and (max-width:769px) {
    .top-decorated {
        font-size: 32px;
    }
}

.part-price .top-decorated {
    padding-top: clamp(24px, 3vw, 60px);
}

.part-price .top-decorated::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../img/head_decoration_price.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 19vw;
    aspect-ratio: 7.4 / 1;
}

@media screen and (max-width: 769px) {
    .part-price .top-decorated::before {
        width: 184px;
    }
}

.part-price .price-text {
    font-size: clamp(16px, 1.2vw, 24px);
    text-align: center;
    margin: 48px 0 92px 0;
}

.part-price .tickets {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 769px) {
    .part-price .tickets {
        flex-direction: column;
    }
}

.part-price .tickets > div {
    display: flex;
    justify-content: center;
}

.part-price .ticket {
    width: 90%;
    height: auto;
}

@media screen and (max-width: 769px) {
    .part-price .ticket {
        width: 100%;
        height: auto;
    }
}

/* part-target */

#part-target {
    background-color: #FFFFFF;
}

.part-target {
    max-width: 1448px;
    width: 75%;
    margin: 0 auto;
    padding-top: 160px;
}

@media screen and (max-width: 769px) {
    .part-target {
        width: calc(100% - 20px);
        padding: 10px 0;
        padding-top: 80px;
    }
}

.bottom-decorated {
    padding-bottom: clamp(16px, 2vw, 28px);
    font-size: clamp(24px, 2vw, 40px);
    position: relative;
    text-align: center;
}

.bottom-decorated::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../img/head_decoration_target.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 16vw;
    aspect-ratio: 30 / 1;
}

@media screen and (max-width: 769px) {
    .bottom-decorated::after {
        width: 184px;
    }
}

.target-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 120px;
    margin-bottom: 240px;
    row-gap: 120px;
}

@media screen and (max-width: 769px) {
    .target-items {
        margin-top: 60px;
        margin-bottom: 60px;
        row-gap: 40px;
    }
}

.target-items li {
    width: 29%;
    position: relative;
    padding-top: 28px;
    text-align: center;
}

@media screen and (max-width: 769px) {
    .target-items li {
        width: 47%;
        padding-top: 20px;
    }
}

.target-circle {
    position: absolute;
    top: 0;
    left: 6px;
    display: block;
    width: 6.4vw;
    max-width: 120px;
    color: #FFFFFF;
    font-size: clamp(12px, 1.5vw, 24px);
}

.target-circle div {
    height: 3.2vw;
    max-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 769px) {
    .target-circle {
        width: 12.8vw;
    }
    .target-circle div {
        height: 6.4vw;
    }
}

.target-circle div:first-child {
    background-color: #00663A;
    border-radius: 999px 999px 0 0;
}

.target-circle div:nth-child(2) {
    background-color: #111211;
    border-radius: 0 0 999px 999px;
}

.target-items h3 {
    font-size: 24px;
    margin: 12px 0;
}
@media screen and (max-width: 769px) {
    .target-items h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

.target-item-body {
    font-size: clamp(12px, 1.2vw, 16px);
}

/* part-target-hotel */

.part-target-hotel {
    max-width: 1448px;
    width: 75%;
    margin: 0 auto;
    padding-bottom: 160px;
}

@media screen and (max-width: 769px) {
    .part-target-hotel {
        width: 95%;
        padding-top: 120px;
    }
}

.hotels-img-wrapper {
    margin-top: 126px;
    margin-bottom: 135px;
}

@media screen and (max-width: 769px) {
    .hotels-img-wrapper {
        margin-top: 52px;
        margin-bottom: 64px;
    }
}

.hotel-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 16px;
    align-items: center;
}

@media screen and (max-width: 769px) {
    .hotel-list {
        row-gap: 24px;
    }
}

.hotel-list li {
    width: 30%;
    text-align: center;
    font-size: 24px;
}

@media screen and (max-width: 769px) {
    .hotel-list li {
        width: calc(50% - 9px);
        text-align: center;
        font-size: 16px;
    }
}