@charset "UTF-8";
/* Cards Wrapper */
.otoku-tour__cards-wrapper {
    margin-left: 0;
    overflow: visible;
}

/* Cards Container - PC 3 columns */
.otoku-tour__cards {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 24px;
    padding: 14px;
    overflow: visible;
    background: #fff;
    border-radius: 12px;
    box-shadow: 4px 4px 0 0 #FFF000;
}

/* Card Styles */
.otoku-tour__card {

    display: flex;
    /* flex-direction: column; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 14px;
    position: relative;
    align-items: center;
}

.otoku-tour__card .otoku-tour-label {
  position: absolute;
  aspect-ratio: 1 / 1;
  z-index: 1;
}

.otoku-tour__card-image {
    width: 40%;
    /* margin-bottom: 20px; */
    height: 100%;
    overflow: hidden;
}

.otoku-tour__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .otoku-tour__card:hover .otoku-tour__card-image img {
    transform: scale(1.05);
} */

.otoku-tour__card-details {
    flex: 1;
    width: 50%;
    /* height: auto; */
    padding: 30px;
}

.otoku-tour__card-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.otoku-tour__card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.otoku-tour__card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 15px 0;
}

.otoku-tour__card-price_list {
    text-align: right;
    color: #F63868;
    font-weight: bold;
    line-height: 125%;
    font-size: 20px;
    margin-bottom: 12px;
}
.otoku-tour__card-price_list-large {
  font-size: 32px;
}

.otoku-tour__card-note {
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 16px;
    color: #666;
}

.otoku-tour__card-price-label {
    font-size: 12px;
    color: #666;
}

.otoku-tour__card-price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #ff4d4d;
}

.otoku-tour__card-button {
    display: block;
    padding: 12px 24px;
    background-color: #0071bb;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.otoku-tour__card-button:hover {
    background-color: #005a96;
}
@media screen and (max-width: 960px) {
    .otoku-tour__card {
        display: block;
        padding: 0;
    }
    .otoku-tour__cards {
        margin: 20px;
    }
    .otoku-tour__card-image {
        width: initial;
        height: initial;
    }
    .otoku-tour__card-details {
        width: 100%;
        padding: 0;
        padding-top: 25px;
    }
}