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

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

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

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

.content--title-en {
    text-align: center;
    color: var(--grey);
}

.content--body {
    margin-top: 48px;
}

.content--textBox {
    margin-top: 24px;
}

.content--text {
    text-align: center;
}

.content--buttonBox {
    margin-top: 24px;
}

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

    .content--title {
        font-size: 2.4rem;
    }
    
    .content--text {
        text-align: left;
    }
}

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

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .content--body {
        margin-top: 32px;
    }
}

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

.localLargeFont {
    font-size: 1.4em;
}

.localSmallFont {
    font-size: 0.8em;
}

.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;
    gap: 48px;
    justify-content: space-between;
}

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

.media--imgBox {
    flex: 0 1 440px;
}

.media--body {
    flex: 1 0;
}

.media--title {
    font-size: 2.4rem;
    color: var(--primary-bland-color);
    line-height: 1.5;
}

.media--img {
    width: 100%;
    border-radius: 16px;
}

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

.media--text {
    line-height: 1.5;
}

.media--buttonBox {
    margin-top: 24px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .media {
        flex-direction: column;
        row-gap: 32px;
    }

    .media--body {
        width: 100%;
    }

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

    .media--imgBox {
        width: 100%;
        flex-basis: auto;
    }

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

/* 親要素を無視した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 {
    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);
}

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

}

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

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

.breadcrumbs--item:first-of-type {
    padding-left: 0;
}

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

/* ボタン */

.sectionBtn {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--white);
    background-color: var(--primary-bland-color);
    padding: 12px 24px;
    text-align: center;
}

.darkTheme .sectionBtn {
    background-color: var(--white);
    color: var(--primary-bland-color);
    font-weight: bold;
}

.arrowBtn {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 24px 2%;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    background: var(--primary-bland-color);
    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;
}

.outlineButton-arrow {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 340px;
    padding: 14px 18px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    border-radius: 9999px;
    border: 1px solid var(--primary-bland-color);
    color: var(--primary-bland-color);
    background-color: var(--white);
    filter: drop-shadow(2px 4px var(--primary-bland-color-shadow-outline));
    transform: translateZ(0);
}

.outlineButton-arrow::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    transform: rotate(45deg);
    right: 24px;

    width: 13px;    /* くの字を山なりに見た時、左側の長さ */
    border-top: 3px solid var(--primary-bland-color);     /* くの字を山なりに見た時、左側の太さと色 */

    height: 13px;   /* くの字を山なりに見た時、右側の長さ */
    border-right: 3px solid var(--primary-bland-color);   /* くの字を山なりに見た時、右側の太さと色 */

}

.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(--white);
    color: var(--primary-bland-color);
    text-align: center;
    padding: 24px;
    display: grid;
    place-items: center;
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1;
}

.telBtn {
    color: var(--white);
    background-color: var(--primary-bland-color);
    padding: 8px 16px;
    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;
    }
}

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

/* リスト */

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

.definitionList {
    width: 100%;
    display: flex;
    /* filter: drop-shadow(0px 0px 1px var(--grey)); */
}

.definitionTerm {
    flex: 0 1 240px;
    font-weight: bold;
    background-color: var(--term-bg-color);
    padding: 16px;
    border-top: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
}

.definitionDescription {
    flex-grow: 1;
    background-color: var(--white);
    padding: 16px;
    border-top: 1px solid var(--grey);
}

.definitionList:first-of-type .definitionTerm,
.definitionList:first-of-type .definitionDescription {
    border-top: 0;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .definitionTerm {
        flex-basis: 180px;
    }
}

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

/* テーブル */

.horizontalTable {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
}

.horizontalTable--item {
    width: 30%;
    padding: 16px 12px;
    border-bottom: 1px solid var(--black);
    font-size: 1.6rem;
    font-weight: bold;
}

.horizontalTable--content {
    width: 70%;
    padding: 16px 12px;
    border-bottom: 1px solid var(--black);
    font-size: 1.6rem;
}

.horizontalTable--link {
    
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .horizontalTable--item {
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
    }

    .horizontalTable--content {
        width: 100%;
    }

}

/* カード */

.card {
    width: 100%;
    position: relative;
    /* border: 1px solid var(--grey);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
    padding: 16px;
    background-color: var(--white); */
}

.card--title {
    font-size: 2.4rem;
    margin-top: 8px;
}

.card--imgBox {
    width: 100%;
    line-height: 0;
}

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

.card--body {
    /* width: 100%;
    padding: 1em; */

    width: 90%;
    margin: 0 auto;
    padding: 1.5em;
    background-color: var(--lightgrey);
    transform: translateY(-50%);
}

.card--date {
    color: var(--secondary-bland-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.card--textBox {
    margin-top: 8px;
}

.card--text {
    /* color: var(--font-color-black);
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify; */
    color: var(--black);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 4px;
}

@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;
    }
}

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

/* common section */

.hero-lowerPage {
    width: 100%;
    padding: 120px 5%;
    background-color: var(--primary-bland-color);
    position: relative;
    display: grid;
    place-items: center;
}

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

.hero-lowerPage--title {
    font-size: 4rem;
    text-align: center;
    color: var(--white);
    filter: drop-shadow(0 0 8px var(--black));
}

.hero-lowerPage--text {
    font-size: 1.6rem;
    text-align: center;
    color: var(--white);
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .hero-lowerPage {
        padding: 48px 5%;
    }
    
    .hero-lowerPage--title {
        font-size: 3.2rem;
    }

}

/* googleMapSection */

.googleMapSection {
    line-height: 0;
}

.googleMapBox {
    margin-top: 24px;
}

/* figure */

.figure {
    width: 100%;
}

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

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

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

/* link */

.linkBox--link-external {
    font-size: 1.7rem;
    padding-right: 1em;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.linkBox--link-external::after {
    position: absolute;
    content: "";
    background-image: url(/img/external-link.svg);
    background-size: cover;
    height: 1em;
    width: 1em;
    margin-left: 8px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

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

.ctaSection {

    background-color: var(--primary-bland-color);
    padding-top: 40px;
    padding-bottom: 64px;

    .content--telBox {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
        column-gap: 12px;
        border: 1px solid var(--white);
        padding: 24px 16px;
    }

    .content--tel {
        font-size: 4.8rem;
        font-weight: bold;
        color: var(--white);
    }

    .content--openingTimes,
    .content--closedDays {
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--white);
    }

    .content--buttonBox {
        margin-top: 40px;
    }

    .contactButton {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 12px;
        background-color: var(--white);
        color: var(--primary-bland-color);
        font-size: 4.8rem;
        font-weight: bold;
        padding: 42px;
        filter: drop-shadow(6px 6px var(--primary-bland-color-shadow-outline));
        transform: translateZ(0);
        border-radius: 8px;
        line-height: 1;
    }

    .contactButton--icon-mail {
        height: 48px;
    }

    .lineIcon {
        width: 40px;
    }

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

    .content--text {
        color: var(--white);
        font-size: 3.2rem;
        font-weight: bold;
        text-align: center;
    }
}

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

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

        padding-top: 24px;
        padding-bottom: 40px;

        .content--telBox {
            flex-direction: column;
            padding: 8px;
            margin-top: 24px;
        }
    
        .content--tel {
            font-size: 3.2rem;
            font-weight: bold;
            color: var(--white);
        }
    
        .content--salesTimeBox {
            /* display: flex;
            column-gap: 16px; */
        }
        
        .content--text {
            color: var(--white);
            font-size: 2.4rem;
            font-weight: bold;
        }
        
        .content--buttonBox {
            margin-top: 24px;
        }

        .contactButton {
            font-size: 2.4rem;
            column-gap: 8px;
            padding: 24px;
        }

        .contactButton--icon-mail {
            height: 32px;
        }
    
        .lineIcon {
            width: 24px;
        }
    }
}

.timeline {
    display: grid;
    /* row-gap: 64px; */
}

.timeline--row {
    position: relative;
    display: flex;
    /* flex-wrap: wrap; */
    column-gap: 120px;
}

.timeline--row:not(:last-of-type) {
    padding-bottom: 64px;
}

.timeline--row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-bland-color);
    border-radius: 50%;
}

.timeline--row:not(:last-of-type)::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 9px;
    bottom: -9px;
    background-color: var(--primary-bland-color);
    width: 1px;
    /* z-index: -1; */
}

.timeline--date {
    /* width: 184px; */
    padding-left: 48px;
}

.timeline--event {
    font-size: 2rem;
}

.timeline--annoDomini {
    font-size: 2rem;
    font-weight: bold;
}

.timeline--japaneseCalendar {
    
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .timeline--row {
        flex-direction: column;
        row-gap: 16px;
    }

    .timeline--date {
        padding-left: 32px;
    }

    .timeline--event {
        padding-left: 32px;
    }
}