@charset "utf-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

ins {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #fff;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input,
select {
    vertical-align: middle;
}

/* 全体設定 */

body {
    margin: 0;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic,
        "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
        "メイリオ", Meiryo, sans-serif;
    font-weight: 500;
    background-color: #F8F8F8;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
p {
    color: #1C1C1C;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.external_link {
    display: flex;
    justify-content: center;
    align-items: center;
}

.external_link img {
    width: 16px;
    margin-left: 4px;
}

.news-row .external_link,
.news-card .external_link {
    width: 16px;
    margin-left: 4px;
}

.group-companies_btn img {
    width: 16px;
    margin-left: 4px;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width: 767px) {

    h1,
    h2 {
        font-size: 1.5rem;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ヘッダー */

.hamburger {
    display: none;
}

.site-header {
    background: #1C1C1C;
    color: #fff;
    margin: 0 auto;
    padding: 0 32px;
    padding: 8px 48px;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 64px;
    display: flex;
    margin: 8px 0;
}

.header-nav ul {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: flex-end;
}

.header-nav li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 8px 12px;
    transition: color 0.3s;
    text-align: center;
}

.header-nav a:hover {
    color: #ccc;
}

.header-nav .btn-contact {
    margin-left: 16px;
    background: #4A6FA5;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    padding: 16px 32px;
    display: flex;
    align-items: center;
}

.header-nav .btn-contact:hover {
    background: #395989;
    /* 再検討 */
}



@media screen and (max-width: 767px) {
    .header-nav {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #1C1C1C;
        text-align: center;
        z-index: 1;
    }

    .header-logo img {
        height: 52px;
    }

    .hamburger {
        display: block;
        width: 40px;
        height: 24px;
        position: relative;
        border: none;
        background: transparent;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: #fff;
        margin: 5px 0;
        transition: .3s;
    }

    .site-header {
        padding: 0px 24px;
    }

    .header-nav ul {
        flex-direction: column;
        padding: 40px 0;
    }

    .header-nav .btn-contact {
        margin-left: 0px;
    }
}



.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    /* 既存デザインに合わせて調整 */
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header .header-inner {
    height: 64px;
    /* ←ヘッダーの高さ */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger {
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: transform .25s ease, opacity .2s ease;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.header-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    /* .header-inner の高さと合わせる */
    bottom: 0;
    background: #000;
    overflow: auto;
    transform: translateX(110%);
    transition: transform .35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    z-index: 900;
}

.header-nav.is-open {
    transform: translateX(0);
}

.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 12px 16px 32px;
}

.header-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-nav a {
    display: block;
    padding: 16px 8px;
    text-decoration: none;
    color: #fff;
}

.body-locked {
    overflow: hidden;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .header-nav {
        position: static;
        transform: none !important;
        transition: none;
        background: transparent;
        border-bottom: 0;
        overflow: visible;
        z-index: 1200;
    }

    .header-nav ul {
        display: flex;
        gap: 32px;
        padding: 0;
    }

    .header-nav li {
        border: 0;
    }

    .header-nav a {
        padding: 0;
    }

}

.site-header {
    z-index: 1000;
    /* ヘッダー常に最前面 */
}

.header-nav {
    z-index: 900;
    /* ヘッダーより下 */
}

/* フッター */
footer {
    margin: 0 auto;
    background-color: #1C1C1C;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    padding: 24px 60px;
    font-size: 0.875rem;
}

.footer-inner {
    width: 100%;
    max-width: 1080px;
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 60px;
    flex-wrap: wrap;
}

footer img {
    width: 200px;
}

.footer-wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 740px;
}

footer a {
    color: #fff;
    text-align: center;
}

footer hr {
    width: 100%;
    border: #fff;
}

@media screen and (max-width: 767px) {
    .footer-wrap {
        align-items: center;
        flex-direction: column;
    }

    .footer-wrap ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-policy {
        text-align: center;
    }

    footer img {
        width: 160px;
    }
}


/* 全体設定 */
main {
    width: 100%;
}

.heading {
    margin: 0px 0 40px;
}

.heading p {
    color: #4A6FA5;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.container.show {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 1080px;
        margin: 0 auto;
        padding: 0px 16px;
    }

    .heading {
        margin: 60px 0 24px;
    }

    .heading p {
        margin-bottom: 0;
    }
}



/* パンくずリスト */
.breadcrumb {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em 0.5em;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb li+li::before {
    content: ">";
    margin: 0 0.5em;
    color: #bbb;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
    color: #111;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        display: none;
    }
}


/* TOPページ */
.top-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-header-text {
    max-width: 1080px;
    margin: 0;
    position: absolute;
    padding: 0 40px;
}

.top-header-text img {
    width: 40%;
    margin-bottom: 20px;
}

.top-header-text p {
    color: #fff;
    line-height: 2.2;
}

.top-header_back {
    width: 100%;
}

.top-news {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: #fff;
}

.top-news .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.top-news .heading {
    margin: 0;
}

.top3 {
    display: flex;
    align-items: center;
    width: 100%;
}

.top3_inner {
    width: 100%;
}

.news-card {
    padding: 24px 0px;
    border-bottom: solid #1C1C1C 0.5px;
    display: flex;
    align-items: center;
}

.news-card time {
    margin: 0px 16px;
}

.news-card a {
    color: #1C1C1C;
    margin: 0px 16px 0px 40px;
    display: flex;
    transition-duration: .2s;
}

.news-card a:hover {
    color: #4A6FA5;
    transform: translateY(1px);
}

.top-news .heading {
    width: 30%;
}

.group_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.more_btn a {
    color: #1C1C1C;
}

.more_btn img {
    width: 16px;
}



.more_btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    outline: none;
    position: relative;

    padding: 16px 30px 16px 60px;
    border: solid #1C1C1C 1px;
    border-radius: 32px;
    margin: 40px 0;
    color: #1C1C1C;
    display: flex;
    justify-content: center;
    gap: 32px;
    width: fit-content;
    transition: background-color .10s ease, color .10s ease;
    overflow: hidden;
}

.more_btn:hover {
    color: #fff;
}

.more_btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
    border-radius: 32px;
}

.more_btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #1C1C1C;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
    border-radius: 32px;
}

.more_btn .text {
    position: relative;
}


.more_btn:hover img {
    content: url("/img/common/more-btn_white.svg");
    z-index: 1;
}


.top-corporate-identity {
    /* background-image: url(/img/top/TOP_MISSION.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 40px;
}

.mission_content_inner p {
    line-height: 2;
}

.top_mission {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top-corporate-identity .mission img {
    width: 70%;
    height: auto;
}

.top_mission img {
    width: 70%;
    height: auto;
}

.top-corporate-identity .container {
    display: flex;
    flex-direction: column;
}

.mission_content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mission_content_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mission_content_inner a {
    margin-top: 80px;
}

.mission_content_btn {
    width: 100%;
    display: flex;
    justify-content: end;
}

.top-group {
    background-color: #fff;
}

.top-group p {
    text-align: center;
}

.top-group ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 24px 24px 24px;
    gap: 32px;
}

.SHIFTlogo {
    display: flex;
    justify-content: center;
}

.SHIFTlogo img {
    width: 16%;
}

.SDGlogo img {
    width: 100%;
    margin: 8px 0 24px;
}

.SDGlogo {
    display: flex;
    justify-content: center;
}

.group_table li {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.group_table img {
    width: 80%;
}

.sink {
    transition-duration: .2s;
}

.sink:hover {
    transform: translateY(2px);
}

.return-top-btn a {
    transition-duration: .2s;
}

.return-top-btn a:hover {
    transform: translateX(-2px);
}

.corporate-identity_block img {
    width: 100%;
}

.top-contact {
    padding: 56px 64px;
    border: solid #4A6FA5 2px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4A6FA5;
    margin: 100px 0 200px;
    transition-duration: .2s;
}

.top-contact:hover {
    background-color: #4A6FA5;
}

.top-contact:hover p {
    color: #fff;
}

.top-contact:hover .external_link {
    content: url("/img/common/icn_external_link_contact.svg");
    z-index: 1;
}

.top-contact:hover .contact-btn {
    content: url("/img/common/contact-btn_white.svg");
    z-index: 1;
}

.top-contact img {
    width: 72px;
}

.top-contact .title {
    font-weight: 700;
    color: #4A6FA5;
}

.top-contact .text {
    margin-top: 16px;
    font-size: 1.5rem;
    color: #4A6FA5;
    font-weight: 700;
    display: flex;
}

.top-contact-text img {
    width: 24px;
}

@media screen and (max-width: 767px) {
    .top-header-text img {
        width: 60%;
        margin-bottom: 8px;
    }

    .top-contact img {
        width: 40px;
    }

    .top-contact-text img {
        width: 16px;
    }

    .top-news .heading {
        margin: 60px 0 24px;
    }

    .top-header-text p {
        font-size: 0.875rem;
    }

    .top-header-text {
        padding: 0 32px;
    }

    .top-news .heading {
        width: 100%;
    }

    .top3 {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-card a {
        margin: 8px 16px 0px;
    }

    .top-corporate-identity .mission {
        width: 80%;
    }

    .top_mission img {
        width: 100%;
    }

    /* 
    .top-corporate-identity .mission img {
        width: 100%;
        height: auto;
        max-height: none;
        display: block;
    } */

    .top-corporate-identity {
        width: 100%;
        background-image: none;
    }

    .mission_content_inner {
        width: 100%;
    }

    .top-group ul {
        margin: 24px 16px 0px;
        gap: 0px;
    }

    .group_table li {
        width: 50%;
    }

    .group_inner .more_btn {
        margin-top: 16px;
    }

    .group_inner {
        padding: 60px 16px;
    }

    .SDGlogo img {
        width: 72%;
    }

    .SHIFTlogo img {
        width: 32%;
    }

    .mission_content_inner a {
        margin-top: 40px;
    }

    .corporate-identity_content {
        flex-direction: column;
    }

    .top-contact {
        padding: 24px;
        margin: 40px 0;
    }

    .top-contact .text {
        font-size: 1.25rem;
        margin-top: 8px;
    }

    .top-contact .title {
        font-size: 0.875rem;
    }
}



/* 下層ページファーストビュー */
.page-header {
    width: 100%;
    padding: 24px 0px;
    background-image: url(/img/common/SDG_Site_SUB_FV.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-header_inner {
    display: flex;
    align-items: center;
}

.page-header_title {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-header_hr {
    height: 3px;
    width: 80px;
    margin-right: 32px;
    background-color: #1C1C1C;
}

.page-header_title p {
    color: #4A6FA5;
    margin-bottom: 8px;
}

.corporate-identity_content {
    display: flex;
    gap: 5%;
    margin: 40px 0;
}

.top-company-profile {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-company-profile p {
    text-align: end;
    margin-right: 24px;
}

.top-company-profile img {
    width: 32px;
}

@media screen and (max-width: 767px) {
    .top-company-profile {
        margin: 8px 0 24px;
    }

    .page-header {
        padding: 0;
    }

    .page-header_title {
        height: 180px;
    }
}

/* TOPに戻るボタン */
.return-top-btn {
    width: 100%;
}


.return-top-btn a {
    padding: 24px 0;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 24px;
}

.return-top-btn img {
    width: 32px;
}

@media screen and (max-width: 767px) {
    .return-top-btn {
        margin: 40px 0 60px;
    }
}


/* 会社概要 */
.representative_wrap {
    display: flex;
}

.representative_wrap img {
    height: 220px;
}

.representative_wrap .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 40px;
}

.representative_wrap p {
    margin: 16px 0 8px;
}

.company-profile_table {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.company-profile_wrap {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
}

.company-profile_wrap .title {
    background-color: #1C1C1C;
    color: #fff;
    font-weight: 700;
    padding: 24px 16px;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.company-profile_wrap .text {
    padding: 24px 32px;
    width: 75%;
    display: flex;
    align-items: center;
    border: #1C1C1C solid 0.5px;
}

.company-profile_wrap img {
    height: 80px;
}

.company-profile_access iframe {
    width: 100%;
    height: 600px;
}

.company-profile_access_warp p {
    margin-top: 24px;
}

@media screen and (max-width: 767px) {
    .representative_wrap {
        flex-direction: column;
    }

    .representative_wrap img {
        height: auto;
    }

    .representative_wrap .text {
        margin: 0;
        display: none;
    }

    .representative_wrap p {
        margin: 8px 0 4px;
    }

    .company-profile_wrap {
        flex-direction: column;
        gap: 0;
    }

    .company-profile_table {
        gap: 16px;
    }

    .company-profile_wrap .title {
        width: fit-content;
        padding: 8px 32px;
    }

    .company-profile_wrap .text {
        width: 100%;
        box-sizing: border-box;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .company-profile_access iframe {
        height: 300px;
    }
}

/* 企業理念 */
.corporate-identity_mission .heading,
.corporate-identity_vision .heading {
    margin-bottom: 0;
}


.corporate-identity_wrap img {
    height: auto;
    max-height: 240px;
    width: auto;
    max-width: 100%;
    display: block;
}

.corporate-identity_wrap p {
    line-height: 2;
    font-size: 1rem;
}

.corporate-identity_company-name .corporate-identity_wrap {
    display: flex;
    align-items: center;
}

.corporate-identity_company-name img {
    max-height: 180px;
}

.corporate-identity_wrap .text {
    margin-left: 40px;
}

@media screen and (max-width: 767px) {
    .corporate-identity_wrap img {
        width: 100%;
        height: auto;
        max-height: none;
        display: block;
    }

    .corporate-identity_company-name .corporate-identity_wrap {
        flex-direction: column;
        gap: 40px;
    }

    .corporate-identity_company-name img {
        width: 50%;
    }

    .corporate-identity_wrap .text {
        margin-left: 0px;
    }
}

/* グループ会社一覧 */
.group_about-us_content {
    display: flex;
    align-items: center;
}

.group_about-us_content img {
    width: 80%;
}

.about-us_wrap {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.group_about-us .heading {
    margin: 0px 0px 24px;
}

.aboutSDG {
    margin-top: 24px;
}

.group-companies_wrap {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.group-companies_content {
    display: flex;
}

.group-companies_content .logo img {
    width: 80%;
}

.group-companies_text h3 {
    margin-bottom: 16px;
}

.group-companies_btn {
    margin-top: 40px;
    display: flex;
    gap: 16px;
}

.corporate_btn,
.recruit_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1C1C1C;
    padding: 16px 32px;
    color: #fff;
    font-weight: 700;
    width: 200px;
    text-align: center;
}




.group_group-about-shift-group {
    display: flex;
}

.about-shift-group_inner {
    padding: 60px 40px;
    border: #1C1C1C solid 1px;
    display: flex;
    align-items: center;

}

.about-shift-group_inner .heading {
    margin: 0px 0 24px;
}

.about-shift-group_inner .logo img {
    width: 80%;
}

.group-companies_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}

.group .logo {
    width: 40%;
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.group img {
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .group_about-us_content {
        flex-direction: column;
    }

    .group-companies_content {
        flex-direction: column;
    }

    .group-companies_wrap {
        gap: 40px;
    }

    .group-companies_btn {
        margin-top: 24px;
        display: flex;
        gap: 16px;
        flex-direction: column;
    }

    .corporate_btn,
    .recruit_btn {
        width: auto;
    }

    .group .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 0;
    }

    .group .logo img {
        width: 70%;
        padding-bottom: 24px;
    }

    .group-companies_text {
        width: 100%;
        margin-left: 0;
    }

    .group_group-about-shift-group {
        flex-direction: column;
    }

    .about-us_wrap {
        margin-left: 0;
        width: 100%;
    }

    .shift-logo {
        width: 70%;
    }

    .group_about-us .heading {
        margin: 60px 0px 0px;
    }

    .about-shift-group_inner .logo {
        display: none;
    }


    .about-shift-group_inner {
        margin-top: 60px;
    }

    .group-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .group_about-us_content img {
        width: 70%;
    }

}

/* ニュース */

.archive {
    display: flex;
    flex-direction: column;
}

.archive .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}


.news_archive {
    width: 100%;
}

.news-row {
    padding: 24px 0px;
    border-bottom: solid #1C1C1C 0.5px;
    display: flex;
    align-items: center;
}

.news-row time {
    margin: 0px 16px;
}

.news-row a {
    color: #1C1C1C;
    margin: 0px 16px 0px 40px;
    display: flex;
    transition-duration: .2s;
}

.news-row a:hover {
    color: #4A6FA5;
    transform: translateY(1px);
}

@media screen and (max-width: 767px) {
    .news-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-row a {
        margin: 8px 16px 0;
    }
}

/* 沿革 */
.history .title {
    font-weight: 500;
}

/* 404 */
.text404 p {
    line-height: 2.5;
}