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

page-lp-01.css

********************************************************************************/
/*============================================================
 ページ共通　基本色
*============================================================*/
:root {
    --common-color-text: #353535;           /* 基本テキスト色 */
    --common-color-main: #52B3A0;           /* メイン色 */
    --common-color-accent: #EB1B68;      /* アクセント色 */
    --common-background-color-01: #ffffff;    /* 背景色 */
    --common-background-color-02: #F3F8FC;    /* 背景色 */
    --common-font-family-01: "Noto Sans JP", sans-serif;
    --common-font-family-02: "Zen Kaku Gothic New", sans-serif;
}


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

/*============================================================
 ページ共通
*============================================================*/
body#page-lp-01 {
    font-family: "Noto Sans JP","Zen Kaku Gothic New", sans-serif;
}

/*============================================================
 ページ共通　見出し
*============================================================*/
/* 見出し 疑似要素 reset
---------------------------------------- */
h1::before,
h1.gnav-logo::before,
h2::before {
    content: none;
}
/* style
---------------------------------------- */
h1.page-title {
    font-weight: 700;
    font-size: 64px;
    line-height: 180%;
}
h2.sec-title {
    font-family: var(--common-font-family-02);
    font-weight: 700;
    font-size: 40px;
    line-height: 160%;
    text-align: center;
    color: var(--common-color-text);
}
h3.title {
    font-family: var(--common-font-family-01);
    font-weight: 700;
    font-size: 24px;
    line-height: 180%;
    text-align: center;
}
.accent {
    color: var(--common-color-accent);
}
.sec-lead {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 56px;
}

/*============================================================
 サイト共通　ヘッダー調整
*============================================================*/
/* PC SP 表示/非表示切り替え
-----------------------------*/
.forPCHeader {
    display: inherit;
}
.forSPHeader {
	display: none;
}
/* 電話リンク無効
-----------------------------*/
a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}
#fixed-header {
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    transition: top 0.3s;
}
#fixed-header.scrolled {
    position: fixed;
    top: 0;
}
.gnav {
    padding: 0 0 0 24px;
    margin:  0 auto;
}
.gnav .gnav-main {
    padding: 0;
    position: relative;
}
.gnav .box-nav-btn {
    gap: 24px;
}
.gnav .btn {
    position: relative;
    width: 240px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .5s;
}
.gnav .btn:hover {
    opacity: .5;
}
/* お電話でのお問い合わせ
-----------------------------*/
.gnav .btn.tell {
    color: #52B3A0;
    background-color: #F3F8FC;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
}
.gnav .btn.tell span {
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    display: block;
    margin-bottom: 10px;
}
/* メールでのお問い合わせ
-----------------------------*/
.gnav .btn.contact {
    height: 80px;
    color: #ffffff;
    background-color: #52B3A0;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
}

/*============================================================
 サイト共通　フッター調整
*============================================================*/
#site-footer {
    background-color: var(--common-color-main);
    color: #ffffff;
    padding: 80px 0;
}
#site-footer .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    text-align: center;
}
#site-footer .footer-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
}
#site-footer #copyright {
    font-size: 12px;
    font-weight: 500;
    line-height: 100%; 
}
/*============================================================
 サイト共通 flexbox
*============================================================*/
/* 基本
---------------------------------------- */
.parts-boxes {
	display: flex;
	flex-wrap: wrap;
    gap: 48px;
}
.parts-boxes .image {
    width: calc( (100% - 48px) / 2 );
    height: auto;
    text-align: center;
}
.parts-boxes .info {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
}
/* オプション　横配置(指定ない場合は左揃え)
---------------------------------------- */
/* 両端揃え */
.parts-boxes[data-type^="between"] {
	justify-content: space-between;
}
.parts-boxes[data-type="between-adj"]::before {
	content: "";
    height: 0;
	order:1;
}
.parts-boxes[data-type="between-adj"]::after {
	content: "";
    height: 0;
}
/* 中央揃え */
.parts-boxes[data-type="center"] {
	justify-content: center;
}
/* 右揃え */
.parts-boxes[data-type="right"] {
	justify-content: flex-end;
}

/* オプション　縦配置(指定ない場合は子要素高さ揃え(stretch))
---------------------------------------- */
/* 中央揃え */
.parts-boxes[data-type-vertical="center"] {
	align-items: center;
}
/* 上揃え */
.parts-boxes[data-type-vertical="start"] {
	align-items: flex-start;
}
/* 下揃え */
.parts-boxes[data-type-vertical="end"] {
	align-items: flex-end;
}

/*============================================================
 サイト共通 カードリスト
*============================================================*/
/* 基本
---------------------------------------- */
.card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.card-list .item {
    width: calc( (100% - 48px * 2) / 3 );
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.card-list .item .image img {
    width: 100%;
    height: auto;
}
.card-list .item .info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-list .item .info .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    color: var(--common-color-main);
}
.card-list .item .info p.lead {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: var(--common-color-text);
    text-align: center;
}

/* イラスト
---------------------------------------- */
.card-list[data-type="illust"] .item {
    gap: 16px;
} 
.card-list[data-type="illust"] .item .image {
    width: 180px;
    height: 180px;
    margin: 0 auto;
}
.card-list[data-type="illust"] .item .info {
    gap: 16px;
}
.card-list[data-type="illust"] .item .info .title {
    font-weight: 700;
    line-height: 100%;
}
.card-list[data-type="illust"] .item .info p.lead {
    line-height: 180%;
}

/*============================================================
 サイト共通 番号リスト
*============================================================*/
/* 基本
---------------------------------------- */
.num-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.num-list .item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    counter-increment: number;
}
.num-list .item::before {
    content: counter(number);
    display: inline-block;
    width: fit-content;
    height: auto;
    font-size: 40px;
    font-weight: 500;
    font-style: italic;
    line-height: 120%;
    color: #CFCFCF;
}
.num-list .item .info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: calc( 100% - ( 30px + 20px ) );
}
.num-list .item .info .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 160%;
    text-align: left;
    color: #404040;
}
.num-list .item .info p {
    color: #525252;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

/*============================================================
 サイト共通 リスト
*============================================================*/
.list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.list li {
    position: relative;
    color: #404040;
    font-family: var(--common-font-family-01);
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    margin-left: 36px;
}
.list li::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
}
.list[data-type="red"] li::before {
    background-image: url(../images/lp-01/list-icon-red.png);
}
.list[data-type="green"] li::before {
    background-image: url(../images/lp-01/list-icon-green.png);
}

/*============================================================
 サイト共通 コンテンツ
*============================================================*/
/* タイトル 
---------------------------------------- */
.title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
}
.title-wrap .sub {
    color: var(--common-color-main);
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
}
.title-wrap .sec-title span {
    color: var(--common-color-main);
}

/* セクション
---------------------------------------- */
.section {
    padding: 80px 0;
}
.section .inner {
    max-width: calc( 1080px + (24px * 2 ) )!important;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* セクション 背景
---------------------------------------- */
.section.bg-01 {
    background-color: var(--common-background-color-01);
}
.section.bg-02 {
    background-color: var(--common-background-color-02);
}

/*============================================================
 メインビジュアル
*============================================================*/
#mainvisual {
    height: 768px;
    background-image: url(../images/lp-01/mv-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    margin-top: 80px;
}
#mainvisual .info {
    width: 100%;
    height: calc(100% - 184px);
    position: absolute;
    top: 184px;
    color: var(--common-color-text);
}
#mainvisual .inner {
    position: relative;
    max-width: calc(1216px + (24px * 2) )!important;
    width: 100%;
    height: 100%;
    padding: 0 24px;
    margin: 0 auto;
}
#mainvisual .catch-copy {
    color: #171717;
    font-family: var(--common-font-family-02);
    font-size: 56px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 2.56px;
}
#mainvisual .catch-copy.large {
    font-size: 64px;
    line-height: 125%;
}
#mainvisual .catch-copy.edge {
    color: #ffffff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #404040;
    font-family: var(--common-font-family-02);
    font-size: 88px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 7.04px;
}
#mainvisual .catch-copy .dot {
    color: var(--common-color-main);
    font-size: 56px;
    font-weight: 500;
    background-image: radial-gradient(circle at center, var(--common-color-main) 18%, transparent 21%);
    background-position: top center;
    background-repeat: repeat-x;
    background-size: 57px 13px;
    padding-top: 0.4em;
}
#mainvisual .lead {
    color: #525252;
    font-family: var(--common-font-family-02);
    font-size: 24px;
    font-weight: 500;
    line-height: 180%;
}


/*============================================================
 CTA共通
*============================================================*/
/* CTA キャッチコピー
---------------------------------*/
.cta-catch {
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto 16px;
}
.cta-catch p {
    font-family: var(--common-font-family-02);
    font-size: 20px;
    font-weight: 400;
    line-height: 180%;
}
.cta-catch::before,
.cta-catch::after {
    position: absolute;
    display: inline-block;
    content: "";
    background: var(--common-color-text);
    width: 5px;
    height: 80px;
    bottom: 0;
}
.cta-catch::before {
    transform: rotate(-45deg);
    left: -42px;
}   
.cta-catch::after {
    transform: rotate(45deg);
    right: -42px;
}
.cta-catch .cta-title {
    font-family: var(--common-font-family-02);
    font-size: 32px;
    font-weight: 700;
    line-height: 180%;
    color: #333333;
}
/* CTA ボタン
---------------------------------*/
.cta-btn {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 200px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
}
.cta-btn a {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    transition: .5S;
}
.cta-btn a:hover {
    opacity: .5;
}
.cta-btn .icon {
    position: relative;
    width: 48px;
    height: 48px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 48px;
}
.cta-btn .message {
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
}
/*---------------------------------
 お電話でのお問い合わせ
---------------------------------*/
.cta-btn .phone {
    background-color: #ffffff;
}
.cta-btn .phone .number {
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}
/* 青ボタン
----------------------*/
.cta-btn[data-clor="blue"] .phone .icon {
    background-image: url(../images/common/cta-icon-phone_blue.png);

}
.cta-btn[data-clor="blue"] .phone > * {
    color: var(--common-color-main);
}
/* 緑ボタン
----------------------*/
.cta-btn[data-clor="green"] .phone .icon {
    background-image: url(../images/common/cta-icon-phone_green.png);

}
.cta-btn[data-clor="green"] .phone > * {
    color: var(--common-color-main);
}
/*---------------------------------
 メールでのお問い合わせ
---------------------------------*/
.cta-btn .email > * {
    color: #ffffff;
}
.cta-btn .email .contact {
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
}
/* 青ボタン
----------------------*/
.cta-btn[data-clor="blue"] .email .icon {
    background-image: url(../images/common/cta-icon-email.png);
}
.cta-btn[data-clor="blue"] .email {
    background-color: var(--common-color-main);
}
/* 緑ボタン
----------------------*/
.cta-btn[data-clor="green"] .email .icon {
    background-image: url(../images/common/cta-icon-email.png);
}
.cta-btn[data-clor="green"] .email {
    background-color: var(--common-color-main);
}

/*============================================================
 セクション　CTA 調整
*============================================================*/
#sec-cta {
    background-color: var(--common-background-color-01);
}

/*============================================================
 セクション　フッターCTA 調整
*============================================================*/
#sec-footer-cta {
    position: relative;
    width: 100%;
    height: max-content;
    padding: 40px 0;
}
#sec-footer-cta .image {
    background-image: url(../images/common/cta-footer-background.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 750px;
    filter: blur(2.5px);
    -webkit-filter: blur(2.5px);
    position: absolute;
    top: 0;
    z-index: -1;
}
#sec-footer-cta .box {
    max-width: 1280px;
    width: calc(100% - 40px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 46px 0;
    text-align: center;
}
#sec-footer-cta .sec-title {
    width: fit-content;
    margin: 0 auto;
    border-bottom: 5px solid #333333;
    margin-bottom: 40px;
}
#sec-footer-cta .sec-lead {
    color: #000000;
    text-align: center;
    font-family: var(--common-font-family-02);
    font-size: 20px;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 40px;
}
#sec-footer-cta .sec-lead span.accent {
    font-size: 32px;
    font-weight: 700;
    line-height: 180%;
}
#sec-footer-cta .cta-catch {
    margin: 0 auto 40px;
}

/*============================================================
 修繕積立金を賢く使う「その都度修繕」
*============================================================*/
#sec-proposal .title-wrap .sec-title span {
    font-size: 48px;
}
#sec-proposal .parts-boxes {
    flex-direction: row-reverse;
}

/*============================================================
 怪しい談合にNO!
*============================================================*/
#sec-point .sec-title {
    color: #404040;
    text-align: left;
    font-size: 56px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 50px;
}
#sec-point .sec-title span {
    color: var(--common-color-main);
    font-size: 56px;
    font-weight: 500;
    line-height: 140%;
}
#sec-point .sec-title span.edge {
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-shadow: 1px 1px 0 var(--common-color-text);
    -webkit-text-stroke: 2px #404040;
    font-size: 96px;
    font-weight: 700;
    line-height: 83%;
    letter-spacing: 7.68px;
}
#sec-point .sec-title span.edge:before {
    content: "";
    width: 100%;
    height: 9px;
    background: #404040;
    position: absolute;
    bottom: -12px;
    left: 0;
    z-index: 1;
}
#sec-point .parts-boxes {
    flex-direction: row-reverse;
}
#sec-point .parts-boxes .image {
    width: 37%;
}
#sec-point .info {
    display: block;
}
#sec-point .challenge {
    position: relative;
    padding-bottom: 98px;
}
#sec-point .challenge:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 298px;
    height: 294px;
    background: url(../images/lp-01/point-bg.png) no-repeat center center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
#sec-point .challenge .title {
    font-family: var(--common-font-family-01);
    text-align: left;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    color: #171717;
    margin-bottom: 30px;
}
#sec-point .solution {
    padding: 24px 25px;
    border-radius: 8px;
    background: #FFF;
}
#sec-point .solution .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    color: var(--common-color-main);
    margin-bottom: 20px;
}

/*============================================================
 居住者向け説明会も無料開催！
*============================================================*/
#sec-support .parts-boxes .image {
    max-width: 440px;
    width: 40%;
}
#sec-support .num-list {
    margin-bottom: 40px;
}
#sec-support .num-list .next-step .title {
    color: #CFCFCF;
    font-size: 32px;
    font-weight: 700;
}
#sec-support .info .note {
    color: #404040;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
}
#sec-support .proposal {
    text-align: center;
    margin-top: 56px;
}
#sec-support .proposal .em {
    color: var(--common-color-main);
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 140%; 
    margin-bottom: 48px;
}
#sec-support .proposal .note {
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}

/*============================================================
 50年先を見据えた修繕計画
*============================================================*/
#sec-plan .parts-boxes {
    flex-direction: row-reverse;
    gap: 32px;
}
#sec-plan .parts-boxes .image {
    width: 43%;
    max-width: 464px;
    height: auto;
}
#sec-plan .parts-boxes .info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
}
#sec-plan .icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
#sec-plan .icon-list .item {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #F3F8FC;
    background: #FFF;
    padding: 24px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
#sec-plan .icon-list .item .image {
    width: 64px;
    height: 64px;
}
#sec-plan .icon-list .item .info .title {
    color: var(--common-color-main);
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
}
#sec-plan .icon-list .item .info p {
    color: #525252;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

/*============================================================
 そこで、今はその都度修繕工事が注目されています
*============================================================*/
#sec-focus {
    padding: 104px 0 80px;
    background-color: var(--common-background-color-01);
    overflow: hidden;
}
#sec-focus .sec-title {
    margin-bottom: 40px;
}
#sec-focus .block {
    width: 100%;
    height: 355px;
    position: relative;
}
#sec-focus .box-focus {
    width: 1540px;
    gap: 80px;
    flex-wrap: nowrap;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
#sec-focus .focus-message {
    width: 580px;
    height: 355px;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.10);
    text-align: center;
}
#sec-focus .title {
    margin-bottom: 16px;
}

/*============================================================
 下層ページ お問い合わせページ
*============================================================*/
#page-inquiry-lp .page-title {
    background-color: var(--common-background-color-01);
    padding: 80px 0 0;
    height: 320px;
}
#page-inquiry-lp h1.mv-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--common-color-text)
}
#page-inquiry-lp h1.mv-title::before {
    content: none;
}
#page-inquiry-lp .sec-lead {
    text-align: center;
}
#page-inquiry-lp #sec-tell {
    padding: 80px 0 0;
}
#page-inquiry-lp #sec-footer-cta {
    display: none;
}

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 Tablet
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* @media screen and (max-width: 1279px) {

} */

@media screen and (max-width: 1080px) {
    /*============================================================
    メインビジュアル
    *============================================================*/
    #mainvisual {
    }
    #mainvisual .info {
    }
    #mainvisual .inner {
        max-width: 760px!important;
        padding: 0 8px;
    }
    #mainvisual .catch-copy {
        font-size: 48px;
    }
    #mainvisual .catch-copy .dot {
        font-size: 48px;
    }
    #mainvisual .catch-copy.edge {
        font-size: 80px;
    }

    /*============================================================
    怪しい談合にNO!
    *============================================================*/
    #sec-point .sec-title,
    #sec-point .sec-title span {
        font-size: 40px;
    }
    #sec-point .sec-title span.edge {
        font-size: 72px;
    }
    #sec-point .challenge:before {
        width: 147px;
        height: 145px;
    }
    #sec-point .challenge .title,
    #sec-point .solution .title {
        font-size: 28px;
    }

}


/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 SP
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width: 767px) {
    /*============================================================
    system
    *============================================================*/
    /* pc-sp display switch
    ---------------------------------------- */
    .forPC {
        display: none;
    }
    .forSP {
        display: inherit;
    }

    /*============================================================
    ページ共通　見出し
    *============================================================*/
    h1.page-title {
        font-size: 28px;
    }
    h2.sec-title {
        font-size: 24px;
    }
    h3.title {
        font-size: 20px;
    }

    /*============================================================
     サイト共通　ヘッダー調整
    *============================================================*/
    /* PC SP 表示/非表示切り替え
    -----------------------------*/
	.forPCHeader {
		display: none;
	}
	.forSPHeader {
		display: inherit;
	}
    /*============================================================
    ページ共通　見出し
    *============================================================*/
    h2.sec-title {
        font-size: 32px;
    }

    /*============================================================
    サイト共通　ヘッダー調整
    *============================================================*/
    /* ロゴ
    -----------------------------*/
    .gnav-logo img {
        width: 108px;
        height: auto;
    }
    /* 電話リンク有効
    -----------------------------*/
    /* a[href^="tel:"] {
        pointer-events: unset;
        cursor: pointer;
    } */
    .gnav .btn.contact {
        font-size: 14px;
        width: 140px;
        height: 56px;
    }
    /* お電話でのお問い合わせ
    -----------------------------*/
    /* .gnav .btn.tell .icon {
    background-image: url(../images/common/cta-icon-phone_green.png);

    } */
    /* メールでのお問い合わせ
    -----------------------------*/
    /* .gnav .btn.contact .icon {
    background-image: url(../images/common/cta-icon-email.png);

    } */

    /*============================================================
    サイト共通 flexbox
    *============================================================*/
    .parts-boxes .image {
        width: 100%;
    }

    /*============================================================
    サイト共通 カードリスト
    *============================================================*/
    /* 基本
    ---------------------------------------- */
    .card-list .item {
        width: 100%;
    }

    /*============================================================
    サイト共通 番号リスト
    *============================================================*/
    .num-list .item .info {
        width: 100%;
    }
    .num-list .item .info .title {
        font-size: 24px;
    }
    .num-list .item {
        gap: 16px;
    }
    .num-list .item::before {
        font-size: 34px;
    }

    /*============================================================
    サイト共通 リスト
    *============================================================*/
    .list li {
        font-size: 16px;
        margin-left: 30px;
    }
    .list li::before {
        width: 22px;
        height: 22px;
    }



    /*============================================================
    サイト共通 コンテンツ
    *============================================================*/
    /* タイトル 
    ---------------------------------------- */
    .title-wrap .sec-title span {
        font-size: 38px;
    }
    .title-wrap .sub {
        font-size: 20px;
        line-height: 140%;
    }

    p {
        font-size: 16px;
    }

    .section {
        padding: 40px 0;
    }
    .sec-lead {
        text-align: left;
        font-size: 16px;
        margin-bottom: 24px;
    }
    .section .inner {
        padding: 0 16px;
    }
    /*---------------------------------
    　ノーマル（下線ボーダー）
    ---------------------------------*/
    h2.sec-title[data-type="normal"] {
        margin-bottom: 24px;
    }

    /*============================================================
    メインビジュアル
    *============================================================*/
    #mainvisual {
        height: 960px;
        background-image: url(../images/lp-01/mv-bg-sp.jpg);
        background-position: center center;
        margin-top: 56px;
    }
    #mainvisual .info {
        top: 80px;
        height: calc(100% - 80px);
    }
    #mainvisual .info .parts-boxes {
        height: 100%;
        flex-direction: column;
        justify-content: space-between;
    }
    #mainvisual .catch-copy,
    #mainvisual .catch-copy.large {
        text-align: center;
        font-size: 32px;
        line-height: 180%;
    }
    #mainvisual .catch-copy .dot {
        font-size: 32px;
        background-size: 34px 10px;
    }
    #mainvisual .catch-copy.edge {
        font-size: 72px;
        line-height: 130%;
    }
    #mainvisual .lead {
        font-size: 16px;
        text-align: center;
        padding-bottom: 22px;;
    }

    /*============================================================
    CTA共通
    *============================================================*/
    /* CTA キャッチコピー
    ---------------------------------*/
    .cta-catch {
        text-align: center;
    }
    .cta-catch p {
        font-size: 16px;
        line-height: 160%;
    }
    .cta-catch::before,
    .cta-catch::after {
        content: none;
    }
    .cta-catch .cta-title {
        font-size: 24px;
        line-height: 160%;
    }
    /* CTA ボタン
    ---------------------------------*/
    .cta-btn {
        height: auto;
        flex-direction: column-reverse;
    }
    .cta-btn a {
        width: 100%;
        height: 168px;
    }
    .cta-btn .email .contact {
        font-size: 20px;
    }

    /*============================================================
    セクション　フッターCTA 調整
    *============================================================*/
    #sec-footer-cta {
        height: auto;
        padding: 16px 0;
    }
    #sec-footer-cta .image {
        height: 788px;
    }
    #sec-footer-cta .box {
        width: calc(100% - 16px);
        padding: 24px 0;
    }
    #sec-footer-cta .sec-lead {
        font-size: 16px;
    }
    #sec-footer-cta .sec-lead br.pc-only {
        display: none;
    }
    #sec-footer-cta .sec-lead span.accent {
        font-size: 18px;
    }
    #sec-footer-cta .cta-catch .cta-title {
        font-size: 24px;
    }

   /*============================================================
    セクション　修繕積立金を賢く使う「その都度修繕」
    *============================================================*/
    #sec-proposal .title-wrap .sec-title span {
        font-size: 38px;
    }

   /*============================================================
    セクション　怪しい談合にNO!
    *============================================================*/
    #sec-point .parts-boxes {
        flex-direction: column-reverse;
    }
    #sec-point .parts-boxes .image {
        width: 100%;
        text-align: center;
    }
    #sec-point .sec-title,
    #sec-point .sec-title span {
        font-size: 28px;
        text-align: center;
    }
    #sec-point .sec-title span.edge {
        font-size: 48px;
    }
    #sec-point .challenge .title,
    #sec-point .solution .title {
        font-size: 24px;
    }
    #sec-point .solution {
        padding: 20px 18px;
    }

    /*============================================================
    居住者向け説明会も無料開催！
    *============================================================*/
    #sec-support .parts-boxes .image {
        max-width: 100%;
        width: 100%;
    }
    #sec-support .parts-boxes .image img {
        margin: 0 auto;
    }
    #sec-support .num-list {
        margin-bottom: 0;
    }
    #sec-support .num-list .next-step .title {
        font-size: 22px;
    }
    #sec-support .info .note {
        font-size: 14px;
    }
    #sec-support .proposal .em {
        font-size: 20px;
        margin-bottom: 32px;
    }
    #sec-support .proposal .note {
        font-size: 14px;
    }
   /*============================================================
    セクション　50年先を見据えた修繕計画
    *============================================================*/
    #sec-plan .lead {
        text-align: left;
        font-size: 16px;
    }
    #sec-plan .parts-boxes .image {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    #sec-plan .icon-list .item .image {
        width: 54px;
        height: 54px;
    }
    #sec-plan .icon-list .item .info .title {
        font-size: 20px;
    }
    #sec-plan .icon-list .item .info p {
        font-size: 14px;
    }
    #sec-plan .icon-list .item .info .title {
        font-size: 20px;
        line-height: 140%;
    }

    /*============================================================
    そこで、今はその都度修繕工事が注目されています
    *============================================================*/
    #sec-focus {
        padding: 40px 0;
    }
    #sec-focus .focus-message {
        max-width: 580px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    #sec-focus .title {
        font-size: 24px;
    }
    #sec-focus .block {
        flex-direction: column;
    }
}


@media only screen and (max-width: 559px) {
    html {
        padding-top: 0!important; 
    }
    /* 既存スマホメニュー非表示（プラグイン WPR Mnue）
    -------------------------------------------*/
    .wprm-wrapper {
        display: none;
    }
}