@charset "UTF-8";
/*---------------------------------

base

---------------------------------*/
:root {
    --layout-width-inner: 1010px;
    --layout-width-inner-lg: 1170px;
    --layout-width-inner-sm: 850px;
    --z-index-cookie: 10000;
    --z-index-modal: 1000;
    --z-index-header: 100;
    --z-index-banner: 10;
    --color-base: #000;
    --color-white: #FFF;
    --color-primary: #BB262B;
    --color-secondary: #FF0000;
    --color-gray: #707070;
    --color-gray02: #D9D9D9;
    --color-gray03: #666;
    --bg-color-black: #222;
    --bg-color-gray: #F3F3F3;
    --bg-color-gray02: #E7E7E7;
    --bg-color-gray03: #F4F4F4;
    --bg-color-gray04: #C3C3C3;
    --bg-color-yellow: #FFFCED;
    --bg-color-yellow02: #FFE000;
    --bg-color-yellow03: #FFF5BF;
    --bg-color-yellow04: #FFED8E;
    --category-color01: #72A7E8;
    --category-color02: #9988F2;
    --category-color03: #EC7467;
    --category-color04: #CA565A;
    --category-color05: #F5B247;
    --category-color06: #56C083;
    --font-base: "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: inherit;
    vertical-align: baseline;
}
header, footer, nav, section, article, aside, figure, figcaption, main {
    display: block;
}
body {
    color: var(--color-base);
    font-family: var(--font-base);
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
li, dd {
    list-style-type: none;
}
img {
    max-width: 100%;
    height: auto;
    border-style: none;
    vertical-align: bottom;
}
[type=checkbox],
[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
[type=checkbox] + span,
[type=radio] + span {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0 0 0 1.2em;
    cursor: pointer;
}
[type=checkbox] + span::before {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 1em;
    height: 1em;
    border: 1px solid var(--color-base);
    background: var(--color-white);
    content: "";
}
[type=checkbox] + span::after {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    rotate: -45deg;
    opacity: 0;
    width: 1em;
    height: 0.6em;
    margin-top: -0.2em;
    border-bottom: 3px solid var(--color-base);
    border-left: 3px solid var(--color-base);
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    content: "";
}
[type=checkbox]:checked + span::after {
    opacity: 1;
}
[type=radio] + span::before {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 1em;
    height: 1em;
    border: 1px solid var(--color-base);
    border-radius: 50%;
    background: var(--color-white);
    content: "";
}
[type=radio] + span::after {
    position: absolute;
    top: 50%;
    left: 4px;
    translate: 0 -50%;
    opacity: 0;
    width: 0.6em;
    height: 0.6em;
    border: 1px solid transparent;
    border-radius: 50%;
    background: var(--color-base);
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    content: "";
}
[type=radio]:checked + span::after {
    opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}


/*---------------------------------

Utility

---------------------------------*/
@media (min-width: 768px) {
    .u-only-sp {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .u-only-pc {
        display: none !important;
    }
}

/*
    背景色
---------------------------------*/
.u-bg-yellow {
    background-color: var(--bg-color-yellow);
}

/*
    スクリーンリーダー用
---------------------------------*/
.u-visually-hidden {
    position: absolute !important;
    clip: rect(0, 0, 0, 0) !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}


/*---------------------------------

Layout

---------------------------------*/
/*
    l-wrapper
---------------------------------*/
.l-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*
    l-header
---------------------------------*/
@media (max-width: 1000px) {

    .l-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: var(--z-index-header);
        width: 100%;
    }

}

/*
    l-main
---------------------------------*/
.l-main {
    flex: 1;
    overflow-x: hidden;
}
@media (max-width: 1000px) {

    .l-main {
        margin-block-start: calc(6.25rem + 5px);
    }

}
@media (max-width: 767px) {

    .l-main {
        margin-block-start: calc(4.375rem + 5px);
    }

}

/*
    l-section
---------------------------------*/
.l-section {
    padding-block: 3.75rem;
}

@media (max-width: 767px) {
    .l-section {
        padding-block: 2.5rem;
    }
}

/*
    l-inner
---------------------------------*/
.l-inner {
    max-width: var(--layout-width-inner);
    margin-inline: auto;
    padding-inline: 25px;
}
.l-inner.l-inner--lg {
    max-width: var(--layout-width-inner-lg);
}
.l-inner.l-inner--sm {
    max-width: var(--layout-width-inner-sm);
}
@media (max-width: 767px) {

    .l-inner {
        padding-inline: 20px;
    }

}

/*---------------------------------

Component

---------------------------------*/
/*  
    c-hamburger
---------------------------------*/
.c-hamburger {
    display: none;
}
@media (max-width: 1000px) {

    .c-hamburger {
        display: block;
        position: relative;
        width: 6.25rem;
        height: 6.25rem;
    }
    .c-hamburger__line {
        display: inline-block;
        position: absolute;
        left: 50%;
        translate: -50%;
        width: 2.5rem;
        height: 0.25rem;
        border-radius: 9999px;
        background-color: var(--color-base);
        transition: translate 0.3s, rotate 0.3s;
    }
    .c-hamburger__line:nth-child(1) {
        top: 1.6875rem;
        transform-origin: top right;
    }
    .c-hamburger__line:nth-child(2) {
        top: 2.625rem;
    }
    .c-hamburger__line:nth-child(3) {
        top: 3.5625rem;
        transform-origin: bottom right;
    }
    .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
        top: 1.6875rem;
        translate: -67%;
        rotate: -45deg;
    }
    .c-hamburger.is-active .c-hamburger__line:nth-child(2) {
        opacity: 0;
    }
    .c-hamburger.is-active .c-hamburger__line:nth-child(3) {
        top: 3.375rem;
        translate: -67%;
        rotate: 45deg;
    }
    .c-hamburger__text {
        position: absolute;
        top: 4.5625rem;
        left: 50%;
        translate: -50%;
        font-size: 0.75rem;
    }

}
@media (max-width: 767px) {

    .c-hamburger {
        width: 4.375rem;
        height: 4.375rem;
    }
    .c-hamburger__line {
        width: 2.1875rem;
        height: 0.1875rem;
    }
    .c-hamburger__line:nth-child(1) {
        top: 1.0625rem;
    }
    .c-hamburger__line:nth-child(2) {
        top: 1.75rem;
    }
    .c-hamburger__line:nth-child(3) {
        top: 2.4375rem;
    }
    .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
        top: 1.125rem;
    }
    .c-hamburger.is-active .c-hamburger__line:nth-child(3) {
        top: 2.625rem;
    }
    .c-hamburger__text {
        top: 3.25rem;
        font-size: 0.5rem;
    }

}

/*  
    c-header-button
---------------------------------*/
.c-header-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 7px;
    width: 6.25rem;
    height: 6.25rem;
    color: var(--color-white);
    font-size: 0.75rem;
    line-height: 1.3;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}
.c-header-button::before {
    display: inline-block;
    width: 2.1875rem;
    aspect-ratio: 1 / 1;
    content: "";
}
.c-header-button.c-header-button--line {
    border: 2px solid #00C300;
    background-color: #00C300;
}
.c-header-button.c-header-button--line::before {
    background-image: url(../images/icon_line.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.c-header-button.c-header-button--line:focus-visible {
    background-color: var(--color-white);
    color: #00C300;
}
.c-header-button.c-header-button--contact {
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary);
}
.c-header-button.c-header-button--contact::before {
    background-color: var(--color-white);
    mask-image: url(../images/icon_mail.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 1.75rem auto;
    transition: background-color 0.3s;
}
.c-header-button.c-header-button--contact:focus-visible {
    background-color: var(--color-white);
    color: var(--color-primary);
}
.c-header-button.c-header-button--contact:focus-visible::before {
    background-color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {

    .c-header-button.c-header-button--line:hover {
        background-color: var(--color-white);
        color: #00C300;
    }
    .c-header-button.c-header-button--contact:hover {
        background-color: var(--color-white);
        color: var(--color-primary);
    }
    .c-header-button.c-header-button--contact:hover::before {
        background-color: var(--color-primary);
    }

}
@media (max-width: 767px) {

    .c-header-button {
        row-gap: 3px;
        width: 4.375rem;
        height: 4.375rem;
        font-size: 0.5rem;
    }
    .c-header-button::before {
        width: 1.75rem;
    }
    .c-header-button.c-header-button--contact::before {
        mask-size: 1.5rem auto;
    }

}

/*  
    c-title
---------------------------------*/
.c-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.25rem;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
}
.c-title img {
    width: 4.875rem;
}
@media (max-width: 767px) {

    .c-title {
        row-gap: 0.75rem;
        font-size: 1.25rem;
    }
    .c-title img {
        width: 3.75rem;
    }

}

/*  
    c-icon-title
---------------------------------*/
.c-icon-title {
    display: flex;
    align-items: center;
    column-gap: 8px;
    align-items: center;
    font-size: 1.375rem;
}
.c-icon-title::before {
    flex-shrink: 0;
    display: inline-block;
    width: 2.75rem;
    height: 2.125rem;
    background-image: url(../images/icon_car02.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
@media (max-width: 767px) {

    .c-icon-title {
        justify-content: center;
        font-size: 1.25rem;
    }
    .c-icon-title::before {
        width: 2.125rem;
        height: 1.625rem;
    }

}

/*  
    c-line-button
---------------------------------*/
.c-line-button {
    display: inline-flex;
    align-items: center;
    column-gap: 16px;
    width: 29rem;
    max-width: 100%;
    height: 6.5625rem;
    padding-inline: 34px;
    border: 2px solid #00C300;
    border-radius: 9999px;
    background-color: #00C300;
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}
.c-line-button::before {
    display: inline-block;
    width: 3.625rem;
    height: 3.625rem;
    background-image: url(../images/icon_line.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.c-line-button:focus-visible {
    background-color: var(--color-white);
    color: #00C300;
}
.c-line-button.c-line-button--sm {
    column-gap: 8px;
    width: 13.75rem;
    height: 3.125rem;
    padding-inline: 10px;
    font-size: 0.875rem;
}
.c-line-button.c-line-button--sm::before {
    width: 1.75rem;
    height: 1.75rem;
}
@media (hover: hover) and (pointer: fine) {

    .c-line-button:hover {
        background-color: var(--color-white);
        color: #00C300;
    }

}
@media (max-width: 767px) {

    .c-line-button {
        width: 21.25rem;
        height: 3.75rem;
        font-size: 1.125rem;
    }
    .c-line-button::before {
        width: 2.5rem;
        height: 2.5rem;
    }

}

/*  
    c-line-button02
---------------------------------*/
.c-line-button02 {
    display: inline-flex;
    align-items: center;
    column-gap: 13px;
    width: 13.75rem;
    max-width: 100%;
    height: 4.6875rem;
    padding-inline: 18px;
    border: 2px solid #00C300;
    border-radius: 5px;
    background-color: #00C300;
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 0.3s, color 0.3s;
}
.c-line-button02::before {
    display: inline-block;
    width: 2.6875rem;
    height: 2.6875rem;
    background-image: url(../images/icon_line.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.c-line-button02:focus-visible {
    background-color: var(--color-white);
    color: #00C300;
}
.c-line-button02.c-line-button02--sm {
    font-size: 1.125rem;
}
@media (hover: hover) and (pointer: fine) {

    .c-line-button02:hover {
        background-color: var(--color-white);
        color: #00C300;
    }

}
@media (max-width: 1100px) {

    .c-line-button02.c-line-button02--sm {
        font-size: 1.0625rem;
    }

}
@media (max-width: 767px) {

    .c-line-button02 {
        column-gap: 24px;
        width: 100%;
        max-width: 21.25rem;
        height: 3.5rem;
    }
    .c-line-button02::before {
        width: 2.1875rem;
        height: 2.1875rem;
    }
    .c-line-button02.c-line-button02--sm {
        font-size: 1.125rem;
    }

}

/*  
    c-contact-button
---------------------------------*/
.c-contact-button {
    display: inline-flex;
    align-items: center;
    column-gap: 16px;
    width: 29rem;
    max-width: 100%;
    height: 6.5625rem;
    padding-inline: 34px;
    border: 2px solid var(--color-primary);
    border-radius: 9999px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}
.c-contact-button::before {
    display: inline-block;
    width: 3.625rem;
    height: 3.625rem;
    background-color: var(--color-white);
    mask-image: url(../images/icon_mail.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 2.5rem 1.75rem;
    transition: background-color 0.3s;
    content: "";
}
.c-contact-button:focus-visible {
    background-color: var(--color-white);
    color: var(--color-primary);
}
.c-contact-button:focus-visible::before {
    background-color: var(--color-primary);
}
.c-contact-button.c-contact-button--sm {
    column-gap: 8px;
    width: 13.125rem;
    height: 3.125rem;
    padding-inline: 10px;
    font-size: 0.875rem;
}
.c-contact-button.c-contact-button--sm::before {
    width: 1.75rem;
    height: 1.75rem;
    mask-size: 1.375rem 1rem;
}
@media (hover: hover) and (pointer: fine) {

    .c-contact-button:hover {
        background-color: var(--color-white);
        color: var(--color-primary);
    }
    .c-contact-button:hover::before {
        background-color: var(--color-primary);
    }

}
@media (max-width: 767px) {

    .c-contact-button {
        width: 21.25rem;
        height: 3.75rem;
        font-size: 1.125rem;
    }
    .c-contact-button::before {
        width: 2.5rem;
        height: 2.5rem;
        mask-size: 1.75rem 1.375rem;
    }

}

/*  
    c-contact-button02
---------------------------------*/
.c-contact-button02 {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    align-items: center;
    position: relative;
    padding: 12px 15px;
    border-radius: 4px;
    border: 2px solid var(--bg-color-yellow02);
    background-color: var(--bg-color-yellow02);
    transition: background-color 0.3s;
}
.c-contact-button02:focus-visible {
    background-color: var(--color-white);
}
.c-contact-button02::before {
    display: inline-block;
    width: 1.6875rem;
    height: 1.375rem;
    content: "";
}
.c-contact-button02::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 10px;
    translate: 0 -50%;
    rotate: -45deg;
    width: 0.6875rem;
    height: 0.6875rem;
    border-inline-end: 1px solid var(--color-base);
    border-block-end: 1px solid var(--color-base);
    content: "";
}
.c-contact-button02.c-contact-button02--mail::before {
    background-color: var(--color-base);
    mask-image: url(../images/icon_mail.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}
.c-contact-button02.c-contact-button02--mail span {
    font-size: 1rem;
    font-weight: 700;
}
.c-contact-button02.c-contact-button02--tel {
    padding: 5px 15px;
}
.c-contact-button02.c-contact-button02--tel::before {
    background-image: url(../images/icon_tel.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.c-contact-button02.c-contact-button02--tel span {
    display: grid;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.c-contact-button02.c-contact-button02--tel span span {
    font-size: 0.625rem;
    font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {

    .c-contact-button02:hover {
        background-color: var(--color-white);
    }

}
@media (max-width: 767px) {

    .c-contact-button02.c-contact-button02--tel {
        padding: 4px 15px;
    }
    .c-contact-button02.c-contact-button02--tel span span {
        font-size: 0.5rem;
    }

}

/*  
    c-contact-button03
---------------------------------*/
.c-contact-button03 {
    display: inline-flex;
    align-items: center;
    column-gap: 13px;
    width: 13.75rem;
    max-width: 100%;
    height: 4.6875rem;
    padding-inline: 18px;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 0.3s, color 0.3s;
}
.c-contact-button03::before {
    display: inline-block;
    width: 2.6875rem;
    height: 1.75rem;
    background-color: var(--color-white);
    mask-image: url(../images/icon_mail.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    transition: background-color 0.3s;
    content: "";
}
.c-contact-button03:focus-visible {
    background-color: var(--color-white);
    color: var(--color-primary);
}
.c-contact-button03:focus-visible::before {
    background-color: var(--color-primary);
}
.c-contact-button03.c-contact-button03--sm {
    font-size: 1.125rem;
}
.c-contact-button03.c-contact-button03--sm::before {
    mask-size: 2rem 1.5rem;
}
@media (hover: hover) and (pointer: fine) {

    .c-contact-button03:hover {
        background-color: var(--color-white);
        color: var(--color-primary);
    }
    .c-contact-button03:hover::before {
        background-color: var(--color-primary);
    }

}
@media (max-width: 1100px) {

    .c-contact-button03.c-contact-button03--sm {
        font-size: 1.0625rem;
    }

}
@media (max-width: 767px) {

    .c-contact-button03 {
        column-gap: 24px;
        width: 100%;
        max-width: 21.25rem;
        height: 3.5rem;
    }
    .c-contact-button03::before {
        width: 2.1875rem;
        height: 2.1875rem;
        mask-size: 1.875rem 1.3125rem;
    }
    .c-contact-button03.c-contact-button03--sm {
        font-size: 1.125rem;
    }

}

/*  
    c-tel
---------------------------------*/
.c-tel {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.c-tel__link {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    font-size: 3.125rem;
    font-weight: 700;
}
.c-tel__link::before {
    display: inline-block;
    translate: 0 10%;
    width: 1.875rem;
    height: 2.5rem;
    background-image: url(../images/icon_tel.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.c-tel__text {
    margin-block-start: 0.3125rem;
    font-size: 1.375rem;
    font-weight: 500;
}
.c-tel.c-tel--sm .c-tel__link {
    column-gap: 4px;
    font-size: 2rem;
}
.c-tel.c-tel--sm .c-tel__link::before {
    width: 1.375rem;
    height: 1.8125rem;
}
.c-tel.c-tel--sm .c-tel__text {
    font-size: 0.875rem;
}
@media (max-width: 1100px) {

    .c-tel.c-tel--sm .c-tel__link {
        font-size: 1.625rem;
    }
    .c-tel.c-tel--sm .c-tel__link::before {
        width: 1.0625rem;
        height: 1.5rem;
    }
    .c-tel.c-tel--sm .c-tel__text {
        font-size: 0.75rem;
    }

}
@media (max-width: 767px) {

    .c-tel__link {
        font-size: 2.1875rem;
    }
    .c-tel__link::before {
        width: 1.4375rem;
        height: 2rem;
    }
    .c-tel__text {
        font-size: 0.875rem;
    }

}

/*  
    c-category
---------------------------------*/
.c-category {
    display: inline-grid;
    place-items: center;
    padding: 0.37em 1.2em;
    color: var(--color-white);
    font-size: 1rem;
    text-align: center;
}
.c-category.c-category--type01 {
    background-color: var(--category-color01);
}
.c-category.c-category--type02 {
    background-color: var(--category-color02);
}
.c-category.c-category--type03 {
    background-color: var(--category-color03);
}
.c-category.c-category--type04 {
    background-color: var(--category-color04);
}
.c-category.c-category--type05 {
    background-color: var(--category-color05);
}
.c-category.c-category--type06 {
    background-color: var(--category-color06);
}

/*  
    c-date
---------------------------------*/
.c-date {
    font-size: 1rem;
    font-weight: 700;
}

/*  
    c-button
---------------------------------*/
.c-button {
    display: inline-grid;
    place-items: center;
    position: relative;
    padding: 0.68em 2.5em 0.68em 2.2em;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}
.c-button::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 18px;
    translate: 0 -50%;
    rotate: -45deg;
    width: 0.8rem;
    height: 0.8rem;
    border-inline-end: 1px solid;
    border-block-end: 1px solid;
    transition: border-color 0.3s;
    content: "";
}
.c-button:focus-visible {
    background-color: var(--color-white);
    color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {

    .c-button:hover {
        background-color: var(--color-white);
        color: var(--color-primary);
    }

}
@media (max-width: 767px) {

    .c-button {
        padding: 0.68em 2.9em 0.68em 2.4em;
        font-size: 1rem;
        font-weight: 500;
    }
    .c-button::before {
        right: 15px;
    }

}

/*  
    c-breadcrumb
---------------------------------*/
.c-breadcrumb {
    padding-block: 0.6875rem;
    background-color: var(--color-gray02);
}
.c-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
}
.c-breadcrumb ol li {
    font-size: 0.75rem;
}
.c-breadcrumb ol li + li {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
}
.c-breadcrumb ol li + li::before {
    content: ">";
}
.c-breadcrumb ol li a:focus-visible {
    color: var(--color-primary);
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {

    .c-breadcrumb ol li a:hover {
        color: var(--color-primary);
        text-decoration: underline;
    }

}
@media (max-width: 767px) {

    .c-breadcrumb {
        padding-block: 0.5rem;
    }

}

/*
    c-category-button
---------------------------------*/
.c-category-button {
    display: inline-grid;
    place-items: center;
    position: relative;
    width: fit-content;
    min-height: 3.3125rem;
    padding: 0.8em 1.2em;
    border-radius: 5px;
    border: 1px solid var(--color-gray);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
.c-category-button::after {
    display: inline-block;
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    translate: -50%;
    width: 1.625rem;
    height: 0.9375rem;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    transition: background-color 0.3s;
    content: "";
}
.c-category-button.is-active {
    color: var(--color-white);
}
.c-category-button:focus-visible {
    color: var(--color-white);
}
.c-category-button.c-category-button--type01.is-active {
    border-color: var(--category-color01);
    background-color: var(--category-color01);
}
.c-category-button.c-category-button--type01.is-active::after {
    background-color: var(--category-color01);
}
.c-category-button.c-category-button--type02.is-active {
    border-color: var(--category-color02);
    background-color: var(--category-color02);
}
.c-category-button.c-category-button--type02.is-active::after {
    background-color: var(--category-color02);
}
.c-category-button.c-category-button--type03.is-active {
    border-color: var(--category-color03);
    background-color: var(--category-color03);
}
.c-category-button.c-category-button--type03.is-active::after {
    background-color: var(--category-color03);
}
.c-category-button.c-category-button--type04.is-active {
    border-color: var(--category-color04);
    background-color: var(--category-color04);
}
.c-category-button.c-category-button--type04.is-active::after {
    background-color: var(--category-color04);
}
.c-category-button.c-category-button--type05.is-active {
    border-color: var(--category-color05);
    background-color: var(--category-color05);
}
.c-category-button.c-category-button--type05.is-active::after {
    background-color: var(--category-color05);
}
.c-category-button.c-category-button--type06.is-active {
    border-color: var(--category-color06);
    background-color: var(--category-color06);
}
.c-category-button.c-category-button--type06.is-active::after {
    background-color: var(--category-color06);
}
.c-category-button.c-category-button--type01:focus-visible {
    border-color: var(--category-color01);
    background-color: var(--category-color01);
}
.c-category-button.c-category-button--type01:focus-visible::after {
    background-color: var(--category-color01);
}
.c-category-button.c-category-button--type02:focus-visible {
    border-color: var(--category-color02);
    background-color: var(--category-color02);
}
.c-category-button.c-category-button--type02:focus-visible::after {
    background-color: var(--category-color02);
}
.c-category-button.c-category-button--type03:focus-visible {
    border-color: var(--category-color03);
    background-color: var(--category-color03);
}
.c-category-button.c-category-button--type03:focus-visible::after {
    background-color: var(--category-color03);
}
.c-category-button.c-category-button--type04:focus-visible {
    border-color: var(--category-color04);
    background-color: var(--category-color04);
}
.c-category-button.c-category-button--type04:focus-visible::after {
    background-color: var(--category-color04);
}
.c-category-button.c-category-button--type05:focus-visible {
    border-color: var(--category-color05);
    background-color: var(--category-color05);
}
.c-category-button.c-category-button--type05:focus-visible::after {
    background-color: var(--category-color05);
}
.c-category-button.c-category-button--type06:focus-visible {
    border-color: var(--category-color06);
    background-color: var(--category-color06);
}
.c-category-button.c-category-button--type06:focus-visible::after {
    background-color: var(--category-color06);
}
@media (hover: hover) and (pointer: fine) {

    .c-category-button:hover {
        color: var(--color-white);
    }
    .c-category-button.c-category-button--type01:hover {
        border-color: var(--category-color01);
        background-color: var(--category-color01);
    }
    .c-category-button.c-category-button--type01:hover::after {
        background-color: var(--category-color01);
    }
    .c-category-button.c-category-button--type02:hover {
        border-color: var(--category-color02);
        background-color: var(--category-color02);
    }
    .c-category-button.c-category-button--type02:hover::after {
        background-color: var(--category-color02);
    }
    .c-category-button.c-category-button--type03:hover {
        border-color: var(--category-color03);
        background-color: var(--category-color03);
    }
    .c-category-button.c-category-button--type03:hover::after {
        background-color: var(--category-color03);
    }
    .c-category-button.c-category-button--type04:hover {
        border-color: var(--category-color04);
        background-color: var(--category-color04);
    }
    .c-category-button.c-category-button--type04:hover::after {
        background-color: var(--category-color04);
    }
    .c-category-button.c-category-button--type05:hover {
        border-color: var(--category-color05);
        background-color: var(--category-color05);
    }
    .c-category-button.c-category-button--type05:hover::after {
        background-color: var(--category-color05);
    }
    .c-category-button.c-category-button--type06:hover {
        border-color: var(--category-color06);
        background-color: var(--category-color06);
    }
    .c-category-button.c-category-button--type06:hover::after {
        background-color: var(--category-color06);
    }

}
@media (max-width: 767px) {

    .c-category-button {
        min-height: 2.8125rem;
        padding: 0.8em 0.9em;
        font-size: 0.875rem;
    }
    .c-category-button::after {
        top: calc(100% - 4px);
    }

}


/*---------------------------------

Project

---------------------------------*/
/*
    p-cookie-consent
---------------------------------*/
.p-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--z-index-cookie);
    opacity: 0;
    visibility: hidden;
    width: 100%;
    padding-block: 1.125rem;
    border-block-start: 2px solid var(--color-primary);
    background-color: var(--color-white);
    transition: opacity 0.3s, visibility 0.3s ease-out;
}
.p-cookie-consent.is-show {
    opacity: 1;
    visibility: visible;
}
.p-cookie-consent__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 30px;
    max-width: 1200px;
}
.p-cookie-consent__text {
    font-size: 0.75rem;
    line-height: 1.4;
}
.p-cookie-consent__link {
    margin-inline-start: auto;
}
.p-cookie-consent__link a {
    display: inline-grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 8px;
    align-items: center;
    font-size: 0.875rem;
}
.p-cookie-consent__link a::before {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    rotate: -45deg;
    border-inline-end: 2px solid;
    border-block-end: 2px solid;
    content: "";
}
.p-cookie-consent__link a:focus-visible {
    text-decoration: underline;
}
.p-cookie-consent__button button {
    display: inline-grid;
    place-items: center;
    position: relative;
    width: 12.5rem;
    height: 2.5rem;
    padding: 0.4em 2.5em;
    border: 2px solid;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}
.p-cookie-consent__button button::after {
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    rotate: -45deg;
    width: 0.5em;
    height: 0.5em;
    border-inline-end: 2px solid;
    border-block-end: 2px solid;
    transition: border-color 0.3s;
    content: "";
}
.p-cookie-consent__button button:focus-visible {
    background-color: var(--color-base);
    color: var(--color-white);
}
.p-cookie-consent__button button:focus-visible::after {
    border-inline-end-color: var(--color-white);
    border-block-end-color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {

    .p-cookie-consent__link a:hover {
        text-decoration: underline;
    }
    .p-cookie-consent__button button:hover {
        background-color: var(--color-base);
        color: var(--color-white);
    }
    .p-cookie-consent__button button:hover::after {
        border-inline-end-color: var(--color-white);
        border-block-end-color: var(--color-white);
    }

}
@media (max-width: 1000px) {
    .p-cookie-consent__inner {
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
        row-gap: 0.3125rem;
    }
    .p-cookie-consent__text {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    .p-cookie-consent__link {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        width: 100%;
        text-align: center;
    }
    .p-cookie-consent__button {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
}
@media (max-width: 767px) {
    .p-cookie-consent {
        padding-block: 1.25rem;
    }
    .p-cookie-consent__inner {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
    }
    .p-cookie-consent__text {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        font-size: 0.6875rem;
    }
    .p-cookie-consent__button {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        margin-block-start: 1.25rem;
        text-align: center;
    }
    .p-cookie-consent__link {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    .p-cookie-consent__link a {
        column-gap: 6px;
        font-size: 0.6875rem;
    }
    .p-cookie-consent__button button {
        width: 12.5rem;
        font-size: 0.75rem;
    }
    .p-cookie-consent__button button::after {
        right: 15px;
    }
}

/*
    p-header
---------------------------------*/
.p-header__text {
    display: grid;
    place-items: center;
    height: 2.1875rem;
    padding-inline: 25px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}
.p-header__body {
    padding-block: 1.25rem 2rem;
    background-color: var(--color-white);
}
.p-header__body-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 50px;
}
.p-header__logo-link {
    display: inline-block;
    width: 13rem;
    transition: opacity 0.3s;
}
.p-header__logo-link:focus-visible {
    opacity: 0.7;
}
.p-header__logo-time {
    display: none;
}
.p-header__tel {
    margin-inline-start: auto;
}
.p-header__contact {
    display: flex;
    column-gap: 14px;
    margin-inline-start: 36px;
}
.p-header__button02 {
    display: none;
}
.p-header__nav {
    background-color: var(--bg-color-black);
}
.p-header__items {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    padding-block: 0.8125rem;
}
.p-header__link {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    transition: color 0.3s;
}
.p-header__link:focus-visible {
    color: var(--color-secondary);
}
.p-header__link::before {
    display: inline-block;
    width: 1.75rem;
    height: 1.375rem;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    content: "";
}
.p-header__item:nth-child(1) .p-header__link::before {
    mask-image: url(../images/icon_car.png);
}
.p-header__item:nth-child(2) .p-header__link::before {
    translate: 0 8%;
    width: 1.5625rem;
    height: 1.4375rem;
    mask-image: url(../images/icon_voice.png);
}
.p-header__item:nth-child(3) .p-header__link::before {
    mask-image: url(../images/icon_reason.png);
}
.p-header__item:nth-child(4) .p-header__link::before {
    width: 1.375rem;
    height: 1rem;
    mask-image: url(../images/icon_mail.svg);
}
.p-header__item:nth-child(5) .p-header__link::before {
    width: 1.0625rem;
    height: 1.625rem;
    mask-image: url(../images/icon_access.png);
}
@media (hover: hover) and (pointer: fine) {

    .p-header__logo-link:hover {
        opacity: 0.7;
    }
    .p-header__link:hover {
        color: var(--color-secondary);
    }

}
@media (max-width: 1100px) {

    .p-header__body-inner {
        padding-inline: 30px;
    }
    .p-header__logo-link {
        width: 11.875rem;
    }

}
@media (max-width: 1000px) {

    .p-header__text {
        display: none;
    }
    .p-header__body {
        padding-block: 0;
        border-block-start: 5px solid var(--color-primary);
    }
    .p-header.scrolled .p-header__body {
        border-block-start: none;
        background-color: rgb(255 255 255 / 0.95);
    }
    .p-header__body-inner {
        padding-inline-end: 0;
    }
    .p-header__logo-time {
        display: block;
        margin-block-start: 0.25rem;
        font-size: 0.6875rem;
        text-align: center;
    }
    .p-header__tel {
        display: none;
    }
    .p-header__contact {
        column-gap: 0;
        margin-inline-start: auto;
    }
    .p-header__button01 {
        display: none;
    }
    .p-header__button02 {
        display: block;
    }
    .p-header__nav {
        display: none;
    }

}
@media (max-width: 767px) {

    .p-header__body-inner {
        padding-inline: 13px 0;
    }
    .p-header__logo-link {
        width: 8.25rem;
    }
    .p-header__logo-time {
        font-size: 0.5rem;
    }

}

/*
    p-drawer
---------------------------------*/
.p-drawer {
    display: none;
}
@media (max-width: 1000px) {

    .p-drawer {
        display: block;
        position: fixed;
        z-index: var(--z-index-header);
        top: calc(6.25rem + 5px);
        left: 0;
        right: 0;
        transition: opacity 0.3s, visibility 0.3s ease-out;
    }
    .p-drawer[aria-hidden=true] {
        opacity: 0;
        visibility: hidden;
    }
    .p-header.scrolled .p-drawer {
        top: calc(6.25rem);
    }
    .p-drawer__inner {
        max-height: calc(100dvh - calc(6.25rem + 5px));
        overflow-y: auto;
        padding: 32px 32px 60px 32px;
        background-color: rgb(187 39 43 / 0.95);
    }
    .p-drawer__button {
        max-width: 20rem;
        margin-inline: auto;
    }
    .p-drawer__button + .p-drawer__button {
        margin-block-start: 0.625rem;
    }
    .p-drawer__nav {
        max-width: 18.5rem;
        margin-block-start: 1.875rem;
        margin-inline: auto;
    }
    .p-drawer__item + .p-drawer__item {
        margin-block-start: 0.625rem;
    }
    .p-drawer__link {
        display: inline-grid;
        grid-template-columns: repeat(2, auto);
        column-gap: 22px;
        align-items: center;
        color: var(--color-white);
        font-size: 1rem;
        font-weight: 700;
        transition: opacity 0.3s;
    }
    .p-drawer__link:focus-visible {
        opacity: 0.7;
    }
    .p-drawer__link::before {
        display: inline-block;
        width: 1.75rem;
        height: 1.5625rem;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
    }
    .p-drawer__item:nth-child(1) .p-drawer__link::before {
        background-image: url(../images/icon_car.png);
    }
    .p-drawer__item:nth-child(2) .p-drawer__link::before {
        background-image: url(../images/icon_voice.png);
        background-size: 1.5rem auto;
    }
    .p-drawer__item:nth-child(3) .p-drawer__link::before {
        background-image: url(../images/icon_reason.png);
        background-size: 1.5rem auto;
    }
    .p-drawer__item:nth-child(4) .p-drawer__link::before {
        background-image: url(../images/icon_blog.png);
    }
    .p-drawer__item:nth-child(5) .p-drawer__link::before {
        background-image: url(../images/icon_problem.png);
    }
    .p-drawer__item:nth-child(6) .p-drawer__link::before {
        background-image: url(../images/icon_access.png);
    }
    .p-drawer__item:nth-child(7) .p-drawer__link::before {
        background-image: url(../images/icon_staff.png);
    }
    .p-drawer__item:nth-child(8) .p-drawer__link::before {
        background-image: url(../images/icon_faq.png);
        background-size: 0.5rem auto;
    }
    .p-drawer__close {
        margin-block-start: 3.75rem;
        text-align: center;
    }
    .p-drawer__close-button {
        display: inline-flex;
        column-gap: 5px;
        align-items: center;
        color: var(--color-white);
        font-size: 0.75rem;
    }
    .p-drawer__close-button span {
        display: inline-block;
        position: relative;
        width: 1em;
        height: 1em;
    }
    .p-drawer__close-button span::before,
    .p-drawer__close-button span::after {
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        width: 1.2em;
        height: 1px;
        background-color: currentColor;
        content: "";
    }
    .p-drawer__close-button span::before {
        rotate: 45deg;
    }
    .p-drawer__close-button span::after {
        rotate: -45deg;
    }

}
@media (max-width: 767px) {

    .p-drawer {
        top: calc(4.375rem + 5px);
    }
    .p-header.scrolled .p-drawer {
        top: calc(4.375rem);
    }

}
@media (hover: hover) and (pointer: fine) {

    .p-drawer__link:hover {
        opacity: 0.7;
    }

}

/*
    p-footer
---------------------------------*/
.p-footer {
    padding-block-start: 3.75rem;
}
body:has(.p-cta-wrap) .p-footer {
    margin-block-end: 9.25rem;
}
.p-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block-end: 1.25rem;
    border-block-end: 1px solid var(--color-gray);
}
.p-footer__logo-link {
    display: inline-block;
    width: 13rem;
    transition: opacity 0.3s;
}
.p-footer__logo-link:focus-visible {
    opacity: 0.7;
}
.p-footer__sns {
    display: flex;
    column-gap: 10px;
}
.p-footer__sns-link {
    display: inline-block;
    transition: opacity 0.3s;
}
.p-footer__sns-link:focus-visible {
    opacity: 0.7;
}
.p-footer__body {
    padding-block: 2.8125rem 4.375rem;
}
.p-footer__items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    width: 91%;
    margin-inline: auto;
}
.p-footer__item-link {
    font-size: 0.875rem;
    font-weight: 700;
    transition: color 0.3s;
}
.p-footer__item-link:focus-visible {
    color: var(--color-secondary);
}
.p-footer__copy {
    display: grid;
    place-items: center;
    height: 2.1875rem;
    padding-inline: 25px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}
.p-footer__copy small {
    font-size: 0.875rem;
    font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {

    .p-footer__logo-link:hover {
        opacity: 0.7;
    }
    .p-footer__sns-link:hover {
        opacity: 0.7;
    }
    .p-footer__item-link:hover {
        color: var(--color-secondary);
    }

}
@media (max-width: 1000px) {

    body:has(.p-cta-wrap) .p-footer {
        margin-block-end: 0;
    }

}
@media (max-width: 767px) {

    .p-footer__logo-link {
        width: 8.25rem;
    }
    .p-footer__sns-link {
        width: 1.875rem;
    }
    .p-footer__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        width: 95%;
    }
    .p-footer__copy small {
        font-size: 0.75rem;
    }

}

/*
    p-cards
---------------------------------*/
.p-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 5px;
}
@media (max-width: 767px) {

    .p-cards {
        grid-template-columns: repeat(2, 1fr);
        overflow: hidden;
    }

}

/*
    p-card
---------------------------------*/
.p-card__inner {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    border: 5px solid var(--color-primary);
    transition: opacity 0.3s;
}
.p-card__inner:focus-visible {
    opacity: 0.7;
}
.p-card__img {
    aspect-ratio: 208 / 168;
}
.p-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-card__body {
    padding: 8px 10px;
    background-color: rgb(255 249 216 / 0.45);
}
.p-card__list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 10px;
    align-items: center;
}
.p-card__list-term {
    font-size: 0.75rem;
    font-weight: 700;
}
.p-card__price {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 0.625rem;
    font-weight: 700;
}
.p-card__price span {
    display: inline-block;
}
.p-card__price span:first-child {
    translate: 0 -0.1875rem;
    color: var(--color-secondary);
    font-size: 2.125rem;
    line-height: 1;
}
.p-card__price span:last-child {
    display: inline-block;
    margin-block-start: 0.375rem;
}
.p-card__rank {
    color: var(--color-secondary);
    font-size: 1.375rem;
    font-weight: 700;
}
.p-card__text {
    font-size: 1rem;
    font-weight: 500;
}
.p-card__text02 {
    font-size: 0.75rem;
    font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {

    .p-card__inner:hover {
        opacity: 0.7;
    }

}
@media (max-width: 767px) {

    .p-card__body {
        padding: 8px 6px;
    }
    .p-card__list {
        gap: 3px 8px;
    }
    .p-card__list-term {
        font-size: 0.625rem;
    }
    .p-card__price {
        font-size: 0.5rem;
    }
    .p-card__price span:first-child {
        font-size: 1.625rem;
    }
    .p-card__rank {
        font-size: 1.125rem;
    }
    .p-card__text {
        font-size: 0.8125rem;
    }
    .p-card__text02 {
        font-size: 0.625rem;
    }

}

/*
    p-cards02
---------------------------------*/
.p-cards02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 35px;
}
@media (max-width: 1000px) {

    .p-cards02 {
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 767px) {

    .p-cards02 {
        grid-template-columns: 1fr;
        row-gap: 5rem;
    }

}

/*
    p-card02
---------------------------------*/
.p-card02 {
    position: relative;
}
.p-card02__title {
    position: absolute;
    top: 0;
    left: -17px;
    translate: 0 -50%;
    max-width: 100%;
    padding: 0.2em 2.7em 0.5em 0.9em;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.125rem;
    line-height: 1.2;
}
.p-card02__title span {
    font-size: 0.75rem;
}
.p-card02__img {
    aspect-ratio: 294 / 220;
}
.p-card02__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p-card02__text {
    margin-block-start: 0.625rem;
    color: var(--color-gray);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
}
@media (max-width: 767px) {

    .p-card02__title {
        left: -20px;
    }

}

/*
    p-cards03
---------------------------------*/
.p-cards03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.p-cards03__item {
    max-width: 225px;
}
@media (max-width: 767px) {

    .p-cards03 {
        display: block;
    }
    .p-cards03__item {
        max-width: unset;
    }
    .p-cards03__item + .p-cards03__item {
        margin-block-start: 3.125rem;
    }

}

/*
    p-card03
---------------------------------*/
.p-card03__inner {
    display: flex;
    flex-direction: column-reverse;
    transition: opacity 0.3s;
}
.p-card03__inner:focus-visible {
    opacity: 0.7;
}
.p-card03__body {
    display: flex;
    flex-direction: column-reverse;
    padding-block-start: 0.625rem;
}
.p-card03__title {
    margin-block-start: 0.75rem;
    color: var(--color-gray);
    font-size: 1rem;
}
.p-card03__sub-title {
    font-size: 0.875rem;
    font-weight: 700;
}
.p-card03__img {
    aspect-ratio: 220 / 160;
}
.p-card03__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (hover: hover) and (pointer: fine) {

    .p-card03__inner:hover {
        opacity: 0.7;
    }

}

/*
    p-mv
---------------------------------*/
.p-mv {
    padding-block-end: 2.5rem;
}
.p-mv__slide img {
    width: 100%;
}
.p-mv .splide {
    padding-block-end: 32px;
}
.p-mv .splide .splide__pagination {
    bottom: 0;
    column-gap: 6px;
}
.p-mv .splide .splide__pagination li {
    display: grid;
}
.p-mv .splide .splide__pagination__page {
    opacity: 1;
    width: 136px;
    height: 7px;
    margin: 0;
    border-radius: 0;
    background-color: #BCBCBC;
    transition: background-color 0.3s;
}
.p-mv .splide .splide__pagination__page.is-active {
    transform: unset;
    background-color: var(--color-primary);
}
@media (max-width: 767px) {

    .p-mv {
        padding-block-end: 1.25rem;
    }
    .p-mv .splide {
        padding-block-end: 16px;
    }
    .p-mv .splide .splide__pagination {
        column-gap: 3px;
    }
    .p-mv .splide .splide__pagination__page {
        width: 86px;
        height: 5px;
    }

}

/*
    p-banner
---------------------------------*/
.p-banner__slide-link {
    display: block;
    transition: opacity 0.3s;
}
.p-banner__slide-link:focus-visible {
    opacity: 0.7;
}
.p-banner__slide img {
    width: 100%;
}
@media (hover: hover) and (pointer: fine) {

    .p-banner__slide-link:hover {
        opacity: 0.7;
    }
    .p-banner__item-link:hover {
        opacity: 0.7;
    }

}
@media (max-width: 767px) {

    .p-banner__items {
        padding-inline: 15px;
    }
    .p-banner__item + .p-banner__item {
        margin-block-start: 0.625rem;
    }
    .p-banner__item img {
        width: 100%;
    }
    .p-banner__item-link {
        display: block;
        transition: opacity 0.3s;
    }
    .p-banner__item-link:focus-visible {
        opacity: 0.7;
    }

}

/*
    p-fixed-banner
---------------------------------*/
.p-fixed-banner {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: var(--z-index-banner);
    opacity: 0;
    visibility: hidden;
    background-color: var(--color-white);
    transition: opacity 0.3s, visibility 0.3s ease-out;
}
body:has(.p-cta-wrap) .p-fixed-banner {
    bottom: 160px;
}
.p-fixed-banner.is-active {
    opacity: 1;
    visibility: visible;
}
.p-fixed-banner__link {
    display: block;
    width: 24.375rem;
    transition: opacity 0.3s;
}
.p-fixed-banner__link:focus-visible {
    opacity: 0.7;
}
.p-fixed-banner__bottom {
    display: flex;
    align-items: center;
    column-gap: 18px;
    padding: 15px 28px;
    border: 3px solid var(--color-primary);
    background-color: #FFF39B;
}
.p-fixed-banner__text {
    font-size: 1.125rem;
    font-weight: 700;
}
.p-fixed-banner__close {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    translate: -50% -50%;
    width: 3.125rem;
    height: 3.125rem;
    border: 2px solid #838383;
    border-radius: 50%;
    background-color: var(--color-white);
}
.p-fixed-banner__close span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 1.625rem;
    height: 0.125rem;
    background-color: var(--color-base);
}
.p-fixed-banner__close span:first-child {
    rotate: 45deg;
}
.p-fixed-banner__close span:last-child {
    rotate: -45deg;
}
@media (hover: hover) and (pointer: fine) {

    .p-fixed-banner__link:hover {
        opacity: 0.7;
    }

}
@media (max-width: 1000px) {

    body:has(.p-cta-wrap) .p-fixed-banner {
        bottom: 30px;
    }
    .p-fixed-banner__link {
        width: 22.5rem;
    }
    .p-fixed-banner__bottom {
        padding: 15px 18px;
    }

}
@media (max-width: 767px) {

    .p-fixed-banner__link {
        width: 10.625rem;
    }
    .p-fixed-banner__bottom {
        column-gap: 8px;
        padding: 10px;
        border-width: 2px;
    }
    .p-fixed-banner__bottom img {
        width: 1.5rem;
    }
    .p-fixed-banner__text {
        font-size: 0.625rem;
    }
    .p-fixed-banner__close {
        width: 1.5rem;
        height: 1.5rem;
        border-width: 1px;
    }
    .p-fixed-banner__close span {
        width: 0.9375rem;
        height: 0.0625rem;
    }

}

/*
    p-car
---------------------------------*/
.p-car__contents {
    margin-block-start: 3.125rem;
}
.p-car__slider .splide {
    padding-block-end: 32px;
}
.p-car__slider .splide .splide__pagination {
    bottom: 0;
    column-gap: 6px;
}
.p-car__slider .splide .splide__pagination li {
    display: grid;
}
.p-car__slider .splide .splide__pagination__page {
    opacity: 1;
    width: 136px;
    height: 7px;
    margin: 0;
    border-radius: 0;
    background-color: #BCBCBC;
    transition: background-color 0.3s;
}
.p-car__slider .splide .splide__pagination__page.is-active {
    transform: unset;
    background-color: var(--color-primary);
}
@media (max-width: 767px) {

    .p-car .l-inner {
        padding-inline: 10px;
    }
    .p-car__contents {
        margin-block-start: 1.875rem;
    }
    .p-car__button {
        margin-block-start: 2.5rem;
        text-align: center;
    }
    .p-car__button .c-button::before {
        rotate: 45deg;
        translate: 0 -70%;
    }
    .p-car__button .c-button.is-open::before {
        rotate: 225deg;
        translate: 0 -10%;
    }

}

/*
    p-voice
---------------------------------*/
.p-voice__contents {
    margin-block-start: 5rem;
}
@media (max-width: 767px) {

    

}

/*
    p-blog
---------------------------------*/
.p-blog__contents {
    margin-block-start: 3.125rem;
}
.p-blog__button {
    margin-block-start: 3.75rem;
    text-align: center;
}

/*
    p-blog-cards
---------------------------------*/
.p-blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 20px;
}
@media (max-width: 1000px) {

    .p-blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 767px) {

    .p-blog-cards {
        grid-template-columns: 1fr;
        row-gap: 3.125rem;
    }
    .p-blog-cards.p-blog-cards--sp-col2 {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1.875rem;
    }

}

/*
    p-blog-card
---------------------------------*/
.p-blog-card__link {
    display: flex;
    flex-direction: column-reverse;
    transition: opacity 0.3s;
}
.p-blog-card__link:focus-visible {
    opacity: 0.7;
}
.p-blog-card__body {
    display: flex;
    flex-direction: column-reverse;
}
.p-blog-card__title {
    padding-inline: 10px;
    margin-block-start: 0.75rem;
    font-size: 1rem;
    line-height: 1.375;
}
.p-blog-card__meta {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    align-items: center;
}
.p-blog-card__date {
    flex-shrink: 0;
}
.p-blog-card__img {
    aspect-ratio: 310 / 222;
}
.p-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (hover: hover) and (pointer: fine) {

    .p-blog-card__link:hover {
        opacity: 0.7;
    }

}
@media (max-width: 767px) {

    .p-blog-cards.p-blog-cards--sp-col2 .p-blog-card__meta {
        column-gap: 10px;
    }
    .p-blog-cards.p-blog-cards--sp-col2 .p-blog-card__category {
        padding: 0.5em 0.8em;
        font-size: 0.625rem;
    }
    .p-blog-cards.p-blog-cards--sp-col2 .p-blog-card__date {
        font-size: 0.6875rem;
    }
    .p-blog-cards.p-blog-cards--sp-col2 .p-blog-card__title {
        padding-inline: 0;
        font-size: 0.875rem;
    }

}

/*
    p-instagram
---------------------------------*/
.p-instagram__heading {
    text-align: center;
}
.p-instagram__contents {
    max-width: 770px;
    margin-block-start: 3.125rem;
    margin-inline: auto;
}
@media (max-width: 767px) {

    .p-instagram__heading img {
        width: 3.75rem;
    }

}

/*
    p-reason
---------------------------------*/
.p-reason__contents {
    margin-block-start: 3.125rem;
}
.p-reason__img {
    text-align: center;
}


/*
    p-problem
---------------------------------*/
.p-problem__contents {
    margin-block-start: 3.125rem;
}
.p-problem__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 46px;
}
.p-problem__item {
    display: grid;
    place-items: center;
    min-height: 6.25rem;
    background-color: #FEF9A7;
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
}
.p-problem__contact {
    margin-block-start: 5rem;
}
.p-problem__contact-text {
    color: var(--color-secondary);
    font-size: 2.375rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
}
.p-problem__contact-img {
    margin-block-start: 3.125rem;
}
.p-problem__contact-button-wrap {
    margin-block-start: 4.75rem;
    text-align: center;
}
.p-problem__contact-button + .p-problem__contact-button {
    margin-block-start: 1.875rem;
}
.p-problem__contact-tel {
    margin-block-start: 2.5rem;
}
@media (max-width: 767px) {

    .p-problem__items {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .p-problem__contact-text {
        font-size: 1.375rem;
    }
    .p-problem__contact-button + .p-problem__contact-button {
        margin-block-start: 1.25rem;
    }
    .p-problem__contact-tel {
        margin-block-start: 1.25rem;
    }

}

/*
    p-access
---------------------------------*/
.p-access__contents {
    margin-block-start: 3.125rem;
}
.p-access__items {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 78px;
    width: fit-content;
    max-width: 820px;
    margin-inline: auto;
}
@media (max-width: 1000px) {

    .p-access__items {
        gap: 50px 60px;
    }

}
@media (max-width: 767px) {

    .p-access__items {
        grid-template-columns: 1fr;
    }

}

/*
    p-access-card
---------------------------------*/
.p-access-card {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    max-width: 500px;
}
.p-access-card__body {
    margin-block-start: 1.875rem;
}
.p-access-card__title {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 5px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1rem;
}
.p-access-card__list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px 10px;
    margin-block-start: 1rem;
    padding-inline: 5px;
    font-size: 0.875rem;
    line-height: 1.3;
}
.p-access-card__list-term {
    font-weight: 400;
}
.p-access-card__gallery {
    margin-block-start: 1.875rem;
    padding-inline: 20px;
}
.p-access-card__gallery .splide__slide {
    aspect-ratio: 104 / 80;
}
.p-access-card__gallery .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-access-card__gallery .splide__arrow {
    opacity: 1;
    width: 1.75rem;
    height: 1.75rem;
    background-color: transparent;
}
.p-access-card__gallery .splide__arrow::before {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-access-card__gallery .splide__arrow--prev {
    left: -30px;
}
.p-access-card__gallery .splide__arrow--prev::before {
    background-image: url(../images/icon_slider-arrow_left.png);
}
.p-access-card__gallery .splide__arrow--next {
    right: -30px;
}
.p-access-card__gallery .splide__arrow--next::before {
    background-image: url(../images/icon_slider-arrow_right.png);
}
.p-access-card__map {
    aspect-ratio: 374 / 300;
}
.p-access-card__map iframe {
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {

    .p-access-card__gallery .splide__arrow {
        width: 1.25rem;
        height: 1.25rem;
    }
    .p-access-card__gallery .splide__arrow--prev {
        left: -25px;
    }
    .p-access-card__gallery .splide__arrow--next {
        right: -25px;
    }

}

/*
    p-staff
---------------------------------*/
.p-staff__contents {
    margin-block-start: 3.125rem;
}

/*
    p-modal
---------------------------------*/
.p-modal {
	display: none;
	position: fixed;
    inset: 0;
    z-index: var(--z-index-modal);
}
.p-modal.is-open {
    display: grid;
	place-items: center;
}
.p-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 0.6);
}
.p-modal__container {
	position: relative;
	width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 30px;
    overflow-y: auto;
    background-color: var(--color-white);
}
.p-modal__button {
    display: block;
    position: relative;
	width: 35px;
    height: 35px;
    margin-inline-start: auto;
	cursor: pointer;
}
.p-modal__button::before,
.p-modal__button::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--color-base);
    content: "";
}
.p-modal__button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.p-modal__button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.p-modal__content {
    padding: 20px 20px;
}
.p-modal__img {
    text-align: center;
}
.p-modal__img img {
    width: 70%;
}
.p-modal__sub-title {
    margin-block-start: 1.25rem;
    font-size: 1rem;
}
.p-modal__title {
    margin-block-start: 1rem;
    font-size: 1.25rem;
}
.p-modal__text {
    margin-block-start: 2rem;
    font-size: 1rem;
    line-height: 1.4;
}
.p-modal.p-modal--img .p-modal__container {
    max-width: 700px;
    padding: 0;
    background-color: unset;
}
.p-modal.p-modal--img .p-modal__header {
    position: absolute;
    top: 10px;
    right: 10px;
}
.p-modal.p-modal--img .p-modal__content {
    padding: 0;
}
.p-modal.p-modal--img .p-modal__img img {
    width: 100%;
}
@media (max-width: 767px) {

    .p-modal__container {
        padding: 30px 20px;
    }
    .p-modal__button {
        width: 26px;
        height: 26px;
    }
    .p-modal__button::before,
    .p-modal__button::after {
        width: 30px;
    }
    .p-modal__content {
        padding: 20px 10px;
    }
    .p-modal__img img {
        width: 90%;
    }
    .p-modal__sub-title {
        font-size: 0.875rem;
    }
    .p-modal__title {
        margin-block-start: 0.625rem;
        font-size: 1.125rem;
    }
    .p-modal__text {
        margin-block-start: 1.25rem;
    }

}

/*
    p-faq
---------------------------------*/
.p-faq__contents {
    margin-block-start: 3.75rem;
}
.p-faq__item {
    border: 1px solid #FFEC57;
    background-color: var(--bg-color-yellow);
}
.p-faq__item + .p-faq__item {
    margin-block-start: 0.625rem;
}
.p-faq__summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 40px;
    width: 100%;
    padding: 30px 30px 30px 50px;
}
.p-faq__alphabet {
    width: 2rem;
}
.p-faq__title {
    font-size: 1.125rem;
    line-height: 1.7;
}
.p-faq__icon {
    position: relative;
    width: 1.75rem;
    height: 1.75rem;
}
.p-faq__icon::before,
.p-faq__icon::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;translate: -50% -50%;
    width: 1.75rem;
    height: 0.125rem;
    background-color: var(--color-base);
    content: "";
}
.p-faq__icon::after {
    rotate: -90deg;
    transition: rotate 0.3s;
}
.p-faq__summary.is-open .p-faq__icon::after {
    rotate: 0deg;
}
.p-faq__a {
    display: grid; 
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s;
}
.p-faq__a.is-active {
    grid-template-rows: 1fr;
}
.p-faq__content {
    overflow: hidden;
}
.p-faq__content-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 40px;
    padding: 5px 30px 30px 50px;
}
.p-faq__text {
    color: var(--color-gray);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.7;
}
@media (max-width: 767px) {

    .p-faq__summary {
        column-gap: 20px;
        padding: 20px;
    }
    .p-faq__alphabet {
        width: 1.5rem;
    }
    .p-faq__title {
        font-size: 0.875rem;
    }
    .p-faq__icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    .p-faq__icon::before,
    .p-faq__icon::after {
        width: 1.25rem;
    }
    .p-faq__content-inner {
        column-gap: 20px;
        padding: 5px 20px 20px;
    }
    .p-faq__text {
        font-size: 0.875rem;
    }

}

/*
    p-contact
---------------------------------*/
.p-contact__contents {
    margin-block-start: 3.75rem;
}
.p-contact__text {
    margin-block-start: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}
.p-contact__text a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: opacity 0.3s;
}
.p-contact__text a:focus-visible {
    opacity: 0.7;
}
.p-contact__form {
    margin-block-start: 2.5rem;
}
@media (hover: hover) and (pointer: fine) {

    .p-contact__text a:hover {
        opacity: 0.7;
    }

}
@media (max-width: 767px) {

    .p-contact__text {
        font-size: 0.875rem;
    }

}

/*
    p-tab-list
---------------------------------*/
.p-tab-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.p-tab-list li label {
    display: grid;
    place-items: center;
    position: relative;
    height: 50px;
    border: 2px solid var(--color-primary);
}
.p-tab-list li label input {
    position: absolute;
    opacity: 0;
}
.p-tab-list li label:has(input:checked) {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.p-tab-list li label span {
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
}
.p-tab-list li label span::before,
.p-tab-list li label span::after {
    content: none;
}
@media (max-width: 767px) {

    .p-tab-list li label span {
        font-size: 0.875rem;
    }

}

/*
    p-tab-contents
---------------------------------*/
.p-tab-contents {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s ease-out;
}
.p-tab-contents.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/*
    p-form
---------------------------------*/
.p-form__table {
    width: 100%;
}
.p-form__table th,
.p-form__table td {
    padding: 20px;
    border-block-start: 5px solid var(--color-white);
}
.p-form__table th {
    width: 15.625rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}
.p-form__table td {
    width: calc(100% - 15.625rem);
    background-color: var(--bg-color-gray);
}
.p-form__table td input,
.p-form__table td select,
.p-form__table td textarea {
    padding: 0.3em 0.5em;
    border: 1px solid #BDBDBD;
    border-radius: 3px;
    background-color: var(--color-white);
}
.p-form__table tr:has(.must) input,
.p-form__table tr:has(.must) select,
.p-form__table tr:has(.must) textarea {
    border-inline-start: 2px solid var(--color-primary);
}
.p-form__table td select {
    width: 6.875rem;
    color: rgb(117 117 117 / 0.7);
}
.p-form__table td select.select-type {
    width: 8.125rem;
}
.p-form__table td:has(select.select-type)::after {
    left: 8.5rem;
}
.p-form__table:has(.must) textarea {
    resize: vertical;
    width: 100%;
    height: 9.375rem;
}
.p-form__table td.w-100 input {
    width: 100%;
}
.p-form__table td.w-55 input {
    width: 55%;
}
.p-form__table td label {
    position: relative;
}
.p-form__table td a:focus-visible {
    opacity: 0.7;
}
.p-form__table td [type=checkbox] + span::after {
    border-block-end: 3px solid var(--color-primary);
    border-inline-start: 3px solid var(--color-primary);
}
.p-form__date {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 0.5rem;
}
.p-form__date > span:nth-of-type(n+2) {
    display: inline-block;
    margin-block-start: 0.3125rem;
}
.p-form__date-inner {
    display: flex;
    column-gap: 20px;
    position: relative;
}
.p-form__date-inner > span {
    display: inline-block;
}
.p-form__date-inner > span:last-child {
    position: relative;
}
.p-form__date-inner > span:last-child::after {
    position: absolute;
    top: 0.625rem;
    left: 6rem;
    rotate: 45deg;
    width: 0.4em;
    height: 0.4em;
    border-block-end: 1px solid;
    border-inline-end: 1px solid;
    content: "";
}
.address-field {
    display: grid;
    row-gap: 0.5rem;
}
.address-field input {
    width: fit-content;
}
.p-form__table td .address-field input[name="your-address"] {
    width: 100%;
    padding: 0 0.5em;
    border: none;
    background-color: unset;
    outline: none;
}
.p-form__privacy {
    height: 15rem;
    overflow-y: auto;
    padding: 0.3em 0.5em;
    border: 1px solid #BDBDBD;
    border-radius: 3px;
    background-color: var(--color-white);
}
.p-form__privacy p {
    font-size: 1rem;
    line-height: 1.7;
}
.p-form__privacy p + p {
    margin-block-start: 1.25rem;
}
.p-form__privacy a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: opacity 0.3s;
}
.p-form__privacy a::after {
    display: inline-block;
    width: 20px;
    aspect-ratio: 24 / 20;
    background-color: var(--color-primary);
    mask-image: url(../images/icon_external-link.png);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    content: "";
}
.p-form__check {
    margin-block-start: 1.25rem;
}
.p-form__submit {
    margin-block-start: 2.5rem;
    text-align: center;
}
.p-form__submit input {
    width: 16.25rem;
    height: 3.125rem;
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}
.p-form__submit input:focus-visible {
    background-color: #fff;
    color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {

    .p-form__table td a:hover {
        opacity: 0.7;
    }
    .p-form__submit input:hover {
        background-color: #fff;
        color: var(--color-primary);
    }

}
@media (max-width: 767px) {

    .p-form__table th,
    .p-form__table td {
        padding: 15px;
    }
    .p-form__table th {
        width: 100px;
        padding: 15px 5px;
        font-size: 0.6875rem;
    }
    .p-form__table td {
        width: calc(100% - 100px);
    }
    .p-form__table td input,
    .p-form__table td select {
        width: 100%;
    }
    .p-form__table td:has(select)::after {
        right: 25px;
        left: unset;
    }
    .p-form__table td select.select-type {
        width: 100%;
    }
    .p-form__table td:has(select.select-type)::after {
        right: 25px;
        left: unset;
    }
    .p-form__table td label span {
        font-size: 0.875rem;
    }
    .p-form__date > span {
        font-size: 0.875rem;
    }
    .p-form__date-inner {
        flex-direction: column;
        row-gap: 0.5rem;
        width: 100%;
    }
    .p-form__date-inner > span:last-child::after {
        right: 7px;
        left: unset;
    }
    .address-field span {
        font-size: 0.875rem;
    }
    .p-form__privacy p {
        font-size: 0.875rem;
    }
    .p-form__privacy a::after {
        width: 17px;
    }
    .p-form__submit input {
        width: 13.75rem;
        font-size: 1rem;
    }

}

/*
    p-common-space
---------------------------------*/
.p-common-space01 {
    padding-block: 0.75rem 0.3125rem;
}
.p-common-space01__link {
    display: block;
    transition: opacity 0.3s;
}
.p-common-space01__link:focus-visible {
    opacity: 0.7;
}
.p-common-space01__link img {
    width: 100%;
}
.p-common-space02__link {
    display: block;
    transition: opacity 0.3s;
}
.p-common-space02__link:focus-visible {
    opacity: 0.7;
}
.p-common-space02__link img {
    width: 100%;
}
.p-common-space03 {
    padding-block-start: 4.375rem;
}
.p-common-space03__link {
    display: block;
    transition: opacity 0.3s;
}
.p-common-space03__link:focus-visible {
    opacity: 0.7;
}
.p-common-space03__link img {
    width: 100%;
}
@media (hover: hover) and (pointer: fine) {

    .p-common-space01__link:hover {
        opacity: 0.7;
    }
    .p-common-space02__link:hover {
        opacity: 0.7;
    }
    .p-common-space03__link:hover {
        opacity: 0.7;
    }

}
@media (max-width: 767px) {

    .p-common-space01 {
        padding-block: 0.375rem 0.125rem;
    }
    .p-common-space01 .l-inner {
        padding-inline: 0;
    }
    .p-common-space03 {
        padding-block-start: 2rem;
    }

}

/*
    p-common-shop-space
---------------------------------*/
.p-common-shop-space01__link {
    display: block;
    transition: opacity 0.3s;
}
.p-common-shop-space01__link:focus-visible {
    opacity: 0.7;
}
.p-common-shop-space01__link img {
    width: 100%;
}
.p-common-shop-space02__link {
    display: block;
    transition: opacity 0.3s;
}
.p-common-shop-space02__link:focus-visible {
    opacity: 0.7;
}
.p-common-shop-space02__link img {
    width: 100%;
}
.p-common-shop-space03__link {
    display: block;
    transition: opacity 0.3s;
}
.p-common-shop-space03__link:focus-visible {
    opacity: 0.7;
}
.p-common-shop-space03__link img {
    width: 100%;
}
.p-common-shop-space04__link {
    display: block;
    transition: opacity 0.3s;
}
.p-common-shop-space04__link:focus-visible {
    opacity: 0.7;
}
.p-common-shop-space04__link img {
    width: 100%;
}
@media (hover: hover) and (pointer: fine) {

    .p-common-shop-space01__link:hover {
        opacity: 0.7;
    }
    .p-common-shop-space02__link:hover {
        opacity: 0.7;
    }
    .p-common-shop-space03__link:hover {
        opacity: 0.7;
    }
    .p-common-shop-space04__link:hover {
        opacity: 0.7;
    }

}
@media (max-width: 767px) {

    .p-common-shop-space01 .l-inner {
        padding-inline: 0;
    }

}

/*
    p-car-detail
---------------------------------*/
.p-car-detail{
    padding-block: 1.5rem;
}
.p-car-detail__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
}
.p-car-detail__slider #main-carousel .splide__slide {
    aspect-ratio: 452 / 340;
}
.p-car-detail__slider #main-carousel .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-car-detail__slider #thumbnail-carousel {
    margin-block-start: 1.25rem;
}
.p-car-detail__slider #thumbnail-carousel .splide__slide {
    aspect-ratio: 104 / 80;
}
.p-car-detail__slider #thumbnail-carousel .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-car-detail__slider .splide__track--nav>.splide__list>.splide__slide.is-active {
    border-width: 2px;
}
.p-car-detail__slider .splide__arrow {
    opacity: 1;
    width: 1.75rem;
    height: 1.75rem;
    background-color: transparent;
}
.p-car-detail__slider .splide__arrow::before {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-car-detail__slider .splide__arrow--prev {
    left: 0;
    translate: -50%;
}
.p-car-detail__slider .splide__arrow--prev::before {
    background-image: url(../images/icon_slider-arrow_left.png);
}
.p-car-detail__slider .splide__arrow--next {
    right: 0;
    translate: 50%;
}
.p-car-detail__slider .splide__arrow--next::before {
    background-image: url(../images/icon_slider-arrow_right.png);
}
.p-car-detail__video {
    margin-block-start: 2.1875rem;
}
.p-car-detail__video-item {
    aspect-ratio: 430 / 220;
}
.p-car-detail__video-item + .p-car-detail__video-item {
    margin-block-start: 0.625rem;
}
.p-car-detail__video-item img {
    width: 100%;
}
.p-car-detail__video-item iframe {
    width: 100%;
    height: 100%;
}
.p-car-detail__info-shop {
    display: inline-grid;
    padding: 0.36em 1.5em;
    background-color: var(--bg-color-gray02);
    font-size: 0.875rem;
    font-weight: 700;
}
.p-car-detail__info-number {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    margin-block-start: 0.625rem;
    color: var(--color-gray03);
    font-size: 0.875rem;
    font-weight: 500;
}
.p-car-detail__info-maker {
    margin-block-start: 1rem;
    color: var(--color-gray03);
    font-size: 0.875rem;
    font-weight: 700;
}
.p-car-detail__info-name {
    margin-block-start: 0.5rem;
    font-size: 1.875rem;
    font-weight: 700;
}
.p-car-detail__info-text {
    margin-block-start: 0.75rem;
    color: var(--color-gray03);
    font-size: 0.875rem;
    font-weight: 700;
}
.p-car-detail__info02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block-start: 1.875rem;
    padding-inline-end: 30px;
}
.p-car-detail__price-text {
    font-size: 0.875rem;
    font-weight: 700;
}
.p-car-detail__price-text02 {
    margin-block-start: 0.625rem;
    font-size: 0.875rem;
    font-weight: 700;
}
.p-car-detail__price-text02 span {
    color: var(--color-primary);
}
.p-car-detail__price-text02 span span {
    font-size: 1.875rem;
}
.p-car-detail__rank {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 3px;
    width: 4.375rem;
    height: 4.375rem;
    border: 4px solid var(--color-secondary);
    border-radius: 5px;
}
.p-car-detail__rank span:first-child {
    font-size: 0.625rem;
    font-weight: 700;
}
.p-car-detail__rank span:last-child {
    color: var(--color-secondary);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
}
.p-car-detail__table {
    display: grid;
    grid-template-columns: 28% 24% 23% 25%;
    margin-block-start: 1.875rem;
}
.p-car-detail__table dt,
.p-car-detail__table dd {
    padding: 23px 10px 19px;
    border-block: 1px solid var(--bg-color-gray04);
    text-align: center;
}
.p-car-detail__table dt:nth-of-type(n+3),
.p-car-detail__table dd:nth-of-type(n+3) {
    border-block-start: none;
}
.p-car-detail__table dt {
    background-color: var(--bg-color-gray03);
    font-size: 0.75rem;
    font-weight: 700;
}
.p-car-detail__table dd {
    font-size: 1rem;
    font-weight: 700;
}
.p-car-detail__box {
    padding: 15px 18px;
    margin-block-start: 1.25rem;
    border-radius: 5px;
    background-color: var(--bg-color-gray03);
}
.p-car-detail__box-title {
    font-size: 0.75rem;
    font-weight: 700;
}
.p-car-detail__box-text {
    margin-block-start: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}
.p-car-detail__border-box {
    padding: 10px 20px 14px 10px;
    margin-block-start: 0.875rem;
    border-radius: 5px;
    border: 5px solid var(--color-secondary);
}
.p-car-detail__border-box-title {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 13px;
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 700;
}
.p-car-detail__border-box-title::before {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../images/icon_lightbulb.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-car-detail__border-box-text {
    padding-inline-start: 17px;
    margin-block-start: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}
.p-car-detail__space02 {
    margin-block-start: 1.125rem;
}
.p-car-detail__cta {
    padding: 15px 15px 30px;
    margin-block-start: 0.875rem;
    border-radius: 5px;
    border: 1px solid var(--bg-color-yellow04);
    background-color: var(--bg-color-yellow03);
}
.p-car-detail__space03 {
    margin-block-start: 0.875rem;
}
.p-car-detail__common-space {
    grid-column: 1 / 3;
    margin-block-start: 2.25rem;
}
@media (max-width: 1000px) {

    .p-car-detail__inner {
        display: block;
    }
    .p-car-detail__contents:first-child {
        max-width: 600px;
        margin-inline: auto;
    }
    .p-car-detail__contents + .p-car-detail__contents {
        margin-block-start: 2.5rem;
    }

}
@media (max-width: 767px) {
    
    .p-car-detail__video {
        margin-block-start: 1.25rem;
    }
    .p-car-detail__info-number {
        display: inline-block;
        margin-inline-start: 20px;
    }
    .p-car-detail__info-name {
        font-size: 1.5rem;
    }
    .p-car-detail__info02 {
        padding-inline-end: 5px;
    }
    .p-car-detail__price-text02 {
        margin-block-start: 0.3125rem;
        font-size: 1rem;
    }
    .p-car-detail__price-text02 span span {
        font-size: 2.125rem;
    }
    .p-car-detail__table {
        grid-template-columns: 8.4375rem 1fr;
    }
    .p-car-detail__table dt:nth-of-type(n+2),
    .p-car-detail__table dd:nth-of-type(n+2) {
        border-block-start: none;
    }
    .p-car-detail__table dd {
        padding: 21px 30px 20px;
        text-align: left;
    }
    .p-car-detail__border-box {
        padding: 12px 10px 16px;
        border-width: 4px;
    }
    .p-car-detail__border-box-text {
        padding-inline-start: 10px;
        margin-block-start: 0.625rem;
    }
    .p-car-detail__common-space {
        margin-block-start: 0.625rem;
    }

}

/*
    p-cta
---------------------------------*/
.p-cta__text {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
}
.p-cta__text::before {
    display: inline-block;
    width: 0.75rem;
    height: 2.5rem;
    background-image: url(../images/icon_slash-left.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-cta__text::after {
    display: inline-block;
    width: 0.75rem;
    height: 2.5rem;
    background-image: url(../images/icon_slash-right.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-cta__text span {
    font-size: 1rem;
    font-weight: 700;
}
.p-cta__text span span {
    margin-inline: 2px;
    font-size: 1.1875rem;
}
.p-cta__button-wrap {
    display: grid;
    width: fit-content;
    margin-block-start: 0.75rem;
    margin-inline: auto;
}
.p-cta__button-wrap:has(.c-line-button02) {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
}
@media (max-width: 767px) {

    .p-cta__text::before {
        width: 0.6875rem;
        height: 1.5rem;
    }
    .p-cta__text::after {
        width: 0.6875rem;
        height: 1.5rem;
    }
    .p-cta__text span {
        font-size: 0.9375rem;
    }
    .p-cta__text span span {
        font-size: 1.125rem;
    }
    .p-cta__button-wrap {
        width: 100%;
    }
    .p-cta__button-wrap:has(.c-line-button02) {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
    .p-cta__button {
        text-align: center;
    }

}

/*
    p-about
---------------------------------*/
.p-about {
    padding-block-end: 1.875rem;
}
.p-about__contents {
    margin-block-start: 3.75rem;
}
.p-about__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 45px;
}
.p-about__list-item:nth-child(2) .p-list .p-list__table th {
    width: 55%;
}
.p-about__list-item:nth-child(2) .p-list .p-list__table td {
    width: 45%;
}
.p-about__list-item:nth-child(3) .p-list .p-list__table th {
    width: 65%;
}
.p-about__list-item:nth-child(3) .p-list .p-list__table td {
    width: 35%;
}
@media (max-width: 1000px) {

    .p-about__list {
        gap: 40px 30px;
    }

}
@media (max-width: 767px) {

    .p-about__contents {
        margin-block-start: 3rem;
    }
    .p-about__list {
        display: block;
    }
    .p-about__list-item + .p-about__list-item {
        margin-block-start: 3rem;
    }
    .p-about__list-item:nth-child(2) .p-list .p-list__table th {
        width: 50%;
    }
    .p-about__list-item:nth-child(2) .p-list .p-list__table td {
        width: 50%;
    }
    .p-about__list-item:nth-child(3) .p-list .p-list__table th {
        width: 50%;
    }
    .p-about__list-item:nth-child(3) .p-list .p-list__table td {
        width: 50%;
    }

}

/*
    p-list
---------------------------------*/
.p-list__title {
    padding-inline: 5px;
    padding-block-end: 0.4em;
    border-block-end: 2px solid var(--color-primary);
    font-size: 1.25rem;
}
.p-list__table {
    width: 100%;
    margin-block-start: 1.25rem;
}
.p-list__table th,
.p-list__table td {
    width: 50%;
    padding: 6px 10px;
    font-size: 0.875rem;
    vertical-align: middle;
}
.p-list__table th {
    font-weight: 500;
}
.p-list__table td {
    font-weight: 700;
}
.p-list__table tr:nth-child(odd) th,
.p-list__table tr:nth-child(odd) td {
    background-color: var(--bg-color-gray03);
}
@media (max-width: 767px) {

    .p-list__title {
        font-size: 1.125rem;
    }

}

/*
    p-other
---------------------------------*/
.p-other__contents {
    margin-block-start: 3.75rem;
}
.p-other__contents .p-card:nth-child(6) {
    display: none;
}
@media (max-width: 767px) {

    .p-other__contents .p-card:nth-child(6) {
        display: block;
    }

}

/*
    p-cta-wrap
---------------------------------*/
.p-cta-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--z-index-banner);
    opacity: 0;
    visibility: hidden;
    width: 100%;
    padding-block: 1rem;
    background-color: rgb(255 245 191 / 0.65);
    transition: opacity 0.3s, visibility 0.3s ease-out;
}
.p-cta-wrap.is-active {
    opacity: 1;
    visibility: visible;
}
.p-cta-wrap__inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    column-gap: 50px;
}
.p-cta-wrap__banner a {
    display: block;
    width: 334px;
    transition: opacity 0.3s;
}
.p-cta-wrap__banner a:focus-visible {
    opacity: 0.7;
}
.p-cta-wrap__contact .p-cta .p-cta__button-wrap {
    margin-block-start: 0;
}
@media (hover: hover) and (pointer: fine) {

    .p-cta-wrap__banner a:hover {
        opacity: 0.7;
    }

}
@media (max-width: 1000px) {

    .p-cta-wrap {
        display: none;
    }

}

/*
    p-cta-wrap02
---------------------------------*/
.p-cta-wrap02 {
    margin-inline: calc(50% - 50vw);
    padding-block: 3.125rem;
    background-color: rgb(255 245 190 / 0.79);
}
.p-cta-wrap02__inner {
    display: flex;
    justify-content: center;
    column-gap: 40px;
}
.p-cta-wrap02__inner:has(.c-line-button02) {
    display: grid;
    grid-template-columns: auto 1fr;
}
.p-cta-wrap02__banner a {
    display: block;
    width: 334px;
    transition: opacity 0.3s;
}
.p-cta-wrap02__banner a:focus-visible {
    opacity: 0.7;
}
.p-cta-wrap02__contact .p-cta {
    height: 100%;
}
.p-cta-wrap02__contact .p-cta .p-cta__button-wrap {
    width: 100%;
    height: inherit;
    margin-block-start: 0;
}
.p-cta-wrap02__contact .c-line-button02 {
    column-gap: 15px;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
}
.p-cta-wrap02__contact .c-line-button02::before {
    width: 3.375rem;
    height: 3.375rem;
}
.p-cta-wrap02__contact .c-contact-button03 {
    column-gap: 15px;
    width: 100%;
    height: 100%;
    border-color: #FF8002;
    background-color: #FF8002;
    font-size: 1.5rem;
}
.p-cta-wrap02__contact .c-contact-button03::before {
    width: 3rem;
    height: 3rem;
}
.p-cta-wrap02__contact .c-contact-button03:focus-visible {
    background-color: var(--color-white);
    color: #FF8002;
}
.p-cta-wrap02__contact .c-contact-button03:focus-visible::before {
    background-color: #FF8002;
}
@media (hover: hover) and (pointer: fine) {

    .p-cta-wrap02__banner a:hover {
        opacity: 0.7;
    }
    .p-cta-wrap02__contact .c-contact-button03:hover {
        background-color: var(--color-white);
        color: #FF8002;
    }
    .p-cta-wrap02__contact .c-contact-button03:hover::before {
        background-color: #FF8002;
    }

}
@media (max-width: 1000px) {

    .p-cta-wrap02__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 20px;
    }
    .p-cta-wrap02__inner:has(.c-line-button02) {
        grid-template-columns: 1fr;
    }
    .p-cta-wrap02__contact .c-line-button02 {
        width: 17.5rem;
        height: 6.25rem;
    }
    .p-cta-wrap02__contact .c-contact-button03 {
        width: 17.5rem;
        height: 6.25rem;
    }

}
@media (max-width: 767px) {

    .p-cta-wrap02__inner {
        flex-direction: column;
        align-items: center;
    }

}

/*
    p-blog-archive
---------------------------------*/
.p-blog-archive {
    padding-block-end: 0;
}
.p-blog-archive__contents {
    margin-block-start: 3.75rem;
}
.p-blog-archive__items {
    margin-block-start: 3.125rem;
}
.p-blog-archive__pagination {
    margin-block-start: 5rem;
}
@media (max-width: 767px) {

    .p-blog-archive .l-inner {
        padding-inline: 10px;
    }
    .p-blog-archive__contents {
        margin-block-start: 2.5rem;
    }
    .p-blog-archive__items {
        margin-block-start: 1.875rem;
    }
    .p-blog-archive__items .p-blog-card:nth-child(n+11) {
        display: none;
    }
    .p-blog-archive__pagination {
        margin-block-start: 3.75rem;
    }

}

/*
    p-category
---------------------------------*/
.p-category {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 8px;
}
@media (max-width: 767px) {

    .p-category {
        gap: 15px 5px;
    }

}

/*
    p-pagination
---------------------------------*/
.p-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.p-pagination ul a:not(.first):not(.prev):not(.next):not(.last),
.p-pagination ul span {
    display: inline-grid;
    place-items: center;
    width: 2.8125rem;
    height: 2.8125rem;
    border: 1px solid var(--color-gray);
    background-color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
.p-pagination ul a:not(.first):not(.prev):not(.next):not(.last):focus-visible {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
}
.p-pagination ul span.current {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
}
.p-pagination ul span.dots {
    border: none;
}
.p-pagination ul a.first,
.p-pagination ul a.prev,
.p-pagination ul a.next,
.p-pagination ul a.last {
    position: relative;
    border: none;
    width: 1.875rem;
    color: transparent;
    font-size: 0.625rem;
    transition: opacity 0.3s;
}
.p-pagination ul a.prev {
    margin-inline-end: 10px;
}
.p-pagination ul a.next {
    margin-inline-start: 10px;
}
.p-pagination ul a.first::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    rotate: 180deg;
    width: 1.375rem;
    height: 1.125rem;
    background-image: url(../images/icon_pagination-double-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-pagination ul a.prev::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    rotate: 180deg;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url(../images/icon_pagination-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-pagination ul a.next::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url(../images/icon_pagination-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-pagination ul a.last::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 1.375rem;
    height: 1.125rem;
    background-image: url(../images/icon_pagination-double-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-pagination ul a.first:focus-visible,
.p-pagination ul a.prev:focus-visible,
.p-pagination ul a.next:focus-visible,
.p-pagination ul a.last:focus-visible {
    opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {

    .p-pagination ul a:not(.first):not(.prev):not(.next):not(.last):hover {
        border-color: var(--color-primary);
        background-color: var(--color-primary);
        color: var(--color-white);
    }
    .p-pagination ul a.first:hover,
    .p-pagination ul a.prev:hover,
    .p-pagination ul a.next:hover,
    .p-pagination ul a.last:hover {
        opacity: 0.7;
    }

}
@media (max-width: 767px) {

    .p-pagination ul {
        gap: 5px;
    }
    .p-pagination ul a:not(.first):not(.prev):not(.next):not(.last),
    .p-pagination ul span {
        width: 2.375rem;
        height: 2.375rem;
        font-size: 1rem;
    }
    .p-pagination ul a.first::before {
        translate: -40% -50%;
        width: 1.125rem;
        height: 1.125rem;
    }
    .p-pagination ul a.prev {
        padding-inline-end: 0;
    }
    .p-pagination ul a.prev::before {
        translate: -40% -50%;
        width: 1.125rem;
        height: 1.125rem;
    }
    .p-pagination ul a.next {
        padding-inline-start: 0;
    }
    .p-pagination ul a.next::before {
        width: 1.125rem;
        height: 1.125rem;
    }
    .p-pagination ul a.last::before {
        width: 1.125rem;
        height: 1.125rem;
    }

}

/*
    p-post
---------------------------------*/
.p-post {
    overflow: hidden;
    color: #333333;
}
.p-post__mv {
    margin-inline: calc(50% - 50vw);
}
.p-post__mv img {
    width: 100%;
}
.p-post__intro {
    padding-block: 3.75rem 4.375rem;
}
.p-post__intro h1 {
    font-size: 1.25rem;
    line-height: 1.4;
}
.p-post__intro p {
    margin-block-start: 1.875rem;
}
.p-post p {
    font-size: 1rem;
    line-height: 1.8;
}
.p-post p strong {
    color: var(--color-primary);
}
.p-post > p {
    margin-block: 1.25rem;
}
.p-post__table {
    width: 95%;
    margin-inline: auto;
    padding: 28px 100px 40px;
    border: 1px solid #FFE200;
    background-color: #FFF8D1;
}
.p-post__table .ez-toc-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}
.p-post__table nav {
    margin-block-start: 1.875rem;
}
.p-post__table nav ul li + li {
    margin-block-start: 0.625rem;
}
.p-post__table nav ul li > a {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}
.p-post__table nav ul li > a::before {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    translate: 0 0.125rem;
    background-image: url(../images/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-post__table nav ul li > a:focus-visible {
    text-decoration: underline;
}
.p-post__contents h2 {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    padding-block: 5rem 0.875rem;
    margin-block-end: 1.25rem;
    border-block-end: 2px solid var(--color-primary);
    font-size: 1.25rem;
    line-height: 1.4;
}
.p-post__contents h2::before {
    display: inline-block;
    width: 1.3125rem;
    height: 1.3125rem;
    translate: 0 0.25rem;
    background-image: url(../images/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.p-post__contents > h3 {
    margin-block: 3.75rem 1.25rem;
    font-size: 1.25rem;
}
.p-post__contents h2 + p {
    padding-inline: 20px;
}
.p-post__contents > figure {
    margin-block: 3.125rem 2rem;
}
.p-post__contents > figure.w-100 {
    margin-block: 2.5rem;
    margin-inline: calc(50% - 50vw);
}
.p-post__contents > figure.w-100 img {
    width: 100%;
}
.p-post__contents .col-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 45px;
}
.p-post__contents .col-3 figure {
    aspect-ratio: 280 / 220;
}
.p-post__contents .col-3 figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p-post__contents .col-3 p:first-of-type {
    margin-block-start: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}
.p-post__contents .col-3 p:last-of-type {
    margin-block-start: 1.25rem;
    font-size: 1rem;
}
.p-post__contents .col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
}
.p-post__contents .col-2 figure {
    aspect-ratio: 460 / 360;
}
.p-post__contents .col-2 figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p-post__contents .col-2 p:first-of-type {
    margin-block-start: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}
.p-post__contents .col-2 p:last-of-type {
    margin-block-start: 1.25rem;
    font-size: 1rem;
}
.p-post__contents .p-cta-wrap02 {
    margin-block: 5rem;
}
.p-post__contents .p-cta-wrap02:last-child {
    margin-block-end: 0;
}
@media (hover: hover) and (pointer: fine) {

    .p-post__table nav ul li > a:hover {
        text-decoration: underline;
    }

}
@media (max-width: 767px) {

    .p-post__intro {
        padding-block: 3.125rem;
    }
    .p-post p {
        font-size: 0.875rem;
    }
    .p-post__table {
        padding: 28px 30px 40px;
    }
    .p-post__table .ez-toc-title {
        font-size: 1.125rem;
    }
    .p-post__table nav ul li > a {
        font-size: 0.875rem;
    }
    .p-post__table nav ul li > a::before {
        width: 1rem;
        height: 1rem;
    }
    .p-post__contents h2 {
        padding-block: 3.75rem 0.875rem;
        font-size: 1.125rem;
    }
    .p-post__contents h2::before {
        width: 1.125rem;
        height: 1.125rem;
    }
    .p-post__contents h2 + p {
        padding-inline: 0;
    }
    .p-post__contents > h3 {
        font-size: 1.125rem;
    }
    .p-post__contents .col-3 {
        grid-template-columns: 1fr;
    }
    .p-post__contents .col-3 p:first-of-type {
        font-size: 1rem;
    }
    .p-post__contents .col-3 p:last-of-type {
        margin-block-start: 1rem;
        font-size: 0.875rem;
    }
    .p-post__contents .col-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .p-post__contents .col-2 p:first-of-type {
        font-size: 1rem;
    }
    .p-post__contents .col-2 p:last-of-type {
        margin-block-start: 1rem;
        font-size: 0.875rem;
    }
    .p-post__contents > figure {
        margin-block: 2.5rem 2rem;
    }
    .p-post__contents .p-cta-wrap02 {
        margin-block: 2.5rem;
    }

}

/*
    p-post02
---------------------------------*/
.p-post02 {
    padding-block: 3.75rem;
    background-color: rgb(60 60 60 / 0.79);
    color: var(--color-white);
}
.p-post02 h2 {
    font-size: 1.875rem;
}
.p-post02 h2:nth-of-type(n+2) {
    margin-block: 3.125rem 1.25rem;
}
.p-post02 h3 {
    margin-block: 3.125rem 1.25rem;
    font-size: 1.1875rem;
}
.p-post02 p {
    margin-block: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}
.p-post02 p:last-child {
    margin-block-end: 0;
}
.p-post02 figure {
    margin-block: 1.25rem;
}
.p-post02 figure:last-child {
    margin-block-end: 0;
}
.p-post02 + .p-common-space03 {
    padding-block: 1rem;
}
@media (max-width: 767px) {

    .p-post02 h2 {
        font-size: 1.25rem;
    }
    .p-post02 p {
        font-size: 0.875rem;
    }
    .p-post02 h3 {
        font-size: 1rem;
    }

}
