.content--inner-medium {
    width: 100%;
    max-width: var(--inner-medium);
}

.content--inner-small {
    width: 100%;
    max-width: var(--inner-small);
}

.pageHeader--title {
    width: 100%;
    font-size: 2.4rem;
    text-align: center;
    padding: 24px;
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
}

.darkTheme {
    color: var(--white);
}

.emphasis {
    color: var(--primary-bland-color);
}

.strong {
    color: var(--red);
}

.localLargeFont {
    font-size: 1.4em;
}

.pagenation {
    display: flex;
    padding: 24px;
}

.pagenation--pageNumber {
    width: 100%;
    text-align: center;
    color: var(--black);
    border: 1px solid var(--primary-bland-color);
    padding: 4px 16px;
    margin-right: 8px;
}

.pagenation--pageNumber-current {
    background-color: var(--primary-bland-color);
    color: var(--white);
}

section .content--title {
    width: 100%;
    font-size: 3.2rem;
    line-height: 1.5;
    text-align: left;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--primary-bland-color);
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    section .content--title { 
        font-size: 2rem;
    }
}

.media {
    display: flex;
}

.media-reverse {
    flex-direction: row-reverse;
}

.bg-white {
    background-color: var(--white);
}

.crossTable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.4rem;
    table-layout: fixed;
}

.crossTable--body {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.crossTable--bodyRow {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
    /* line-height: 1.6; */
}

.crossTable--header {
    /* 各項目の幅は均等割付けの為、.crossTableに`table-layout: fixed;`を設定 */
    color: var(--font-color-black);
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: var(--bg-color-lightgrey);
    padding: 16px 18px;
    vertical-align: middle;
    border: 1px solid var(--grey);
}

.crossTable--text {
    width: auto;
    color: var(--font-color-black);
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    background-color: var(--white);
    padding: 15px 18px;
    vertical-align: middle;
    border-bottom: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .crossTable--bodyRow {
        margin-top: 8px;
    }

    .crossTable--header {
        width: 100%;
        padding: 1em;
        font-size: 1.2rem;
    }
    
    .crossTable--text {
        width: 100%;
        padding: 1em;
        font-size: 1.4rem;
    }
}

.horizontalTableBox {
    width: 100%;
    margin-top: 48px;
}

.horizontalTable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.4rem;
    border: 1px solid var(--grey);
}

.horizontalTable--body {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.horizontalTable--bodyRow {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.horizontalTable--header {
    width: 25%;
    min-width: 240px;
    color: var(--font-color-black);
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: var(--bg-color-lightgrey);
    padding: 15px 18px;
    border-bottom: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
}

.horizontalTable--text {
    width: auto;
    color: var(--font-color-black);
    text-align: left;
    font-size: 1.6rem;
    /* font-weight: bold; */
    background-color: var(--white);
    padding: 15px 18px;
    border-bottom: 1px solid var(--grey);
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .horizontalTableBox {
        margin-top: 24px;
    }

    .horizontalTable--body {
        display: block;
    }

    .horizontalTable--bodyRow {
        display: block;
        margin-top: 8px;
    }

    .horizontalTable--header {
        display: block;
        width: 100%;
        padding: 8px 5%;
        font-size: 1.2rem;
    }
    
    .horizontalTable--text {
        display: block;
        width: 100%;
        padding: 12px 5%;
        font-size: 1.4rem;
        background-color: transparent;
    }
}

.costomerVoiceComponent {
    width: 100%;
}

.costomerVoiceComponent .fukidashi {
    color: var(--black);
    font-size: 1.4rem;
    text-align: left;
    background-color: var(--white);
    padding: 8px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 2px solid var(--grey);
    position: relative;
}

.costomerVoiceComponent .fukidashi:after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 4%;
    transform: translate(0, 100%);
    width: 0;
    height: 0;
    border-color: var(--grey) transparent transparent transparent;
    border-width: 10px 12px 0 12px;
    border-style: solid;
}

.costomerVoiceComponent .star-yellow {
    width: 16px;
}

.costomerVoiceComponent .voice {
    margin-top: 8px;
    height: 88px;
    overflow-y: scroll;
}

.costomerVoiceComponent .voice--text {
    font-size: 1.5rem;
    line-height: 1.5;
}

.costomerVoiceComponent .customer {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.costomerVoiceComponent .customer--icon {
    border-radius: 50%;
}


.carCatalogComponent {
    width: 100%;
}

.carCatalogComponent .carCatalogComponent--imgBox {
    width: 100%;
}

.carCatalogComponent .carCatalogComponent--img {
    width: 100%;
}

.carCatalogComponent .carCatalogComponent--title {
    color: var(--white);
    font-size: 2rem;
    text-align: center;
    padding: 8px 4px;
    background-color: var(--primary-bland-color);
}

.carCatalogComponent .spec {
    border: 1px solid var(--grey);
}

.carCatalogComponent .spec--text {
    padding: 8px;
    border: 1px solid var(--grey);
}


.youtubeBox {
    position: relative;
    width: 100%;
    /* aspect-ratio: 16 / 9; */
    padding-top: 56%;
}

.youtubeBox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 表示非表示 */

@media screen and (min-width: 600px) {
    /* 600px以上の幅の場合に適応される */
    
    .spOnly {
        display: none;
    }
    
}

@media screen and (max-width: 1025px) {
    /* 1024pxまでの幅の場合に適応される */
    .pcOnly {
        display: none;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .notSpOnly {
        display: none;
    }
}

@media not screen and (min-width: 599px) and (max-width: 1024px) {
    /* 599px以上、1024px以下の幅の場合に適応される */
    .tabletOnly {
        display: none;
    }
}

/* 親要素を無視したwidth100%の設定 */
.widthFullsizeIgnoreParentElement {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .widthFullsizeIgnoreParentElement-spOnly {
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
    }
}

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

.grid-col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-col4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-col5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* パンくずリスト */
.breadcrumbs {
    display: grid;
    place-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.breadcrumbs--item {
    padding-left: 8px;
    padding-right: 8px;
    /* font-weight: bold; */
}

.breadcrumbs--baseline {
    vertical-align: text-top;
}

/* ボタン */

.arrowBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    padding: .9em 2em;
    border: none;
    border-bottom: solid 5px var(--button-border-color);
    border-radius: 5px;
    background-color: var(--button-bg-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.6rem;
    transition: .5s ease;
}

.arrowBtn::after {
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.arrowBtn:hover {
    transform: translateY(3px);
    border-bottom-width: 2px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .arrowBtn {
        font-size: 1.5rem;
    }
}

.blockLayout-col2 {
    width: 100%;
    max-width: var(--inner-medium);
    display: flex;
    justify-content: space-between;
    margin: 32px auto;
    column-gap: 16px;
}

.mainBlock {
    width: 100%;
    max-width: 880px;
}

.sidemenuBlock {
    width: 320px;
    padding-right: 8px;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .sidemenuBlock {
        width: 280px;
    }
}

@media screen and (max-width: 599px) {
    /* 1024pxまでの幅の場合に適応される */
    .blockLayout-col2 {
        margin-top: 0;
        flex-direction: column;
    }

    .mainBlock {
        width: 100%;
    }

    .sidemenuBlock {
        width: 100%;
    }
}

.ctaSection {
    width: 100%;
    background-color: var(--bg-color-lightyellow);
    padding: 32px 16px;
}

.ctaSection .content--title {
    font-size: 2.4rem;
    line-height: 1.5;
    text-align: center;
}

.ctaSection .meritList {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ctaSection .meritItem {
    font-size: 1.6rem;
    background-color: var(--white);
    border-left: 3px solid var(--primary-bland-color);
    padding: 12px 12px;
    letter-spacing: 1px;
}

.ctaSection .contactBox {
    margin-top:16px;
    display: grid;
    place-items: center;
    row-gap: 16px;
}

.ctaSection .contactBox--form,
.ctaSection .contactBox--tel {
    display: grid;
    place-items: center;
}

.ctaSection .content--text-small {
    font-size: 1.4rem;
    line-height: 1.5;
}

.ctaSection .contactBox--text {
    display: inline-block;
    font-size: 1.6rem;
    text-align: center;
    padding: 16px 32px;
    position: relative;
}

.ctaSection .contactBox--text::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 20px;
    left: 0;
    background-color: var(--black);
    transform: skewX(35deg);
}

.ctaSection .contactBox--text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 20px;
    right: 0;
    background-color: var(--black);
    transform: skewX(-35deg);
}

.ctaSection .contactBox .arrowBtn {
    font-size: 2rem;
    width: 500px;
    max-width: 500px;
}

.ctaSection .contactBox--link-tel {
    color: var(--green);
    font-size: 3.2rem;
    font-weight: bold;
    display: block;
    text-align: center;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .ctaSection .meritList {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }

    .ctaSection .contactBox .arrowBtn {
        font-size: 2rem;
        width: 100%;
    }

}


.selfIntroductionScreen {
    margin-top: 32px;
    padding: 8px;
    background-image: url(/img/bg_selfIntroduction.jpeg);
}

.selfIntroductionScreen .bg-white {
    padding: 16px;
}

.selfIntroductionScreen .selfIntroductionScreen--title {
    font-size: 2.4rem;
    line-height: 1.5;
    text-align: left;
    padding-bottom: 4px;
    border-bottom: 1px dotted var(--black);
}

.selfIntroductionScreen .selfIntroductionScreen--textBox {
    margin-top: 16px;
}

.selfIntroductionScreen .selfIntroductionScreen--text {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .selfIntroductionScreen .selfIntroductionScreen--title {
        font-size: 2rem;
    }
}


.customerVoiceSection {
    width: 100%;
    padding: 32px 16px;
}

.customerVoiceSection .customerVoiceCatalog {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.customerVoiceSection .customerVoiceCatalog .media {
    width: 100%;
    justify-content: flex-start;
    column-gap: 16px;
}

.customerVoiceSection .customerVoiceCatalog .media--imgBox {
    width: 145px;
}

.customerVoiceSection .customerVoiceCatalog .media--img {
    width: 100%;
}

.customerVoiceSection .customerVoiceCatalog .media--body {
    flex: 1 0;
    padding-top: 8px;
}

.customerVoiceSection .customerVoiceCatalog .media--title {
    font-size: 1.8rem;
}

.customerVoiceSection .customerVoiceCatalog .media--text {
    font-size: 1.6rem;
    margin-top: 16px;
}

.customerVoiceSection .inductionCustomerVoice{
    width: 100%;
    display: grid;
    place-items: center;
    margin-top: 24px;
}

.customerVoiceSection .inductionCustomerVoice .arrowBtn {
    width: 100%;
    background-color: var(--primary-bland-color);
    border-bottom-color: var(--primary-bland-color-dark);
}

.customerVoiceSection .swiperBox {
    width: 100%;
    max-width: 860px;
    margin-top: 24px;
}


@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .customerVoiceSection .customerVoiceCatalog {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .customerVoiceSection .swiperBox {
        width: 100%;
        max-width: 488px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .customerVoiceSection .swiperBox {
        width: 100%;
        max-width: 320px;
    }
}

.staffSection {
    width: 100%;
    padding: 32px 16px;
}

.staffSection .content--imgBox {
    width: 100%;
    margin-top: 16px;
}

.staffSection .content--img {
    width: 100%;
}

.staffSection .inductionStaff {
    width: 100%;
    display: grid;
    place-items: center;
    margin-top: 24px;
}

.staffSection .inductionStaff .arrowBtn {
    background-color: var(--primary-bland-color);
    border-bottom-color: var(--primary-bland-color-dark);
}
.categorySection {
    padding: 24px 8px 60px;
}

.categorySection .categories {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.categorySection .categoryBtn {
    display: block;
    font-size: 1.6rem;
    border: 1px solid var(--primary-bland-color);
    color: var(--primary-bland-color);
    text-align: center;
    padding: 16px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .categorySection .categories {
        grid-template-columns: repeat(2, 1fr);
    }
}