/* COMMON COMPONENTS */
.menuArrow img {
    transition: all .5s;
}
.hide-scrollbar {
    /* スクロールバーを非表示にする */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE & Edge */
    /* Chrome, Safari, Opera */
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.containerFull {
    margin: 0 auto;
    width: 1248px;
    padding: 0 24px;
    position: relative;
}
.contentWrap {
    padding: 120px 0;
}
.borderTopSecondary {
    border-top: 1px solid #A38758;
}
.borderBottomSecondary {
    border-bottom: 1px solid #A38758;
}
.borderTopGray {
    border-top: 1px solid #909090;
}
.borderBottomGray {
    border-bottom: 1px solid #909090;
}
.sectionTitle {
    width: 280px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.sectionTitle p {
    color: #A38758;
    font-family: "EB Garamond", serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
}
.sectionTitle h2 {
    color: #A38758;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.03em;
}
.btnPrimary {
    display: flex;
}
.btnPrimary a, 
.btnPrimary div {
    padding-left: 20px;
    display: inline-block;
    position: relative;
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
}
.btnPrimary a:before,
.btnPrimary div:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background: #A38758;
    transform: translateY(-50%);
    border-radius: 50%;
}
.btnPrimary.white a:before {
    background: #FFF;
}
.btnPrimary.black a {
    color: #3C3C3C;
}
.btnPrimary.ja a {
    padding-left: 20px;
    display: inline-block;
    position: relative;
    font-family: "Zen Old Mincho", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}
.caseIntro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.newsItem h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.consulItemTitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.fixed-h2 {
    position: fixed;
    top: 250px; /* 適宜調整。ヘッダーにかぶらない位置 */
    left: calc((100vw - 1200px) / 2);
}

@media screen and (min-width:768px) and (max-width:1248px) {
    #mv,
    #career-design-concierge,
    #news,
    #preFooter,
    #footer {
        width: 1248px;
    }
    .overflowImage {
        width: calc(100% + 24px) !important;
    }
    .fixed-h2 {
        left: 24px;
    }
}
@media screen and (min-width:1200px) {
    #header {
        max-width: 1200px;
        margin: 0 auto;
    }
    #globalMenu .overflow-y-auto {
        /* スクロールバーを非表示にする */
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE & Edge */
    }
}
@media screen and (max-width:767px) {
    .containerFull {
        width: 100%;
    } 
    .contentWrap {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .sectionTitle {
        width: 100%;
        row-gap: 4px;
    }
    .sectionTitle p {
        font-size: 20px;
    }
    .sectionTitle h2 {
        font-size: 18px;
    }
    .consulItemTitle {
        -webkit-line-clamp: 2;
    }
}

/* PAGE COMPONENTS */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumb > span > span,
.breadcrumb > span > a {
    color: #A38758;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
}
.pageHeader {
    padding-top: 210px;
}
.pageHeaderWrapper {
    display: flex;
    flex-direction: column;
    row-gap: 64px;
}
.pageHeaderImage {
    height: 340px;
    background: no-repeat center/cover;
}
.pageHeaderInner {
    display: flex;
    flex-direction: column;
    row-gap: 80px;
}
.pageHeaderTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pageHeaderTop > p {
    font-size: 20px;
    letter-spacing: 0.02em;
    text-align: right;
}
.pageHeaderTitle p {
    color: #A38758;
    font-family: "EB Garamond", serif;
    font-style: italic;
    font-size: 64px;
    font-weight: 500;
}
.pageHeaderTitle h1 {
    color: #A38758;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .03em;
}
.pageEntry h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 20px;
    letter-spacing: .02em;
}
.pageEntry p {
    margin-bottom: 16px;
    letter-spacing: .01em;
}
.pageEntry ol {
    padding-left: 32px;
    list-style-type: decimal; /* デフォルト：数字 */
}
.pageEntry ol li {
    margin-bottom: 12px;
}
@media screen and (min-width:768px) {
    .breadcrumb span[property="name"] {
        display: inline-block;
        padding: 0;
        margin-top: -3px;
        vertical-align: middle;
        max-width: 500px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
@media screen and (max-width:767px) {
    .breadcrumb span[property="name"] {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }
    .pageHeader {
        padding-top: 130px;
    }
    .pageHeaderWrapper {
        row-gap: 40px;
    }
    .pageHeaderImage {
        height: 90px;
    }
    .pageHeaderInner {
        row-gap: 40px;
    }
    .pageHeaderTop {
        flex-direction: column;
        align-items: start;
        row-gap: 24px;
    }
    .pageHeaderTop p {
        font-size: 40px;
        text-align: left;
    }
    .pageHeaderTitle h1 {
        font-size: 16px;
    }
    .pageHeaderTop > p {
        font-size: 18px;
    }
}

/* ARCHIVE COMPONENTS */
.archiveNewsItem h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* SINGLE COMPONENTS */
.entry h3 {
    margin-bottom: 40px;
    color: #A38758;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: .02em;
}
@media screen and (max-width:767px) {
    .entry h3 {
        margin-bottom: 24px;
        line-height: 1.6;
    }
}

/* SUPPORT MODAL */
.support-modal {
    display: none;
}
.support-modal.active {
    display: flex;
}
.support-modal .modal-content {
    max-height: 90vh;
    overflow: hidden;
}
.support-modal .modal-scroll-content {
    overflow-y: auto;
    height: 100%;
}
.support-modal .modal-close {
    cursor: pointer;
}
.support-modal-btn {
    text-decoration: none;
}

@media screen and (max-width:767px) {
    .support-modal .modal-content {
        max-height: 95vh;
        margin: 20px;
    }
}