@charset "UTF-8";
/********************************************************************************

common-sp.css

********************************************************************************/
/*============================================================
 css変数
*============================================================*/
:root {
	--common-inner-max-width: 608px;           /* 通常サイト幅 */
	--common-inner-max-width-wide: 100%;      /* ワイドサイト幅 */
	--common-inner-max-width-narrow: 608px;     /* 狭いサイト幅 */
	--common-inner-padding: 24px;               /* 通常サイト幅内余白 */
	--common-inner-padding-wide: 24px;          /* ワイドサイト幅内余白 */
}

/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
    display: none;
}
.forSP {
    display: inherit;
}

/*============================================================
 format
*============================================================*/
/* コンテンツ内
---------------------------------------- */
h2.sec-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 160%;
    letter-spacing: 0.06em;
    margin-bottom: 40px;
}
h2.sec-title[data-size="large"] {
    font-size: 56px;
    margin-bottom: 48px;
}
h2.sec-title[data-size="large"] .first-letter {
    font-size: 80px;
}


/*============================================================
 パンくずリスト
*============================================================*/
/* 詳細ページ用(ページヘッダーがないのでヘッダー分余白設定) */
body.single #breadcrumb {
    margin-top: calc(var(--common-header-height) + 8px);
    margin-bottom: 8px;
}


/*============================================================
 コンテンツ共通
*============================================================*/
/* 共通ブロック(円形リンク)
---------------------------------------- */
.block-btn-circle {
    width: 200px;
}

/* 共通ブロック(ニュース記事カード型)
---------------------------------------- */
.block-news-list .item {
    width: 100%;
}
.block-news-list .item:nth-child(3n-2),
.block-news-list .item:nth-child(3n) {
    margin-top: 0;
}
.block-news-list .item .image img {
    width: 100%;
}
.block-news-list .item .info .block-title {
    max-height: 64px;
}

/* 共通ブロック(実績記事カード型)
---------------------------------------- */
.block-works-list .item {
    width: 100%;
}
.block-works-list .item:nth-child(even) {
    margin-top: 0;
}
.block-works-list .item .image img {
    width: 100%;
}
.block-works-list .item .info .block-title {
    max-height: 64px;
}

/* 共通ブロック(下層ページヘッダー)
---------------------------------------- */
#page-header:not([data-type]) {
    height: 520px;
}
#page-header:not([data-type])::before,
#page-header:not([data-type])::after {
    height: 960px;
    background-size: 767px auto;
    left: calc(50% - 480px);
}
#page-header:not([data-type])::after {
    background-image: linear-gradient(180deg, rgba(2, 10, 13, 0) 0%, rgba(2, 10, 13, 0.5) 100%);
}

.page-header-deco {
    margin: -106px 0 0 0;
    height: 158px;
    overflow: hidden;
}
.page-header-deco .inner svg {
    position: absolute;
    right: -40px;
}

#page-header:not([data-type]) .inner .page-title {
    font-size: 48px;
    line-height: 150%;
    letter-spacing: 0.04em;
}
#page-header:not([data-type]) .inner .page-title-en {
    margin: -38px 0 0 24px;
}
#page-header:not([data-type]) .inner .page-title-en img {
    height: 80px;
}

/* 共通ブロック(記事詳細 ページヘッダー)
---------------------------------------- */
#page-header[data-type="single"] .page-title {
    font-size: 32px;
    line-height: 160%;
    letter-spacing: 0.06em;
}

/* 共通ブロック(OGPカード型)
---------------------------------------- */
.block-ogp-card {
    padding: 16px;
}
.block-ogp-card .parts-boxes {
    gap: 0 16px;
}
.block-ogp-card .image {
    width: 72px;
    height: 72px;
}
.block-ogp-card .info .card-page-title {
    font-size: 18px;
    line-height: 180%;
    margin-bottom: 16px;

    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 96px;
}

/* 共通ブロック(SNSシェア)
---------------------------------------- */
#sec-sns .block-sns-share {
    justify-content: center;
}
#sec-sns .block-sns-share .label {
    width: 100%;
    text-align: center;
}


/*============================================================
 footer
*============================================================*/
/* common
---------------------------------------- */
#site-footer .block-scroll-fade-item {
    background-image: url(../images/common/sp-footer-bg.svg);
    background-position: top 82px center;
    background-size: 390px auto;

    padding: 190px 0 64px 0;
}

/* CTA Contact
---------------------------------------- */
#site-footer .cta-contact {
    position: relative;
    height: 400px;
    margin: 0 auto 56px auto;
}

#site-footer .cta-contact .info {
    padding: 114px 24px 0 24px;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(2, 10, 13, 0) 0%, rgba(2, 10, 13, 0.4) 76.56%), url(../images/common/sp-cta-contact-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}
#site-footer .cta-contact .btn-contact {
    display: block;
    width: 200px;
    background-repeat: no-repeat;
    background-position: top 54px center;
    background-size: 56px auto;
    padding: 126px 0 0 0;
    top: -126px;
    right: calc(50% - 100px);
}

/* Fナビ
---------------------------------------- */
#site-footer .fnav {
    gap: 56px 0;
}
#site-footer .fnav .fnav-left .menu-list li {
    width: 100%;
    text-align: center;
}
#site-footer .fnav .fnav-left .sns-list {
    justify-content: center;
}
#site-footer .fnav .fnav-right {
    text-align: center;
}


