.content--inner-medium {
    width: 100%;
    max-width: var(--inner-medium);
}

.content--inner-small {
    width: 100%;
    max-width: var(--inner-small);
}

.darkTheme {
    color: var(--white);
}

.emphasis {
    color: var(--primary-bland-color);
}

.localLargeFont {
    font-size: 1.4em;
}

.leftAlignment {
    display: flex;
    justify-content: flex-start;
    margin-left: calc(50% - 50vw);
}

.rightAlignment {
    display: flex;
    justify-content: flex-end;
    margin-right: calc(50% - 50vw);
}

.media {
    display: flex;
}

.media-reverse {
    flex-direction: row-reverse;
}

/* 親要素を無視した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);
    }
}

/* アンダーライン */
/* .underline-white {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.underline-white::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 0.1em;
    background-color: var(--white);
} */

.underline-white {
    background-image: linear-gradient(transparent 90%, var(--white) 0%);
}

.underline-accentColor {
    background-image: linear-gradient(transparent 60%, var(--accent-color) 0%);
}

.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: 16px 0 32px;
}

.breadcrumbs--item {
    padding-left: 8px;
    padding-right: 8px;
    font-weight: bold;
}

.breadcrumbs--baseline {
    vertical-align: text-top;
}

/* ボタン */

.arrowBtn {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 360px;
    padding: 24px 2%;
    border-radius: 9999px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    background: var(--black);
    color: var(--white);
}

.arrowBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-100%, -50%);
    width: 16px;
    height: 16px;
    background-image: url(/img/icon_arrow_right_white.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.darkTheme .arrowBtn {
    background: var(--primary-bg-gradation);
}

.darkTheme .arrowBtn::after {
    background-image: url(/img/icon_arrow_right_white.png);
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .arrowBtn {
        font-size: 1.8rem;
    }
}

.arrowBorderBtn {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 360px;
    padding: 16px 2%;
    border-radius: 9999px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: var(--primary-bland-color);
    background: var(--white);
    border: 2px solid var(--primary-bland-color);
}

.arrowBorderBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-100%, -50%);
    width: 16px;
    height: 16px;
    background-image: url(/img/icon_arrow_right_orange.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.darkTheme .arrowBorderBtn {
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
}

.darkTheme .arrowBorderBtn::after {
    background-image: url(/img/icon_arrow_right_white.png);
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .arrowBorderBtn {
        font-size: 1.8rem;
    }
}

.squareArrowBtn {
    padding: 16px 24px 16px 16px;
    width: 100%;
    max-width: 360px;
    border: 3px solid var(--black);
    display: flex;
    align-items: center;
    column-gap: 16px;
    position: relative;
}

.squareArrowBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-100%, -50%);
    width: 16px;
    height: 16px;
    background-image: url(/img/icon_arrow_right_black.png);
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .squareArrowBtn {
        font-size: 1.8rem;
    }
}

.contactBtn {
    background: var(--primary-bg-gradation);
    padding: 24px 48px;
    display: grid;
    place-items: center;
}

.telBtn {
    border: 2px solid var(--black);
    background-color: var(--white);
    padding: 24px 48px;
    display: grid;
    place-items: center;
}

.contactBtn--contact {
    font-size: 3.2rem;
    font-weight: bold;
    text-align: left;
    position: relative;
    padding-left: 40px;
}

.contactBtn--contact::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    background-image: url(/img/icon_mail_white.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.telBtn--tel {
    color: var(--black);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: left;
    position: relative;
    padding-left: 24px;
}

.telBtn--tel::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 24px;
    background-image: url(/img/icon_phone_black.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.contactBtn--text {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 16px;
}

.telBtn--text {
    color: var(--black);
    font-size: 1.8rem;
    text-align: center;
    margin-top: 16px;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .contactBtn,
    .telBtn {
        padding: 16px 24px;
    }

    .contactBtn--contact,
    .telBtn--tel {
        font-size: 2.4rem;
    }

    .contactBtn--text,
    .telBtn--text {
        font-size: 1.6rem;
    }
}

/* カード */

.card {
    width: 100%;
    position: relative;
}

.card--title {
    font-size: 2.4rem;
    color: var(--white);
    background-color: var(--primary-bland-color);
    padding: 16px;
    text-align: center;
}

.card--imgBox {
    width: 100%;
    line-height: 0;
}

.card--img {
    width: 100%;
}

.card--body {
    width: 100%;
    padding: 1em;
    background-color: var(--white);
}

.card--date {
    color: var(--secondary-bland-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.card--text {
    color: var(--font-color-black);
    font-size: 1.6rem;
    line-height: 1.5;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .card--title {
        font-size: 2rem;
    }
}

/* 表示非表示 */

@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;
    }
}

.copyrightSection {
    padding: 16px;
    display: grid;
    place-items: center;
    background-color: var(--black);
}

.copyrightSection .copyright--text {
    font-size: 1.4rem;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .copyrightSection {
        padding-bottom: 80px;
    }

}

.bottomMenu {
    display: none;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .bottomMenu {
        width: 100%;
        position: fixed;
        left: 0;
        bottom: 0;
        background: var(--primary-bg-gradation);
        display: flex;
        padding: 8px;
        z-index: 999;
    }

    .bottomMenu .telBtn,
    .bottomMenu .contactBtn {
        flex-basis: 50%;
        padding: 8px;
    }
    .bottomMenu .contactBtn {
        background-color: transparent;
    }

    .bottomMenu .telBtn--tel,
    .bottomMenu .contactBtn--contact {
        font-size: 1.8rem;
        padding-left: 20px;
    }

    .bottomMenu .telBtn--tel::before {
        height: 18px;
    }

    .bottomMenu .contactBtn--contact::before {
        width: 16px;
        height: 10px;
    }

    .bottomMenu .telBtn--text,
    .bottomMenu .contactBtn--text {
        margin-top: 8px;
        font-size: 1rem;
    }

}



/* common section */

.hero-lowerPage {
    padding: 120px 5%;
    background-image: url(/img/bg-car-showroom.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hero-lowerPage::after {
    position: absolute;
    content: "";
    background: var(--bg-color-hero-lower-page);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.hero-lowerPage--inner {
    width: 100%;
    max-width: var(--inner-medium);
    position: relative;
    z-index: 1;
}

.hero-lowerPage--title {
    font-size: 4.8rem;
    text-align: center;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .hero-lowerPage {
        padding: 48px 5%;
    }
    
    .hero-lowerPage--title {
        font-size: 3.2rem;
    }

}

.areaMapSection {
    padding: 64px 5%;
}

.areaMapSection .content--title {
    font-size: 5.6rem;
    text-align: center;
}

.areaMapSection .content--textBox {
    margin-top: 24px;
}

.areaMapSection .content--text {
    font-size: 2.8rem;
    text-align: center;
}

.areaMapSection .media {
    width: 100%;
    align-items: center;
    margin-top: 32px;
}

.areaMapSection .media--body {
    flex: 1 0;
    background-color: var(--bg-color-lightgrey);
    margin-right: -48px;
    padding: 42px 32px 64px;
    z-index: 1;
}

.areaMapSection .media--imgBox {
    width: 100%;
    max-width: 520px;
}

.areaMapSection .media--img {
    width: 100%;
}

.areaMapSection .media--title {
    font-size: 3.2rem;
    line-height: 1.5;
}

.areaMapSection .media--textBox {
    margin-top: 24px;
}

.areaMapSection .media--text {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .areaMapSection .media--title {
        font-size: 2.8rem;
    }
    
    .areaMapSection .media--imgBox {
        max-width: 360px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .areaMapSection .content--title {
        font-size: 4.8rem;
    }

    .areaMapSection .content--textBox {
        margin-top: 24px;
    }

    .areaMapSection .content--text {
        font-size: 2.4rem;
    }
    
    .areaMapSection .media {
        flex-direction: column-reverse;
    }

    .areaMapSection .media--body {
        padding: 24px;
        margin-right: 0;
    }

    .areaMapSection .media--title {
        font-size: 2.4rem;
    }

}

.specialitySupportSection {
    padding: 0 5% 64px;
    text-align: center;
}

.specialitySupportSection .content--title {
    font-size: 4rem;
    padding: 1em;
    width: 100%;
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
}

.specialitySupportSection .content--textBox {
    margin-top: 48px;
}

.specialitySupportSection .grid-col4 {
    margin-top: 48px;
    gap: 24px;
}

.specialitySupportSection .card--body {
    padding-left: 0;
    padding-right: 0;
}

.specialitySupportSection .card--text {
    text-align: left;
    text-align: justify;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .specialitySupportSection .grid-col4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .specialitySupportSection .content--title {
        font-size: 3.2rem;
        padding: 16px;
    }

    .specialitySupportSection .content--textBox {
        margin-top: 32px;
    }

    .specialitySupportSection .content--text {
        text-align: left;
    }
    
    .specialitySupportSection .grid-col4 {
        margin-top: 32px;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .specialitySupportSection .card--title {
        padding: 12px 8px;
        font-size: 1.8rem;
    }
}

/* Index: visionSection */

.visionSection {
    padding: 24px 5%;
    /* background: var(--primary-bg-gradation); */
    background-image: url(/img/bg-car-showroom.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.visionSection::after {
    position: absolute;
    content: "";
    background: var(--primary-bg-gradation-transparent);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.visionSection .content--title {
    font-size: 3.2rem;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 1;
}

.visionSection .content--textBox {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.visionSection .content--text {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
}

.visionSection .content--btnBox {
    margin-top: 40px;
    display: grid;
    justify-items: center;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .visionSection .content--title {
        font-size: 2rem;
        line-height: 1.5;
        text-align: left;
    }

    .visionSection .content--textBox {
        margin-top: 24px;
    }

    .visionSection .content--text {
        font-size: 1.6rem;
        text-align: left;
    }

    .visionSection .content--btnBox {
        margin-top: 32px;
    }
}


/* news */
.informationSection {
    background-color: var(--white);
    padding: 40px 5%;
}

.informationSection .flex-col2 {
    display: flex;
    column-gap: calc(11% + 1px);
    align-items: center;
}

.informationSection .content--titleBox {
    display: block;
}

.informationSection .content--title {
    font-size: 3.2rem;
    text-align: center;
}

.informationSection .flex-col2--body {
    display: block;
    flex: 1 0 auto;
    /* padding-top: 60px; */
}

.informationSection .content--textBox {
    margin-top: 16px;
    text-align: center;
}

.informationSection .content--titleBtn {
    margin-top: 40px;
    font-size: 1.6rem;
}

.informationSection .recordList {
    width: 100%;
    padding: 16px 0 8px;
    position: relative;
    border-bottom: 1px dotted var(--black);
}

.informationSection .recordList::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 10px;
    height: 12px;
    background-image: url(../img/rounded-triangle-right-lightblue.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.informationSection .recordList--metadata {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.informationSection .recordList--date {
    color: var(--secondary-bland-color);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
}

.informationSection .recordList--genre {
    color: var(--white);
    background-color: var(--bg-color-genre);
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.6;
    padding: 4px 12px;
}

.informationSection .recordList--titleBox {
    margin-top: 8px;
}

.informationSection .recordList--title {
    color: var(--font-color-black);
    font-size: 1.6rem;
    line-height: 1.6;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .informationSection {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .informationSection .flex-col2 {
        flex-direction: column;
        row-gap: 8px;
    }

    .informationSection .content--titleBox {
        flex: initial;
    }

    .informationSection .flex-col2--body {
        flex: initial;
        width: 100%;
        margin-top: 24px;
    }

    .informationSection .recordList {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .informationSection .content--titleBtn {
        display: none;
    }

    .informationSection .btnBox {
        margin-top: 32px;
    }
}

/* googleMapSection */

.googleMapSection {
    line-height: 0;
}

/* Index: catSection */

.ctaSection {
    padding: 24px 5%;
    background-image: url(/img/bg-car-showroom.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.ctaSection::after {
    position: absolute;
    content: "";
    background: var(--bg-color-cta);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.ctaSection .content--title {
    font-size: 3.2rem;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ctaSection .content--textBox {
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.ctaSection .content--text {
    font-size: 1.8rem;
    line-height: 2;
    text-align: center;
}

.ctaSection .content--btnBox {
    margin-top: 24px;
    display: grid;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.ctaSection .content--btnBox .grid-col2 {
    column-gap: 32px;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .ctaSection .content--title {
        font-size: 2rem;
        line-height: 1.5;
        text-align: left;
    }

    .ctaSection .content--textBox {
        margin-top: 24px;
    }

    .ctaSection .content--text {
        font-size: 1.6rem;
        text-align: left;
    }

    .ctaSection .content--btnBox {
        margin-top: 32px;
    }

    .ctaSection .content--btnBox .grid-col2 {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 24px;
    }
}

.makerSection {
    padding: 64px 5%;
}

.makerSection .content--box {
    width: 100%;
    max-width: 960px;
    padding: 48px 96px;
    background-color: var(--bg-color-lightgrey);
}

.makerSection .content--title {
    font-size: 2.8rem;
}

.makerSection .content--textBox {
    margin-top: 24px;
}

.makerSection .content--text {
    font-size: 1.6rem;
    line-height: 1.5;
}


@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .makerSection {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .makerSection .content--box {
        padding: 24px;
    }

    .makerSection .content--title {
        font-size: 2.4rem;
    }

    .makerSection .content--textBox {
        margin-top: 16px;
    }

}

/* Index: sitemapSection */

.sitemapSection {
    padding: 32px 5%;
    display: grid;
    place-items: center;
}

.sitemapSection .content--title {
    font-size: 4rem;
    text-align: center;
}

.sitemapSection .content--textBox {
    margin-top: 24px;
}

.sitemapSection .content--text {
    font-size: 2rem;
    text-align: center;
}

.sitemapSection .sitemap--menu {
    margin-top: 40px;
}

.sitemapSection .sitemap--menuList {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.sitemapSection .sitemap--menuItem {
    font-size: 1.6rem;
    font-weight: bold;
}

.sitemapSection .sitemap--menuLink {
    padding-left: 16px;
    position: relative;
}

.sitemapSection .sitemap--menuLink::before {
    position: absolute;
    content: "-";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .sitemapSection {
        padding-top: 0;
    }
    
    .sitemapSection .sitemap--menuList {
        gap: 24px;
    }
}

.companyInfoSection {
    padding: 32px 5%;
    background-color: var(--bg-color-lightgrey);
    display: grid;
    place-items: center;
} 

.companyInfoSection .content--text {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 1px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .companyInfoSection {
        padding-top: 24px;
        padding-bottom: 24px;
    } 
    
    .companyInfoSection .content--text {
        font-size: 1.6rem;
    }
}

.caseSection {
    padding: 80px 5%;
}

.caseSection .content--title {
    font-size: 5.6rem;
    text-align: center;
}

.caseSection .arrowBtnBox {
    margin-top: 40px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .caseSection .content--title {
        font-size: 4.8rem;
        text-align: center;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .caseSection .content--title {
        font-size: 3.2rem;
        text-align: center;
    }
}