@charset "utf-8";
/*
Theme Name: audio-pro2602
Theme URI: 
Author: チルチルミチル
*/

*, *::before, *::after {
    box-sizing: border-box;
}

/* 768-1024px header should keep a background, including TOP */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    html body #container {
        padding-top: 50px !important;
    }

    html body #header {
        background: rgba(255, 255, 255, 0.96) !important;
        box-shadow: 0 8px 24px rgba(80, 32, 24, 0.08) !important;
    }
}

/* Single page pager */
@media screen and (min-width: 640px) {
    #pager2 {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 1000px !important;
        margin: 0 auto 60px !important;
        padding: 30px 20px 0 !important;
        clear: both !important;
        text-align: center !important;
    }

    #pager2 ul {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    #pager2 li {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    #pager2 li:empty {
        display: none !important;
    }

    #pager2 a {
        display: inline-flex !important;
        text-decoration: none !important;
    }

    #pager2 span {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        min-width: 48px !important;
        min-height: 42px !important;
        padding: 6px 18px !important;
        line-height: 1.4 !important;
    }

    #pager2 img {
        display: block !important;
        width: auto !important;
        height: auto !important;
    }
}

@media screen and (max-width: 639px) {
    #pager2.pc {
        display: none !important;
    }

    .pager1.sp {
        display: block !important;
        width: 90% !important;
        margin: 28px auto 45px !important;
        text-align: center !important;
    }

    .pager1.sp ul {
        display: flex !important;
        align-items: stretch !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .pager1.sp li {
        display: flex !important;
        align-items: stretch !important;
        justify-content: center !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    .pager1.sp li:empty {
        display: none !important;
    }

    .pager1.sp a {
        display: inline-flex !important;
        text-decoration: none !important;
    }

    .pager1.sp span {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        min-height: 40px !important;
        padding: 7px 14px !important;
        line-height: 1.35 !important;
    }

    .pager1.sp img {
        display: block !important;
        width: auto !important;
        height: auto !important;
    }
}

html {
    font-size: 62.5%;
}

body {
    background: #FFFFFF;
    color: #333333;
    line-height: 140%;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a {
    text-decoration: none;
    color: #333;
}

#wrapper {
    width: 100%;
}

#container {
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* header */
/* -------------------------------------------------- */
#header {
    width: 100%;
    height: 50px;
    background: transparent;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1111;
}

#headInner {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

#headBarLogo {
    height: 60%;
    margin-left: 3%;

    & a {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;

        & img {
            height: 100%;
        }
    }
}

#headBtn {
    width: auto;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0.5em;
    top: 0.5em;
    z-index: 111111;
}

.menuBtn {
    width: 80%;
    aspect-ratio: 1 / 1;
    /* background: #fff; */
    border: 1px solid #ca2f2e;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0 0 0 7px;
}

.menuBtn .line {
    width: 24px;
    flex: 0 0 3px;
    height: 3px;
    background: #ca2f2e;
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menuBtn .lineBottom {
    width: 20px;
}

.lineTop {
    width: 100%;
}

.lineMiddle {
    width: 100%;
}

.lineBottom {
    width: 80%;
}

.menuBtn.open .lineTop {
    transform: translateY(0.7em) rotate(45deg);
}

.menuBtn.open .lineMiddle {
    transform: translateY(0) rotate(-45deg);
}

.menuBtn.open .lineBottom {
    opacity: 0;
    width: 0;
}

.drawer {
    display: none;
    width: min(82vw, 300px);
    border-radius: 12px;
    background: #fff;
    overflow: visible;
    border: 0.5px solid #ddd;
    margin-top: 8px;
    max-height: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 100%;
    right: auto;
    left: 0;
    z-index: 111110;
}

.drawer.open {
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.drawer nav {
    padding: 8px 0;
    text-align: left;
}

.drawer nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

.drawer nav ul li a {
    display: block;
    padding: 6px 18px;
    font-size: clamp(1.05rem, 2.8vw, 1.2rem);
    line-height: 1.25;
    color: #111;
    text-decoration: none;
    text-align: left;
    transition: background 0.1s;
}

.drawer nav ul li a:hover {
    background: #f0f0f0;
}

/* footer */
/* -------------------------------------------------- */
#footerPageTop {
    width: 100%;
    background: #2a2522;
}

#footerPageTop a {
    width: 100%;
    min-height: 58px;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75em;
}

#footerPageTop a::after {
    content: "";
    width: 0.6em;
    height: 0.6em;
    margin-top: 0.25em;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(45deg);
}

#footerPageTop a:hover {
    background: #ca2f2e;
    text-decoration: none;
}

@media screen and (min-width: 768px) {

    .cvBtn,
    a.commonLink,
    .linkSquare,
    .lineSquare,
    .mailSquare,
    #genreList li a,
    #brandList li a,
    #topLinkList li a,
    #activeList li a,
    #footerPageTop a {
        transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background-color 0.22s ease, color 0.22s ease;
        will-change: transform;
    }

    .cvBtn:hover,
    a.commonLink:hover,
    .linkSquare:hover,
    .lineSquare:hover,
    .mailSquare:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 26px rgba(38, 20, 12, 0.18);
        filter: brightness(1.04);
    }

    a.commonLink::after {
        transition: transform 0.22s ease;
    }

    a.commonLink:hover::after {
        transform: translateX(6px);
    }

    #activeList li a:hover {
        transform: translateY(-4px);
        filter: brightness(1.04);
    }

    .cvBtnTel,
    .cvBtnTel:hover,
    .cvBtnTel[aria-disabled="true"],
    .cvBtnTel[aria-disabled="true"]:hover {
        cursor: default;
        pointer-events: none;
        transform: none !important;
        filter: none !important;
    }

    #topLinkList li a,
    #topLinkList li a:hover {
        transform: none !important;
    }

    #topLinkList .linkListImg img {
        transition: transform 0.35s ease;
    }

    #topLinkList li a:hover .linkListImg img {
        transform: scale(1.04);
    }

    #genreList li a,
    #brandList li a {
        overflow: hidden;
    }

    #brandList li a {
        display: block;
    }

    #genreList li a:hover,
    #brandList li a:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 26px rgba(38, 20, 12, 0.18);
        filter: brightness(1.04);
    }

    #genreList li a img,
    #brandList li a img {
        transition: transform 0.35s ease;
    }

    #genreList li a:hover img,
    #brandList li a:hover img {
        transform: scale(1.03);
    }

    #footerPageTop a:hover::after {
        transform: translateY(-3px) rotate(45deg);
    }
}

/* セクション共通 */
/* -------------------------------------------------- */
.secInner {
    width: 92%;
    margin: 0 auto;
}

/* CONVERSION */
/* -------------------------------------------------- */
.cvSec {
    width: 100%;
    padding: 2em 5% 4em;
    /* background: linear-gradient(7deg, black, #545452); */
    background: #f4f4f4;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    flex-shrink: 0;
    z-index: 11111;
    overflow: hidden;
}

.cvSec::before {
    content: "";
    height: 110%;
    max-height: 270px;
    width: 42%;
    aspect-ratio: 2 / 3;
    background: url(./img/common/img_cv_audio.png) no-repeat bottom;
    background-size: contain;
    z-index: 0;
    position: absolute;
    right: -18vw;
    bottom: -7%;
}

/* .cvSec.another::before {
    content: "";
    width: 40%;
    height: auto;
    aspect-ratio: 2 / 3;
    background: url(./img/common/img_person01.png) no-repeat;
    background-size: contain;
    z-index: 0;
    position: absolute;
    right: -0.5em;
    bottom: 0;
} */

.cvSecInner {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    flex-shrink: 0;
    z-index: 1;

}

.cvTxt {
    width: 100%;
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);

    & p {
        width: 80%;
        margin-left: 0.25em;
        color: #333;
    }
}

.cvTxtTop {
    margin-bottom: 0.5em;
    padding: 0.25em 0.5em;
    background: #fff;
    color: #000;
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 800;
    font-style: italic;
}

.cvBtnWrap {
    width: 80%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    z-index: 1;
}

.cvBtnRow {
    width: 100%;
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
}

.cvBtn {
    height: 90px;
    border: none;
    border-radius: 1em;
    cursor: pointer;
    line-height: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    & .btnMain {
        font-size: clamp(1.6rem, 2.2vw, 2.4rem);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.25em;
        line-height: 1.1;
    }

    & .btnTxt {
        font-size: clamp(1.0rem, 1.2vw, 1.4rem);
    }

    & .btnIcon {
        width: auto;
        height: 0.8em;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;

        & img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}

.cvBtnInner {
    text-align: right;
    line-height: 0.75em;
}

.cvBtnLine {
    background: linear-gradient(180deg, rgba(0, 165, 68, 1), rgba(6, 199, 85, 1));
    color: #fff !important;
}

.cvBtnWeb {
    background: linear-gradient(180deg, rgba(185, 0, 2, 1), rgba(202, 47, 46, 1));
    color: #fff !important;
    padding-top: 0.25em;
}


.cvBtnTel {
    width: 100%;
    max-width: 600px;
    height: 100px;
    background: linear-gradient(180deg, rgb(229 50 0), rgba(255, 71, 19, 1));
    color: #fff;
    border-radius: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    overflow: hidden;
}

.cvBtnTel .telInner {
    width: 100%;
    padding: 0.5em 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.cvBtnTel .telIcon {
    width: auto;
    height: 4.8em;

    & img {
        height: 100%;
    }
}

.cvBtnTel .telBodyWrap {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cvBtnTel .telBody {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: left;
}

.telBodyInner {
    display: flex;
    align-items: center;
    gap: 0.35em;
}

.cvBtnTel .telTxt {
    width: 25%;
    aspect-ratio: 1 / 1;
    margin-left: -1.5em;
    border-right: 1px solid;
    border-radius: 50%;
    color: #fff;
    font-size: clamp(1.0rem, 1.0vw, 1.4rem);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    & span {
        font-size: clamp(1.2rem, 2.2vw, 2.2rem);
    }
}

.cvBtnTel .telNum {
    font-family: "Roboto", sans-serif;
    font-size: clamp(2.4rem, 3.2vw, 3.2rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
    line-height: 0.9em;
}

.cvBtnTel .telHours {
    color: #fff;
    font-size: clamp(0.8rem, 1.2vw, 1.4rem);
    font-weight: 600;
    line-height: normal;
}



/* -------------------------------------------------- */
/* PC */
/* -------------------------------------------------- */
@media screen and (min-width: 1025px) {

    #container {
        min-width: 0;
        padding-top: 118px;
    }

    #header {
        height: 118px;
        background: #fff;
        display: block;
        box-shadow: 0 8px 24px rgba(80, 32, 24, 0.08);
        z-index: 222000;
    }

    #headBar {
        width: min(1120px, 92%);
        min-width: 0;
        height: 74px;
        padding: 0;
        background: transparent;
        border-bottom: none;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        z-index: 222002;
    }

    #headBar.cf::before,
    #headBar.cf::after,
    #headBar .cf::before,
    #headBar .cf::after {
        content: "" !important;
        display: none !important;
    }

    #headBarLeft,
    #headBarRight,
    #pcContact {
        float: none;
    }

    #headBarLeft {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    #headBarLogo {
        height: auto;
        margin-left: 0;
        display: flex;
        align-items: center;
    }

    #headBarLogo a {
        display: flex;
        align-items: center;
        height: auto;
    }

    #headBarLogo img {
        width: 176px;
        height: auto;
        display: block;
    }

    #headBarRight {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 0;
    }

    #pcContact {
        padding-top: 0;
        display: flex;
        align-items: center;
        gap: 18px;
        min-width: 0;
    }

    #pcContactTop {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 1;
    }

    #pcContactTopLeft,
    #pcContactTopRight {
        float: none;
    }

    #pcContactTopRight {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
        padding-left: 32px;
    }

    #pcContactTel {
        margin-right: 0;
        padding-left: 32px;
        background-image: url(./img/common/icon_tel.svg);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 24px 24px;
        color: #ca2f2e;
        font-family: "Roboto", "Noto Sans JP", sans-serif;
        font-size: clamp(2.6rem, 2.5vw, 3.3rem);
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1;
        white-space: nowrap;
    }

    #pcContactTime {
        color: #2a2522;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: 0;
        text-align: left;
        display: inline-flex;
        align-items: center;
        line-height: 1.2;
        white-space: nowrap;
    }

    #pcContactHoliday {
        color: #ca2f2e;
        border: 1px solid rgba(202, 47, 46, 0.45);
        border-radius: 999px;
        padding: 3px 8px;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1;
        display: inline-flex;
        white-space: nowrap;
    }

    #pcContactBottom {
        display: block;
    }

    #pcContactForm {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    #pcContactForm a {
        width: auto;
        min-width: 138px;
        height: 42px;
        margin-right: 0;
        padding: 0 18px;
        border-radius: 4px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-shadow: 0 6px 14px rgba(38, 20, 12, 0.12);
        transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    }

    #pcContactForm a:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(38, 20, 12, 0.16);
        opacity: 0.94;
    }

    #pcContactForm a::before,
    #pcContactForm a::after {
        content: none;
    }

    #pcContactForm .lineSquare {
        background: linear-gradient(180deg, #00a544, #06c755);
    }

    #pcContactForm .mailSquare {
        background: linear-gradient(180deg, #b90002, #ca2f2e);
    }

    #pcContactForm .lineSquareTxt,
    #pcContactForm .mailSquareTxt {
        width: auto;
        padding: 0;
        background-image: none;
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
    }

    nav#headBar_btm {
        position: fixed;
        top: 74px;
        left: 0;
        width: 100%;
        min-width: 0;
        height: 44px;
        background: #fff;
        border-top: 1px solid #f3e8e2;
        border-bottom: 1px solid #efe2dc;
        z-index: 222001;
    }

    nav#headBar_btm ul {
        width: min(1120px, 92%);
        height: 100%;
        margin: 0 auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(18px, 2.5vw, 34px);
        text-align: center;
    }

    nav#headBar_btm ul li {
        margin-right: 0;
        display: block;
        font-size: inherit;
    }

    nav#headBar_btm ul li a {
        color: #2a2522;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.45rem;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        padding: 15px 0 14px;
        position: relative;
        transition: color 0.2s ease;
        white-space: nowrap;
    }

    nav#headBar_btm ul li a::after {
        content: "";
        width: 100%;
        height: 2px;
        background: #ca2f2e;
        border-radius: 999px;
        position: absolute;
        left: 0;
        bottom: 8px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    nav#headBar_btm ul li a:hover {
        color: #ca2f2e;
        text-decoration: none;
    }

    nav#headBar_btm ul li a:hover::after {
        transform: scaleX(1);
    }

    #headBar.slideIn {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: none;
    }

    #headBar.slideIn #pcContactTel,
    #headBar.slideIn #pcContactHoliday,
    #headBar.slideIn #pcContactTime {
        color: inherit;
    }

    #headBar.slideIn #pcContactTel {
        color: #ca2f2e;
        background-image: url(./img/common/icon_tel.svg);
    }

    #headBar.slideIn #pcContactHoliday {
        color: #ca2f2e;
    }

    #headBar.slideIn #pcContactTime {
        color: #2a2522;
    }

    #headBar.slideIn #pcContactForm .lineSquareTxt,
    #headBar.slideIn #pcContactForm .mailSquareTxt {
        color: #fff;
        background-image: none;
    }

    .cvSec {
        min-height: auto;
        padding: 52px max(5%, calc((100vw - 800px) / 2)) 48px;
        background: #f4f4f4;
        display: grid;
        grid-template-columns: minmax(240px, 0.65fr) minmax(540px, 1.35fr);
        gap: clamp(26px, 4vw, 54px);
        align-items: center;
    }

    .cvSec::before {
        right: max(-5vw, -80px);
        bottom: -32px;
        width: min(24%, 260px);
        max-height: none;
        opacity: 0.55;
        pointer-events: none;
    }

    .cvTxt {
        grid-column: 1 / -1;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .cvTxtTop {
        box-sizing: border-box;
        width: 100%;
        margin-bottom: 0.75em;
        padding: 0.45em 0.65em;
        background: #fff;
        color: #111;
        font-size: clamp(2.4rem, 2.2vw, 3.2rem);
        line-height: 1.35;
        font-weight: 800;
    }

    .cvTxt p {
        width: 100%;
        margin: 0;
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .cvBtnWrap {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
        min-width: 0;
        justify-self: center;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        position: relative;
        z-index: 1;
    }

    .cvBtnRow {
        display: contents;
    }

    .cvBtn {
        height: 80px;
        border-radius: 4px;
        box-shadow: 0 8px 18px rgba(38, 20, 12, 0.14);
    }

    .cvBtnLine {
        order: 1;
    }

    .cvBtnWeb {
        order: 2;
    }

    .cvBtnInner {
        text-align: center;
        line-height: 1.05;
    }

    .cvBtn .btnMain {
        font-size: clamp(2rem, 2.1vw, 2.6rem);
        font-weight: 700;
        white-space: nowrap;
    }

    .cvBtn .btnTxt {
        margin-top: 0.28em;
        display: block;
        font-size: 1.45rem;
        white-space: nowrap;
    }

    .cvBtnTel {
        order: 3;
        width: 100%;
        max-width: none;
        min-width: 0;
        height: 80px;
        border-radius: 4px;
        box-shadow: 0 8px 18px rgba(38, 20, 12, 0.16);
    }

    .cvBtnTel .telInner {
        height: 100%;
        padding: 10px 14px;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .cvBtnTel .telTxt {
        width: auto;
        height: auto;
        aspect-ratio: auto;
        margin-left: 0;
        border-right: none;
        border-radius: 0;
        background: transparent;
        font-size: 1.35rem;
        line-height: 1;
        flex-shrink: 0;
        flex-direction: row;
        gap: 0.15em;
    }

    .cvBtnTel .telTxt span {
        font-size: inherit;
    }

    .cvBtnTel .telBodyWrap {
        width: auto;
        flex: 0 1 auto;
        min-width: 0;
        justify-content: center;
    }

    .cvBtnTel .telBody {
        align-items: center;
        text-align: center;
    }

    .telBodyInner {
        gap: 0.35em;
        flex-wrap: nowrap;
    }

    .cvBtnTel .telIcon {
        height: 2.25em;
    }

    .cvBtnTel .telNum {
        font-size: clamp(2.5rem, 2.2vw, 3.1rem);
        line-height: 1;
        white-space: nowrap;
    }

    .cvBtnTel .telHours {
        margin-top: 0.4em;
        display: block;
        font-size: 1.15rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    #footNav {
        width: 100%;
        padding: 34px 0;
        background: #f7f0ed;
        border-top: 1px solid #eaded8;
    }

    #footNavInner {
        width: min(1120px, 92%);
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px clamp(24px, 4vw, 56px);
    }

    #footNav .footNavColumn {
        float: none;
        width: auto;
        flex: 0 1 auto;
        padding: 0;
    }

    #footNav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    #footNav ul li {
        margin: 0;
        padding: 0;
    }

    #footNav ul li a {
        color: #2a2522;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.3rem;
        font-weight: 500;
        line-height: 1.45;
        letter-spacing: 0;
        display: flex;
        align-items: flex-start;
        gap: 0.55em;
        transition: color 0.2s ease;
    }

    #footNav ul li a::before {
        content: "";
        width: 0.48em;
        height: 0.48em;
        margin-top: 0.48em;
        border-radius: 50%;
        background: #ff4713;
        flex-shrink: 0;
    }

    #footNav ul li a:hover {
        color: #ca2f2e;
        text-decoration: none;
    }

    #footEnd {
        width: 100%;
        padding: 28px 0 14px;
        background: #fff;
        color: #2a2522;
        border-top: 1px solid #eaded8;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.3rem;
        line-height: 1.6;
        letter-spacing: 0;
    }

    #footEndInner {
        width: min(1120px, 92%);
        margin: 0 auto;
    }

    #footEndLogo {
        margin-bottom: 0;
        text-align: center;
    }

    #footEndLogo img {
        width: 190px;
        height: auto;
        margin: 0 auto 10px;
        display: block;
    }

    #footEndLogo p {
        margin: 0;
        color: #666;
        font-size: 1.2rem;
        line-height: 1.6;
        letter-spacing: 0;
    }

    #footCopyright {
        padding: 10px 0 24px;
        background: #fff;
        color: #777;
        border-top: 1px solid #f2e9e5;
        font-family: "Roboto", "Noto Sans JP", sans-serif;
        font-size: 1.2rem;
        line-height: 1;
        letter-spacing: 0;
    }

    #areaInner {
        width: min(1120px, 92%) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 440px minmax(0, 1fr) !important;
        column-gap: clamp(30px, 4vw, 60px) !important;
        align-items: center !important;
    }

    #areaMap {
        float: none !important;
        clear: both !important;
        width: 440px !important;
        height: 460px !important;
        margin: 0 !important;
        background-image: url(./img/top/area_map.webp) !important;
        background-position: right center !important;
        background-repeat: no-repeat !important;
        background-size: 405px 411px !important;
    }

    #areaMap>div {
        transform: scale(0.88) !important;
        transform-origin: left top !important;
    }

    #pin01 { left: 163px !important; top: 0 !important; }
    #pin02 { left: 200px !important; top: 111px !important; }
    #pin03 { left: 62px !important; top: 70px !important; }
    #pin04 { left: 295px !important; top: 132px !important; }
    #pin05 { left: 290px !important; top: 202px !important; }
    #pin06 { left: 220px !important; top: 295px !important; }
    #pin07 { left: 167px !important; top: 352px !important; }
    #pin08 { left: 79px !important; top: 211px !important; }
    #pin09 { left: 79px !important; top: 370px !important; }
    #pin10 { left: 0 !important; top: 229px !important; }

    #areaHead {
        grid-column: 1 / -1 !important;
    }

    #areaPref {
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        align-self: center !important;
    }

    #AudioListInner {
        width: min(1120px, 88%) !important;
        margin: 0 auto !important;
        padding: clamp(170px, 11vw, 205px) 0 110px !important;
        text-align: center !important;
    }

    #AudioList {
        background-image: url(./img/top/bg_list_pc.jpg) !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        background-size: 100% auto !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    #AudioList .areaLead,
    #AudioList .areaTitle {
        color: #fff !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45) !important;
    }

    #AudioList .areaHead {
        margin-bottom: 64px !important;
    }

    #AudioList .areaHead::after {
        background-color: #fff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
    }

    #AudioListGenre {
        margin-bottom: 64px !important;
    }

    #AudioList #brandList {
        margin-bottom: 36px !important;
    }

    #AudioList #genreList,
    #AudioList #brandList {
        width: 100% !important;
    }

    #AudioList #genreList li {
        width: 23.5% !important;
    }

    #AudioList #brandList li {
        width: 15% !important;
    }

    #AudioList #brandList li:nth-child(n+10) {
        display: block !important;
    }

    #choice,
    #area,
    #AudioList,
    #faq,
    #voice,
    #method,
    #active,
    .cvSec {
        scroll-margin-top: 138px;
    }

    .panels .panel .tabs {
        display: none !important;
    }

    .panels .panel {
        display: flex !important;
        flex-direction: column !important;
    }

    .methodPanelTitle {
        margin: 0;
        padding: 1em 0;
        background: #333;
        color: #fff;
        font-size: clamp(1.6rem, 1.7vw, 1.9rem);
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.08em;
        text-align: center;
    }

    .panels .panel .methodInner {
        border-top: none !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .panels .panel .methodInner .linkArea {
        margin-top: auto !important;
    }

    .panels .panel .methodInner .commonLink {
        height: 64px !important;
        min-height: 64px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}


/* -------------------------------------------------- */
/* TAB */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {}

@media screen and (max-width: 1024px) {

    #container {
        min-width: 0 !important;
        padding-top: 50px !important;
    }

    #header {
        width: 100% !important;
        height: 50px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 222000 !important;
        box-shadow: 0 8px 24px rgba(80, 32, 24, 0.08) !important;
    }

    #headBar.pc,
    nav#headBar_btm.pc {
        display: none !important;
    }

    #headInner.sp {
        width: 100% !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }

    #headInner #headBarLogo {
        height: 60% !important;
        margin-left: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    #headInner #headBarLogo a {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #headInner #headBarLogo img {
        width: auto !important;
        height: 100% !important;
        display: block !important;
    }

    #headBtn {
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        left: 0.5em !important;
        top: 0 !important;
        z-index: 222002 !important;
    }

    .menuBtn {
        width: 40px !important;
        height: 40px !important;
        aspect-ratio: auto !important;
        background: #fff !important;
    }

    .drawer {
        top: 50px !important;
        left: 0.5em !important;
        right: auto !important;
        z-index: 222001 !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    body .cvSec {
        min-height: 340px !important;
        padding: 54px max(5%, calc((100vw - 800px) / 2)) 58px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 14px !important;
        background: #f4f4f4 !important;
        overflow: hidden !important;
    }

    body .cvSec::before {
        right: max(5%, calc((100vw - 840px) / 2)) !important;
        top: 40px !important;
        bottom: 10px !important;
        width: min(42.5%, 340px) !important;
        height: auto !important;
        aspect-ratio: auto !important;
        max-height: none !important;
        background-size: auto 100% !important;
        background-position: right bottom !important;
        opacity: 0.95 !important;
        pointer-events: none !important;
        z-index: 2 !important;
    }

    body .cvSec .cvTxt {
        width: 100% !important;
        max-width: 800px !important;
        grid-column: auto !important;
        position: relative !important;
        z-index: 1 !important;
    }

    body .cvSec .cvTxtTop {
        box-sizing: border-box !important;
        width: 100% !important;
        margin-bottom: 0.55em !important;
        padding: 0.38em 0.58em !important;
        font-size: clamp(2.4rem, 2.4vw, 3.2rem) !important;
        line-height: 1.32 !important;
        position: relative !important;
    }

    body .cvSec .cvTxt p {
        width: min(67.5%, 540px) !important;
        max-width: 540px !important;
        margin: 0 !important;
        font-size: 1.55rem !important;
        line-height: 1.85 !important;
    }

    body .cvSec .cvBtnWrap {
        width: min(67.5%, 540px) !important;
        max-width: 540px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        grid-column: auto !important;
        justify-self: auto !important;
        position: relative !important;
        z-index: 3 !important;
    }

    body .cvSec .cvBtnRow {
        order: 1 !important;
        width: 100% !important;
        max-width: none !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    body .cvSec .cvBtnLine {
        order: 1 !important;
        height: 80px !important;
    }

    body .cvSec .cvBtnWeb {
        order: 2 !important;
        height: 80px !important;
    }

    body .cvSec .cvBtnTel {
        order: 2 !important;
        width: 100% !important;
        max-width: none !important;
        height: 80px !important;
    }

    body .cvSec .cvBtnTel .telInner {
        height: 100% !important;
        padding: 0 !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    body .cvSec .cvBtnTel .telTxt {
        width: 156px !important;
        height: 100% !important;
        aspect-ratio: auto !important;
        margin-left: 0 !important;
        border-right: 1px solid rgba(255, 255, 255, 0.45) !important;
        border-radius: 0 !important;
        background: rgba(160, 30, 0, 0.14) !important;
        font-size: 2.05rem !important;
        line-height: 1.35 !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    body .cvSec .cvBtnTel .telTxt span {
        font-size: 1.35rem !important;
    }

    body .cvSec .cvBtnTel .telBodyWrap {
        width: auto !important;
        flex: 1 !important;
        min-width: 0 !important;
        justify-content: center !important;
    }

    body .cvSec .cvBtnTel .telBody {
        align-items: center !important;
        text-align: center !important;
    }

    body .cvSec .telBodyInner {
        gap: 0.55em !important;
        flex-wrap: nowrap !important;
    }

    body .cvSec .cvBtnTel .telIcon {
        height: 3.1em !important;
    }

    body .cvSec .cvBtnTel .telNum {
        font-size: clamp(3rem, 3vw, 3.8rem) !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    body .cvSec .cvBtnTel .telHours {
        margin-top: 0.4em !important;
        display: block !important;
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    #areaInner {
        width: min(1000px, 92%) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: minmax(300px, 36%) minmax(0, 1fr) !important;
        column-gap: clamp(24px, 4vw, 44px) !important;
        row-gap: 24px !important;
        align-items: start !important;
    }

    #areaHead {
        grid-column: 1 / -1 !important;
        margin-bottom: 0.8em !important;
    }

    #areaMap {
        float: none !important;
        clear: both !important;
        width: min(330px, 100%) !important;
        height: 350px !important;
        margin: 0 !important;
        background-image: url(./img/top/area_map.webp) !important;
        background-position: right center !important;
        background-repeat: no-repeat !important;
        background-size: 310px 315px !important;
    }

    #areaMap>div {
        transform: scale(0.74) !important;
        transform-origin: left top !important;
    }

    #pin01 { left: 125px !important; top: 0 !important; }
    #pin02 { left: 154px !important; top: 85px !important; }
    #pin03 { left: 48px !important; top: 54px !important; }
    #pin04 { left: 227px !important; top: 102px !important; }
    #pin05 { left: 223px !important; top: 155px !important; }
    #pin06 { left: 169px !important; top: 227px !important; }
    #pin07 { left: 129px !important; top: 271px !important; }
    #pin08 { left: 61px !important; top: 162px !important; }
    #pin09 { left: 61px !important; top: 285px !important; }
    #pin10 { left: 0 !important; top: 176px !important; }

    #areaPref {
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
        border-spacing: 0 !important;
        align-self: start !important;
    }

    .areaPrefWrap {
        display: grid !important;
        grid-template-columns: 72px minmax(0, 1fr) !important;
        gap: 10px !important;
        align-items: center !important;
        margin-bottom: 8px !important;
    }

    .areaPrefHead {
        width: auto !important;
        display: flex !important;
        justify-content: flex-end !important;
    }

    #AudioList {
        background-image: url(./img/top/bg_list_pc.jpg) !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        background-size: 100% auto !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    #AudioListInner {
        width: min(1120px, 90%) !important;
        margin: 0 auto !important;
        padding: clamp(120px, 14vw, 430px) 0 70px !important;
        text-align: center !important;
    }

    #AudioList .areaLead,
    #AudioList .areaTitle {
        color: #fff !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45) !important;
    }

    #AudioList .areaHead {
        margin-bottom: 56px !important;
    }

    #AudioList .areaHead::after {
        background-color: #fff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
    }

    #AudioListGenre {
        margin-bottom: 56px !important;
    }

    #AudioList #genreList li {
        width: 23.5% !important;
    }

    #AudioList #brandList {
        gap: 20px 2% !important;
        margin-bottom: 32px !important;
    }

    #AudioList #brandList li {
        width: 15% !important;
    }

    #AudioList #brandList li:nth-child(n+10) {
        display: block !important;
    }

    .panels {
        width: 90% !important;
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 3% !important;
    }

    .panels .panel {
        width: 48.5% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .panels .panel .methodImg {
        width: 100% !important;
        aspect-ratio: 5 / 3 !important;
        overflow: hidden !important;
    }

    .panels .panel .methodImg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .panels .panel .tabs {
        display: none !important;
    }

    .methodPanelTitle {
        display: block !important;
        margin: 0 !important;
        padding: 1em 0 !important;
        background: #333 !important;
        color: #fff !important;
        font-size: clamp(1.6rem, 2vw, 1.9rem) !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        letter-spacing: 0.08em !important;
        text-align: center !important;
    }

    .panels .panel .methodInner {
        border-top: none !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .panels .panel .methodInner .linkArea {
        margin-top: auto !important;
    }

    .panels .panel .methodInner .commonLink {
        height: 64px !important;
        min-height: 64px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    #activeList {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    #activeList li {
        width: 50% !important;
    }

    #activeList li a {
        aspect-ratio: 3.8 / 1 !important;
    }

    #footNav {
        width: 100% !important;
        padding: 34px 0 !important;
        background: #f7f0ed !important;
        border-top: 1px solid #eaded8 !important;
    }

    #footNavInner {
        width: min(1120px, 92%) !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 24px clamp(24px, 4vw, 56px) !important;
    }

    #footNav .footNavColumn {
        float: none !important;
        width: auto !important;
        flex: 0 1 auto !important;
        padding: 0 !important;
    }

    #footNav ul {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        display: grid !important;
        gap: 8px !important;
    }

    #footNav ul li {
        margin: 0 !important;
        padding: 0 !important;
    }

    #footNav ul li a {
        color: #2a2522 !important;
        font-family: "Noto Sans JP", sans-serif !important;
        font-size: 1.3rem !important;
        font-weight: 500 !important;
        line-height: 1.45 !important;
        letter-spacing: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.55em !important;
        transition: color 0.2s ease !important;
    }

    #footNav ul li a::before {
        content: "" !important;
        width: 0.48em !important;
        height: 0.48em !important;
        margin-top: 0.48em !important;
        border-radius: 50% !important;
        background: #ff4713 !important;
        flex-shrink: 0 !important;
    }

    #footEnd {
        width: 100% !important;
        padding: 28px 0 14px !important;
        background: #fff !important;
        color: #2a2522 !important;
        border-top: 1px solid #eaded8 !important;
        font-family: "Noto Sans JP", sans-serif !important;
        font-size: 1.3rem !important;
        line-height: 1.6 !important;
        letter-spacing: 0 !important;
    }

    #footEndInner {
        width: min(1120px, 92%) !important;
        margin: 0 auto !important;
    }

    #footEndLogo {
        margin-bottom: 0 !important;
        text-align: center !important;
    }

    #footEndLogo img {
        width: 190px !important;
        height: auto !important;
        margin: 0 auto 10px !important;
        display: block !important;
    }

    #footEndLogo p {
        margin: 0 !important;
        color: #666 !important;
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
        letter-spacing: 0 !important;
    }

    #footCopyright {
        padding: 10px 0 24px !important;
        background: #fff !important;
        color: #777 !important;
        border-top: 1px solid #f2e9e5 !important;
        font-family: "Roboto", "Noto Sans JP", sans-serif !important;
        font-size: 1.2rem !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
    }
}


@media screen and (min-width: 1025px) {

    #fv {
        height: auto !important;
        aspect-ratio: 1920 / 800 !important;
        background-position: center center !important;
        background-size: 100% 100% !important;
        overflow: hidden !important;
        z-index: 0 !important;
    }

    #fv::before {
        background-position: center center !important;
        background-size: 100% 100% !important;
    }

    #fvCc {
        display: none !important;
    }

    body .cvSec {
        min-height: 340px !important;
        padding: 54px max(5%, calc((100vw - 800px) / 2)) 58px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 14px !important;
        background: #f4f4f4 !important;
        overflow: hidden !important;
    }

    body .cvSec::before {
        right: max(5%, calc((100vw - 840px) / 2)) !important;
        top: 40px !important;
        bottom: 10px !important;
        width: min(42.5%, 340px) !important;
        height: auto !important;
        aspect-ratio: auto !important;
        max-height: none !important;
        background-size: auto 100% !important;
        background-position: right bottom !important;
        opacity: 0.95 !important;
        pointer-events: none !important;
        z-index: 2 !important;
    }

    body .cvSec .cvTxt {
        width: 100% !important;
        max-width: 800px !important;
        grid-column: auto !important;
        position: relative !important;
        z-index: 1 !important;
    }

    body .cvSec .cvTxtTop {
        box-sizing: border-box !important;
        width: 100% !important;
        margin-bottom: 0.55em !important;
        padding: 0.38em 0.58em !important;
        font-size: clamp(2.4rem, 2.4vw, 3.2rem) !important;
        line-height: 1.32 !important;
        position: relative !important;
    }

    body .cvSec .cvTxt p {
        width: min(67.5%, 540px) !important;
        max-width: 540px !important;
        margin: 0 !important;
        font-size: 1.55rem !important;
        line-height: 1.85 !important;
    }

    body .cvSec .cvBtnWrap {
        width: min(67.5%, 540px) !important;
        max-width: 540px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        grid-column: auto !important;
        justify-self: auto !important;
        position: relative !important;
        z-index: 3 !important;
    }

    body .cvSec .cvBtnRow {
        order: 1 !important;
        width: 100% !important;
        max-width: none !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    body .cvSec .cvBtnLine {
        order: 1 !important;
        height: 80px !important;
    }

    body .cvSec .cvBtnWeb {
        order: 2 !important;
        height: 80px !important;
    }

    body .cvSec .cvBtnTel {
        order: 2 !important;
        width: 100% !important;
        max-width: none !important;
        height: 80px !important;
    }

    body .cvSec .cvBtnTel .telInner {
        height: 100% !important;
        padding: 0 !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    body .cvSec .cvBtnTel .telTxt {
        width: 156px !important;
        height: 100% !important;
        aspect-ratio: auto !important;
        margin-left: 0 !important;
        border-right: 1px solid rgba(255, 255, 255, 0.45) !important;
        border-radius: 0 !important;
        background: rgba(160, 30, 0, 0.14) !important;
        font-size: 2.05rem !important;
        line-height: 1.35 !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    body .cvSec .cvBtnTel .telTxt span {
        font-size: 1.35rem !important;
    }

    body .cvSec .cvBtnTel .telBodyWrap {
        width: auto !important;
        flex: 1 !important;
        min-width: 0 !important;
        justify-content: center !important;
    }

    body .cvSec .cvBtnTel .telBody {
        align-items: center !important;
        text-align: center !important;
    }

    body .cvSec .telBodyInner {
        gap: 0.55em !important;
        flex-wrap: nowrap !important;
    }

    body .cvSec .cvBtnTel .telIcon {
        height: 3.1em !important;
    }

    body .cvSec .cvBtnTel .telNum {
        font-size: clamp(3rem, 3vw, 3.8rem) !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    body .cvSec .cvBtnTel .telHours {
        margin-top: 0.4em !important;
        display: block !important;
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    html body .cvSec {
        padding-right: max(5%, calc((100vw - 800px) / 2)) !important;
        padding-left: max(5%, calc((100vw - 800px) / 2)) !important;
    }

    html body .cvSec::before {
        right: max(5%, calc((100vw - 840px) / 2)) !important;
        top: 40px !important;
        bottom: 10px !important;
        width: min(42.5%, 340px) !important;
        height: auto !important;
        aspect-ratio: auto !important;
        max-height: none !important;
        background-size: auto 100% !important;
        background-position: right bottom !important;
        z-index: 2 !important;
    }

    html body .cvSec .cvTxt {
        width: 100% !important;
        max-width: 800px !important;
    }

    html body .cvSec .cvTxt p,
    html body .cvSec .cvBtnWrap {
        width: min(67.5%, 540px) !important;
        max-width: 540px !important;
    }
}


/* -------------------------------------------------- */
/* SP */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {

    .cvSec#topCv {
        padding: 2em 3% 1em;
    }

    .cvSec {
        padding: 1em 3% 1em;
    }

    /* .cvSec::before, .cvSec::after {
        content: none;
    } */

    .cvBtnRow {
        width: 100%;
    }

    .cvBtn {
        height: auto;
        max-height: 50px;
        padding: 0.5em 0;
        border-radius: 2px;
    }

    .cvBtnWeb {}

    .cvBtnTel {
        height: auto;
        height: 45px;
        border-radius: 2px;
    }

    .cvBtnTel .telIcon {
        display: flex;
        width: auto;
        height: 1.8em;
    }

    #method .methodPanelTitle.pc {
        display: none !important;
    }

    #method .panels .panel .tabs {
        display: flex !important;
    }

    #footFix {
        width: 100% !important;
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1000 !important;
    }

    #spContactWrap {
        background: #fff;
        position: relative;
    }

    #spContact {
        & .cvBtnTel {
            width: 32%;
            height: 48px;
            border-radius: 8px !important;
            overflow: hidden !important;
        }

        & .cvBtnTel .telTxt {
            width: auto;
            aspect-ratio: auto;
            margin-left: 0;
            border-right: none;
            font-size: clamp(1.0rem, 1.2vw, 1.4rem);
            font-weight: 400;
            line-height: 1.3;

            & span {
                font-size: clamp(1.6rem, 2.2vw, 2.4rem);
                font-weight: 600;
            }
        }

        & .cvBtn {
            width: 32%;
            height: 48px;
            border-radius: 8px !important;
            overflow: hidden !important;
        }
    }

    #footNav {
        width: 100% !important;
        padding: 20px 0 !important;
        background: #f7f0ed !important;
        border-top: 1px solid #eaded8 !important;
        color: #2a2522 !important;
    }

    #footNavInner {
        width: 92% !important;
        margin: 0 auto !important;
        display: block !important;
    }

    #footNav .footNavColumn {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }

    #footNav ul {
        margin: 0 0 14px !important;
        padding: 0 0 14px !important;
        list-style: none !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px 2% !important;
        border-bottom: 1px solid #eaded8 !important;
    }

    #footNav .footNavColumn:last-child ul {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    #footNav ul li {
        width: 49% !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.35 !important;
    }

    #footNav ul li a {
        color: #2a2522 !important;
        font-family: "Noto Sans JP", sans-serif !important;
        font-size: 1.2rem !important;
        font-weight: 500 !important;
        line-height: 1.45 !important;
        letter-spacing: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.55em !important;
        text-decoration: none !important;
    }

    #footNav ul li a::before {
        content: "" !important;
        width: 0.48em !important;
        height: 0.48em !important;
        margin-top: 0.5em !important;
        border-radius: 50% !important;
        background: #ff4713 !important;
        flex-shrink: 0 !important;
    }

    #footEnd {
        width: 100% !important;
        padding: 22px 4% 12px !important;
        background: #fff !important;
        color: #2a2522 !important;
        border-top: 1px solid #eaded8 !important;
        text-align: center !important;
    }

    #footEndInner,
    #footEndLogo {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
    }

    #footEndLogo img {
        width: 160px !important;
        height: auto !important;
        margin: 0 auto 8px !important;
        display: block !important;
    }

    #footEndLogo p {
        margin: 0 !important;
        color: #666 !important;
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        letter-spacing: 0 !important;
    }

    #footCopyright {
        padding: 10px 0 calc(74px + env(safe-area-inset-bottom, 0px)) !important;
        background: #fff !important;
        color: #777 !important;
        border-top: 1px solid #f2e9e5 !important;
        font-size: 1.1rem !important;
        line-height: 1 !important;
        text-align: center !important;
    }
}

@media screen and (max-width: 639px) {
    #spContact {
        display: flex;
        width: 100%;
        padding: 0.5em;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
}
