:root {
    --img-height: calc((70vw - 40px) / 4 * 3);
}

/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%; /* for bugfix on iOS*/
}
html, body {
    -webkit-overflow-scrolling: touch;
    /* overflow: hidden; */
}
@media screen and (min-width:769px) {
    body {
        min-width: 1400px; /* header width 合わせ */
    }
}
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}
img {
    border:none;
    vertical-align: bottom;
}
a {
    outline:none;
    text-decoration:none;
}

/* pc, sp hide */
@media print, screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
}
@media print, screen and (min-width: 769px) {
    .sp {
        display: none !important;
    }
}

/* reviewIframe1 */
#reviewIframe1 {
    width: 100%;
    margin-bottom: 120px;
    position: relative;
}
#reviewIframe1 .review-index {
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    border: solid 1px #888;
    color: #222;
    position: absolute;
    top: 6px;
    right: 140px;
}
@media screen and (max-width: 768px) {
    #reviewIframe1 {
        margin-bottom: 60px;
    }
    #reviewIframe1 .review-index {
        width: calc(100% - 140px);
        position: relative;
        top: 0;
        right: 0;
        padding: 12px 16px;
        margin: 0 70px;
        font-size: 13px;
        justify-content: center;
    }
    #reviewIframe1 .review-index img {
        margin-right: 12px;
    }
}

/* swiper */
.swiper-container-wrapper {
    margin: 90px 100px 0;
}
.swiper-container {
    width: calc(100% - 80px);
}
.swiper-slide a {
    color: #222;
}
.swiper-slide dl {
    width: 100%;
    text-align: start;
}
.swiper-slide .reviews-img {
    width: 100%;
    height: calc(33vw - 250px);
    margin-bottom: 12px;
    object-fit: cover;
}
.swiper-slide .review-title {
    font-size: 16px;
    margin-bottom: 20px;
}
.swiper-slide .review-sub-title {
    font-size: 13px;
    margin-bottom: 24px;
}
.swiper-slide .review-place-tag {
    font-size: 12px;
    line-height: 1;
    padding: 3px 8px;
    display: inline-block;
    background: #888;
    border: 1px solid #888;
    color: #fff;
}
.swiper-slide .review-reception,
.swiper-slide .review-wedding-month {
    font-size: 12px;
    line-height: 1;
    padding: 3px 8px;
    color: #888;
}
.swiper-button-prev {
    top: calc(50%);
    left: 60px;
}
.swiper-button-next {
    top: calc(50%);
    right: 60px;
}
@media screen and (max-width: 768px) {
    .swiper-container-wrapper {
        margin: 0;
    }
    .swiper-container {
        width: 100%;
    }
    .swiper-slide {
        margin-bottom: 40px;
    }
    .swiper-slide .reviews-img {
        height: var(--img-height);
    }
    .swiper-button-prev {
        width: 30px;
        height: 30px;
        top: calc(var(--img-height) / 2 + 10px);
        left: 15%;
    }
    .swiper-button-next {
        width: 30px;
        height: 30px;
        top: calc(var(--img-height) / 2 + 10px);
        right: 15%;
    }
    .swiper-button-prev img,
    .swiper-button-next img {
        width: 30px;
        height: 30px;
    }
}
