@charset "utf-8";


/***********************************/
.my_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto 2rem;
    width: fit-content;
}

.my_list li {
    background-color: #fff;
    padding: 1em;
    border-radius: 10px;
    border: solid #666 2px;
    font-weight: bold;
}

.my_list li:before {
    content: "▶";
    color: #039bbe;
    padding: 0 3px 0 0;
}

.intro p {
    text-align: center;
    line-height: 2.6em;
    max-width: 800px;
    margin: 0 auto 2em;
}

.text_01 {
    color: #039bbe;
    text-align: center;
    font-weight: 900;
    font-size: 125%;
    margin: 0;
}



.big_comment {
    position: relative;
    margin: 0.4em auto 1em;
    padding: 0.5em 0em;
    text-align: center;
    color: #fff;
    background: #039bbe;
    width: 70%;
    font-weight: bold;
    font-size: clamp(1.125rem, 0.98rem + 0.72vw, 1.875rem)
        /*18-30px*/
    ;
    height: 4.4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big_comment:before,
.big_comment:after {
    position: absolute;
    top: 0;
    display: block;
    height: -webkit-fill-available;
    content: '';
    border: 2.2em solid #039bbe;
}

.big_comment:before {
    left: -2.6em;
    border-left-width: 15px;
    border-left-color: transparent;
}

.big_comment:after {
    right: -2.6em;
    border-right-width: 15px;
    border-right-color: transparent;
}

.big_comment .deco {
    position: relative;
    display: block;
}

.point {}

.my_tour_img_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 1rem;
    justify-content: center;
}

.my_tour_img_list li {
    width: calc(100% / 2 - 10px);
}

.last_comment {}

.last_comment p {
    font-weight: bold;
    font-size: 1.2em;
}

/*600px以上*/
@media (min-width: 600px) {
    .big_comment {
        padding: 0.5em 2em;
        width: fit-content;
        height: 3em;
    }


    .big_comment:before {
        left: -2.5em;
        border-left-color: transparent;
        border-top-width: 1.5em;
        border-right-width: 2.2em;
        border-bottom-width: 1.4em;
    }

    .big_comment:after {
        right: -2.5em;
        border-right-color: transparent;
        border-top-width: 1.5em;
        border-right-width: 0.5em;
        border-bottom-width: 1.4em;
    }

    .my_tour_img_list li {
        width: calc(100% / 3 - 10px);
    }
}

/*900px以上*/
@media (min-width: 900px) {
    .my_list {
        flex-direction: unset;
        gap: 2rem;
        margin: 0 auto 2rem;
        justify-content: center;
    }
}


/***********************************/
/*600px以上*/
@media (min-width: 600px) {}

/*900px以上*/
@media (min-width: 900px) {}

.my_tour_contact tr#row_tgenk {
    display: none;
}