@charset "UTF-8";
/* sceneList */
.sceneList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 32px;
}
.sceneListItem {
    margin-bottom: 10px;
}
.sceneListItem__inner {
    position: relative;
    display: block;
    padding: 0;
    border: none;
    color: #333;
    background: transparent;
    cursor: pointer;
    transition: all .4s ease;
}
@media (any-hover: hover) {
    .sceneListItem__inner:hover {
        opacity: .6;
    }
}
.sceneListItem__txtWrap {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 1rem;
}
.sceneListItem__txtWrap--center {
    width: 60%;
    align-items: center;
}
.sceneListItem__txt {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    text-align: left;
}
.sceneListItem__txt--l {
    font-size: 28px;
    line-height: 2;
}
.sceneListItem__txt--center {
    text-align: center;
}
.sceneListItem__markWrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.sceneListItem__mark {
    padding: 0 .5em;
    border-radius: 2.5em;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.5;
}
.sceneListItem__mark--wedding {
    background: #eebeca;
}
.sceneListItem__mark--baby {
    background: #eee0ad;
}
/* sceneBtnList */
.sceneBtnList {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sceneBtnList__item {
    margin: 0 1.6em;
}
.sceneBtnList__btn {
    padding: 0 4em;
    border: 1px solid #333;
    background: #fff;
    color: #333;
    line-height: 4;
    letter-spacing: .04em;
}
@media (any-hover: hover) {
    .sceneBtnList__btn:hover {
        background: #333;
        color: #fff;
    }
}
.sceneBtnList__btn::after {
    margin-left: 1em;
    border-color: transparent transparent transparent #333;
}
@media (any-hover: hover) {
    .sceneBtnList__btn:hover::after {
        border-color: transparent transparent transparent #fff;
    }
}
/* sceneModal */
.sceneModalContainer {
    width: 100%;
    padding: 64px calc(50% - 600px);
    background: #fef8fa;
}
.sceneModalHeader__ttl {
    margin: auto;
    padding: 0 2em;
    border-bottom: 1px solid #333;
}
.sceneModalHeader__ttlTxt {
    font-size: 28px;
}
.sceneModalHeader__ttlTxt--l {
    font-weight: bold;
    font-size: 36px;
}
.sceneModal__close {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    width: 4em;
    height: 4em;
    font-size: 20px;
    cursor: pointer;
}
.sceneModal__close::before,
.sceneModal__close::after {
    display: block;
    width: 3em;
    height: 1px;
    background: #333;
    content: '';
}
.sceneModal__close::before {
    transform: rotate(45deg);
    margin-bottom: auto;
}
.sceneModal__close::after {
    order: -1;
    transform: rotate(-45deg);
    margin-top: auto;
}
.sceneModalHeader {
    margin-bottom: 64px;
}
.sceneModalContent {
}
.detailSceneListParent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.detailSceneListParentItem {
    padding: 0 4rem;
}
.detailSceneListParentItem:not(:last-child) {
    border-right: 1px solid #b7b7b7;
}
.detailSceneListParentItem__ttl {
    font-size: 26px;
    line-height: 2.5;
    text-align: center;
}
.detailSceneList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.detailSceneListItem {
    width: 300px;
    padding: 0 16px;
}
.detailSceneListItem:nth-child(-n+4) {
    margin-bottom: 40px;
}
.detailSceneListItem__inner {
    display: block;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
}
@media (any-hover: hover) {
    .detailSceneListItem__inner:hover {
        opacity: .6;
        text-decoration: none;
    }
}
.detailSceneListItem__img {
    width: 100%;
    height: auto;
}
.detailSceneListItem__btn {
    background: #fff;
    color: #333;
}
.detailSceneListItem__btn::after {
    border-color: transparent transparent transparent #333;
}

@media screen and  (max-width: 640px) {
    /* sceneList */
    .sceneList {
        background: #f4f4f4;
        border: 1px solid #a8a4a2;
    }
    .sceneListItem {
        width: 100%;
        margin-bottom: 0;
    }
    .sceneListItem:not(:last-child) {
        border-bottom: 1px solid #a8a4a2;
    }
    .sceneListItem__inner {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 2.4vw;
    }
    .sceneListItem__inner::after {
        display: block;
        transform: rotate(45deg);
        transform-origin: top left;
        width: 4vw;
        height: 4vw;
        margin-left: auto;
        border-top: 1px solid #333;
        border-right: 1px solid #333;
        content: '';
    }
    .sceneListItem__img {
        width: 32vw;
        height: auto;
        margin-right: 2.4vw;
    }
    .sceneListItem__txt {
        font-weight: bold;
        font-size: 4.8vw;
        line-height: 1.75;
    }
    /* sceneModal */
    .sceneModalContainer {
        padding: 4vw;
    }
    .sceneModalHeader {
        margin-bottom: 4vw;
    }
    .sceneModalHeader__ttl {
        margin: auto;
        padding: 0 2em;
        border-bottom: 1px solid #333;
    }
    .sceneModalHeader__ttlTxt {
        font-size: 4vw;
    }
    .sceneModalHeader__ttlTxt--l {
        font-size: 4.8vw;
    }
    .sceneModal__close {
        font-size: 3.2vw;
    }
    .sceneModalContent {
    }
    .detailSceneListParent {
    }
    .detailSceneListParentItem {
        width: 100%;
        padding: 0;
        border: none !important;
    }
    .detailSceneListParentItem__ttl {
        font-weight: bold;
        font-size: 4.8vw;
    }
    .detailSceneList {
        justify-content: center;
    }
    .detailSceneList--flex-start {
        justify-content: flex-start;
    }
    .detailSceneListItem {
        width: 50%;
        margin-bottom: 4vw !important;
        padding: 0 1.6vw;
    }
    .detailSceneListItem__inner {
        height: 100%;
    }
    .detailSceneListItem__img {
    }
    .detailSceneListItem__btn {
        font-size: 3.2vw;
    }
    .detailSceneListItem__btn--s {
        font-size: 2.5vw;
        line-height: 4;
    }
    /* sceneBtnList */
    .sceneBtnList {
        flex-direction: column;
        align-items: stretch;
    }
    .sceneBtnList__item {
        margin: 0;
    }
    .sceneBtnList__item:not(:last-child) {
        margin-bottom: 1.6vw;
    }
    .sceneBtnList__btn {
        width: 92vw;
        margin: auto;
        padding: 0;
        font-weight: bold;
        font-size: 3.6vw;
        line-height: 3;
    }
}
