@charset "utf-8";

:root {
    --ja: "Noto Sans JP",
        sans-serif;
    --eng: "Noto Serif JP",
        serif;
    --default: .4s ease;
}

.w1920 {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

.pc-hidden {
    display: none;
}

.sp-hidden {
    display: block;
}

.inner-6 {
    margin: 0 6%;
}

.inner-12 {
    margin: 0 12%;
}

.inner-18 {
    margin: 0 18%;
}

.inner-24 {
    margin: 0 24%;
}

.desc.mb24 {
    margin-bottom: 24px;
}

.desc p {
    font-family: var(--ja);
    font-weight: 400;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    line-height: 2;
    color: #000;
  word-break: auto-phrase;
}

.morebtn {
    max-width: 300px;
    height: 52px;
    background-color: #494949;
    transition: var(--default);
}

.morebtn:hover {
    opacity: 50%;
}

.morebtn a {
    display: flex;
    padding: 0 32px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.morebtn a .link-text {
    font-family: var(--ja);
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    color: #fff;
}

.fixed-bnr {
    position: fixed;
    right: 45px;
    bottom: 22px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    /* 動きを滑らかに */
    z-index: 999;
    width: 385px;
}

.fixed-bnr.is-show {
    opacity: 1;
    visibility: visible;
}

.fixed-bnr .text {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
    color: #000000;
    font-family: var(--ja);
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
    text-align: center;
}

.fixed-bnr .text::before,
.fixed-bnr .text::after {
    width: 1px;
    height: 28px;
    content: "";
    background-color: #000000;
}

.fixed-bnr .text::before {
    margin-right: 0.5em;
    transform: rotate(-30deg);
}

.fixed-bnr .text::after {
    margin-left: 0.5em;
    transform: rotate(30deg);
}

.fixed-bnr .btnarea {
    display: flex;
    gap: 3px;
}

.fixed-bnr .btnarea .tel-link {
    background-color: #D2362E;
    color: #FFF;
    padding: 11px 0 9px;
    max-width: 199px;
    width: 100%;
    transition: var(--default);
}

.fixed-bnr .btnarea .tel-link .wrap {
    display: grid;
    grid-template-columns: 16px auto;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: 0px 8px;
    grid-template-areas:
        "icon num"
        ". time";
    width: fit-content;
    margin: 0 auto;
}

.fixed-bnr .btnarea .tel-link .icon {
    grid-area: icon;
    width: 16px;
}

.fixed-bnr .btnarea .tel-link .num {
    grid-area: num;
    font-family: var(--ja);
    font-weight: 500;
    font-size: 18px;
    line-height: calc(28/18);
    text-align: left;
    color: #fff;
}

.fixed-bnr .btnarea .tel-link .time {
    grid-area: time;
    font-family: var(--ja);
    font-weight: 500;
    font-size: 8px;
    line-height: calc(17/8);
    text-align: right;
    color: #fff;
}

.fixed-bnr .btnarea .c-link {
    max-width: 183px;
    width: 100%;
    padding: 21px 0 22px;
    background-color: #494949;
    color: #FFF;
    transition: var(--default);
}

.fixed-bnr .btnarea .tel-link:hover,
.fixed-bnr .btnarea .c-link:hover {
    opacity: 50%;
}

.fixed-bnr .btnarea .c-link .icon {
    width: 17px;
}

.fixed-bnr .btnarea .c-link .wrap {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    gap: 12px;
}

@media (max-width: 960px) {

    .inner-6,
    .inner-12,
    .inner-18 {
        margin: 0 auto;
        width: 90%;
    }

    .pc-hidden {
        display: block;
    }

    .sp-hidden {
        display: none;
    }

    .fixed-bnr {
        width: 100%;
        bottom: 0;
        right: auto;
        left: 0;
    }

    .fixed-bnr .btnarea .tel-link,
    .fixed-bnr .btnarea .c-link {
        max-width: none;
    }
}



/* 管理画面用 */
.gjs-dashed .fixed-bnr {
    opacity: 1;
    position: relative;
    inset: 0;
    visibility: visible;
}