/* ---------
基本設定
----------- */

:root {
    /* フォント */
    --main-font: "Zen Kaku Gothic New", sans-serif;
    --sub-font: "Noto Sans JP", sans-serif;
    --point-font: "Outfit", sans-serif;
    /* 色  */
    --main-color: #2F2F2F;
    --sub-color: #B8972C;
    --point-color: #fff;
    --gold-color: #7B682C;
}

body {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--main-color);
    font-family: var(--main-font);
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* パンくず */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 0 20px;
    padding-bottom: 4px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
}

.breadcrumb-link,
.current {
    font-size: 12px;
    font-weight: 400;
    color: var(--main-color);
    line-height: calc(16 / 12);
    font-family: var(--sub-font);
}

.home-icon {
    display: block;
    background: url(../images/common/ic_round-home.png) center / cover no-repeat;
    width: 16px;
    height: 16px;
}

.arrow {
    width: 5px;
    height: 5px;
    border: 0;
    border-top: solid 1px var(--main-color);
    border-right: solid 1px var(--main-color);
    transform: rotate(45deg);
    margin: 0 5px;
}


/* 表示 */
.sp_in {
    display: inline-block;
}

.sp-layout {
    display: block;
}

/* 非表示 */
.pc_in,
.pc-layout {
    display: none;
}


@media (min-width:768px) {


    /* パンくず */
    .breadcrumb {
        padding-bottom: 8px;
    }

    .sp_in {
        display: none;
    }

    .pc_in {
        display: inline-block;
    }

    .sp-layout {
        display: none;
    }

    .pc-layout {
        display: block;
    }

}