@charset "UTF-8";

/* reset CSS */
html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -webkit-tap-highlight-color: transparent; /* 3*/
    font-size: 87.5%;
    /* 14px */
}
@media screen and (min-width: 1200px), print {
    html {
        font-size: 100%;
        /* 16px */
    }
}
body {
    margin: 0;
    font-family: YuGothic, "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, MS PGothic, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    overflow-x: hidden;
    position: relative;
    color: #161616;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, background-color 0.3s, opacity 0.3s;
}
@media (hover: hover) {
    a:hover {
        opacity: 0.7;
    }
}
svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
}

:root {
    scroll-behavior: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-size: inherit;
font-weight: inherit;
margin: 0;
}

/* 共通クラス */
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.p-3 {
    padding: 0.75rem !important;
}
.mt-30 {
    margin-top: 7.5rem !important;
}
.px-basic {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}
.omission-lines-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.ttl-pattern-4 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.ttl-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.ttl-icon::before {
    content: "";
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    background: no-repeat center/contain;
}

.ttl-icon--visibility::before {
    background-image: url(../images/icon-visibility.svg);
}
.container-lg {
    width: 100%;
    margin-inline: auto;
}
@media screen and (min-width: 992px) {
    .container-lg {
        max-width: 936px;
    }
}
@media screen and (min-width: 1200px), print {
    .container-lg {
        max-width: 1116px;
    }
}
@media screen and (min-width: 1400px) {
    .container-lg {
        max-width: 1200px;
    }
}

/* スライダー（Splide） */
.viewed-slider {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}
.splide__slide.post-card__item {
    width: min(100%, 192px);
}
.splide__arrow {
    position: absolute;
    top: 50%;
    z-index: 100;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50vw;
}

.splide__arrow--prev {
    left: 0.375rem;
}

.splide__arrow--next {
    right: 0.375rem;
}

.splide__arrow--prev .splide__arrow-img {
    transform: rotate(180deg);
}

.splide__arrow:disabled {
    display: inline-flex !important;
    opacity: 0;
    visibility: hidden;
}

.splide__arrow--prev:disabled {
    opacity: 0;
    visibility: hidden;
}

/* post-card */
.post-card__item {
    height: 100%;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
}

.splide__slide.post-card__item {
    width: min(100%, 192px);
}
.post-card__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card__thumb-wrap {
    width: min(100%, 166px);
}

.post-card__thumb-wrap img {
    -o-object-fit: cover;
        object-fit: cover;
    aspect-ratio: 166/104;
    width: 100%;
}

.post-card__thumb-wrap--min img {
    -o-object-fit: cover;
        object-fit: cover;
    aspect-ratio: 135/71;
    width: 100%;
}
.post-card__ttl {
    margin-top: 7px;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 700;
    color: #161616;
    flex-grow: 1;
}
@media screen and (min-width: 1200px), print {
    .post-card__ttl {
        font-size: 0.875rem;
    }
}
.info-label {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    -moz-column-gap: 1em;
        column-gap: 1em;
}

.info-label__item {
    display: flex;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #848484;
}

.info-label__item::before {
        content: "";
        display: block;
        flex-shrink: 0;
        width: 0.75rem;
        height: 0.75rem;
        margin-right: 0.25rem;
        -webkit-mask: no-repeat center/contain;
                mask: no-repeat center/contain;
        background-color: #848484;
}

.info-label__item--business_center::before {
    -webkit-mask-image: url(../images/icon-business_center.svg);
        mask-image: url(../images/icon-business_center.svg);
}

.info-label__item--universal_currency_alt::before {
    -webkit-mask-image: url(../images/icon-universal_currency_alt.svg);
        mask-image: url(../images/icon-universal_currency_alt.svg);
}

.info-label__item--location_on::before {
    -webkit-mask-image: url(../images/icon-location_on.svg);
        mask-image: url(../images/icon-location_on.svg);
}