@charset "utf-8";

/* -----------------------------------------------------------
一覧
----------------------------------------------------------- */

.introFirstBox {
    position: relative;
    margin: 0 auto 40px;
    padding: 20px 15px;
    border-radius: 20px;
    background: #EA8DD7;
    background: linear-gradient(130deg, rgba(234, 141, 215, .4) 0%, rgba(181, 117, 197, .4) 30%, rgba(128, 146, 206, .4) 70%, rgba(125, 201, 215, .4) 100%);
    backdrop-filter: blur(5px);
}

.introFirstBoxDeco01 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    opacity: .3;
}

.introFirstBoxDeco02 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    opacity: .3;
}

.introFirstTtl {
    margin: 0 auto 15px;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.introFirstTxt {
    margin: 0 auto 10px;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.introFirstCautionBox {
    margin: 0 auto 20px;
}

.introFirstCautionTxt {
    margin: 0 0 5px;
    padding: 0 0 0 1em;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.introFirstCautionTxt:last-child {
    margin: 0;
}

.introFirstListItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    margin: 0 0 10px;
}

.introFirstListItem:last-child {
    margin-bottom: 0;
}

.introFirstListItemTtl {
    max-width: 120px;
    width: 100%;
    padding: 5px;
    border: 1px solid #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.introFirstListItemTxt {
    max-width: 320px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.introFirstListItemTxt span {
    font-size: 10px;
}

.introductionCateList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 40px;
}

.introductionCateItem {
    max-width: 200px;
    width: 100%;
}

.introductionCateBtn {
    display: block;
    width: 100%;
    padding: 15px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    transition: all .5s;
}

.facility .introductionCateBtn {
    background-color: #859ED0;
    border: none;
}

.restaurant .introductionCateBtn {
    background-color: #EE98C3;
    border: none;
}

.other .introductionCateBtn {
    background-color: #AC8BC9;
    border: none;
}

.introductionCateBtn:hover {
    opacity: .5;
    transition: all .5s;
}

.introductionList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 30px;
    justify-content: space-between;
    margin: 0 auto 40px;
}

.introductionItemLink {
    display: block;
    color: #fff;
}

.introductionItemImgBox {
    position: relative;
    width: 100%;
    height: 0;
    padding: 0 0 66.5%;
    overflow: hidden;
    width: 100%;
    margin: 0 auto 5px;
}

.introductionItemImgBox img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: auto;
    transition: all .5s;
}

.introductionItemLink:hover .introductionItemImgBox img {
    transform: scale(1.1);
    transition: all .5s;
}

.introductionItemCateBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 5px;
    margin: 0 0 5px;
}

.introductionItemCate {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #fff;
}

.facility.introductionItemCate {
    background-color: #859ED0;
}

.restaurant.introductionItemCate {
    background-color: #EE98C3;
}

.other.introductionItemCate {
    background-color: #AC8BC9;
}

.introductionItemTtl {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

.introductionItemCampaign {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

.introductionNullTxt {
    font-size: 14px;
    text-align: center;
}

@media screen and (min-width:768px) {

    .introFirstListItem {
        flex-direction: row;
        align-items: baseline;
        gap: 15px;
        margin: 0 0 15px;
    }

    .introFirstListItemTxt {
        text-align: start;
    }

    .introductionList {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 20px;
    }

    .introductionItemImgBox {
        margin: 0 auto 10px;
    }

}

@media screen and (min-width:1024px) {

    .introFirstBox {
        margin: 0 auto 80px;
        padding: 40px 15px;
        border-radius: 80px;
    }

    .introFirstBoxDeco01 {
        top: 30px;
        right: 30px;
        width: 80px;
        height: 80px;
    }

    .introFirstBoxDeco02 {
        bottom: 30px;
        left: 30px;
        width: 60px;
        height: 60px;
    }

    .introFirstTtl {
        margin: 0 auto 30px;
        font-size: 20px;
    }

    .introFirstTxt {
        margin: 0 auto 20px;
        font-size: 16px;
    }

    .introFirstCautionBox {
        margin: 0 auto 30px;
    }

    .introductionCateList {
        margin: 0 auto 60px;
    }

    .introductionList {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 30px;
        grid-row-gap: 40px;
        margin: 0 auto 80px;
    }

    .introductionNullTxt {
        font-size: 16px;
    }

}

/* -----------------------------------------------------------
詳細
----------------------------------------------------------- */

.introductionDetail {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 40px;
}

.introductionDtlTtlBox {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 8px;
    margin: 0 0 10px;
}

.introductionDtlTtlBox::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-image: url(../img/deco_circle_white_yoko.svg);
    background-repeat: repeat-x;
}

.introductionDtlTtl {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.introductionDtlCatBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: stretch;
    margin: 0 0 5px auto;
}

.introductionDtlCat {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #fff;
}

.facility.introductionDtlCat {
    background-color: #859ED0;
}

.restaurant.introductionDtlCat {
    background-color: #EE98C3;
}

.other.introductionDtlCat {
    background-color: #AC8BC9;
}

.introductionDtlImg {
    width: 100%;
    margin: 0 auto 10px;
}

.introductionDtlImg>img {
    margin: 0 auto;
}

.introductionDtlList {
    margin: 0 auto 20px;
}

.introductionDtlItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    margin: 0 0 10px;
}

.introductionDtlItem:last-child {
    margin-bottom: 0;
}

.introductionDtlItemTtl {
    max-width: 120px;
    width: 100%;
    padding: 5px;
    border: 1px solid #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.introductionDtlItemTxt {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.introductionDtlItemTxt a {
    display: block;
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    text-decoration: underline;
}

.introductionDtlItemTxt a:hover {
    color: #fff;
    text-decoration: none;
}

.introductionDtlContent {
    margin: 0 0 20px;
}

.introductionDtlMap {
    display: block;
    width: 100%;
    height: 300px;
    margin: 0 auto;
}

.introductionDtlMap>iframe {
    width: 100%;
    height: 100%;
}

@media screen and (min-width:768px) {

    .introductionDtlTtlBox {
        flex-direction: row;
    }

    .introductionDtlTtl {
        font-size: 16px;
    }

    .introductionDtlCatBox {
        margin: 0 0 0 auto;
    }

    .introductionDtlItem {
        flex-direction: row;
        align-items: baseline;
        gap: 15px;
        margin: 0 0 15px;
    }

    .introductionDtlItemTxt {
        text-align: start;
    }

    .introductionDtlItemTxt a {
        margin: 0;
    }

}

@media screen and (min-width:1024px) {

    .introductionDetail {
        margin: 0 auto 60px;
    }

    .introductionDtlTtlBox {
        padding: 0 0 13px;
        margin: 0 0 20px;
    }

    .introductionDtlTtl {
        font-size: 20px;
    }

    .introductionDtlCat {
        padding: 4px 15px;
        font-size: 14px;
    }

    .introductionDtlImg {
        margin: 0 auto 20px;
    }

    .introductionDtlList {
        margin: 0 auto 40px;
    }

    .introductionDtlContent {
        margin: 0 0 40px;
    }

}