@charset "UTF-8";

/******************************************************************************
	Parts: 各ページ　共通で使用するパーツ
******************************************************************************/
/******************************************************************************
	Parts: ヘッディング
******************************************************************************/
/** .page-title
******************************************************************************/
.page-title {
    margin: 0;
    color: #5cbaa8;
    font-weight: bold;
    font-size: 14pt;
    line-height: 34px;
    white-space: nowrap;
}

/** .page-header
******************************************************************************/
.page-header {
    margin: 42px auto 56px;
    text-align: center;
}
.page-header__logo {
    margin-bottom: 32px;
}
.page-header__title {
    margin: 0 auto;
    color: #5cbaa8;
    font-weight: bold;
    font-size: 20px;
}

/** .edit-page-title
******************************************************************************/
.edit-page-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}
.edit-page-title__heading {
    width: 64%;
    margin-bottom: 0;
}

/** .section-heading
******************************************************************************/
.section-heading {
    color: #5cbaa8;
    font-weight: bold;
    font-size: 32px;
}
.section-heading__center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.section-heading__center::before, .section-heading__center::after {
    display: block;
    width: calc(50% - calc(36px + 120px));
    max-width: 320px;
    height: 6px;
    background: #e2f8f7;
    content: "";
}
.section-heading__center::before {
    margin-right: 36px;
}
.section-heading__center::after {
    margin-left: 36px;
}

/******************************************************************************
	Parts: コンテナー
******************************************************************************/
/** .page-title-container
******************************************************************************/
.page-title-container {
    display: grid;
    justify-content: space-between;
    align-items: center;
    column-gap: 12px;
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
    padding-bottom: 8px;
    padding-left: 8px;
    border-bottom: solid 6px #5cbaa888;
}
.page-title-container--sub {
    margin-bottom: 8px;
}
.page-title-container--sub .page-title {
    color: #666666;
    font-size: 14px;
}
.page-title-container > * {
    grid-row: 1 / 1;
    white-space: nowrap;
}
.page-title-container.side-line {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    border-bottom: none;
}
.page-title-container.side-line::after {
    content: "";
    flex-grow: 1;
    display: inline-block;
    height: 6px;
    background-color: #e2f8f7;
}

@media screen and (max-width: 1560px) {
    .page-title-container {

    }
}

/** .section-contents-container
******************************************************************************/
.section-contents-container {
    max-width: 1200px;
    margin: 48px auto;
}