
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

img {
    height: auto;
}
p, dd {
    line-height: 1.6;
    text-align: unset;
    word-break: auto-phrase;
}
.max-tb {
    display: none;
}

/*media query*/
@media screen and (max-width: 999px) {
    #ttl_box{
        padding: 40px 20px;
    }
    #ttl_box_inner{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    br {
        display: inline;
    }
    .min-pc {
        display: none;
    }
    .max-tb {
        display: block;
    }
    p, dd {
        font-size: 15px;
    }
}
@media screen and (max-width: 480px) {
    #ttl_box{
        margin-bottom: 20px;
    }
    .min-tb {
        display: none;
    }
}

:root {
    --primary-color: #246AC1;
    --point-color: #FFF097;
    --accent-color: #E91E63;
}
.l-centering {
    width: 1100px;
    margin-inline: auto;
}
.c-section {
    margin-block: clamp(60px, calc(60 / 375 * 100vw), 126px);
}
.c-title {
    margin: 0 0 40px;
    font-size  : clamp(25px, calc(25 / 350 * 100vw), 36px);
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
    word-break: auto-phrase;
    > span {
        font-size  : inherit;
        font-weight: inherit;
        color      : var(--accent-color);
    }
}
@media screen and (max-width: 768px){
    .l-centering {
        width: 100%;
        padding-inline: 15px;
    }
}

/*-------------------------------------------------------------------------
i-catch
-------------------------------------------------------------------------*/

.icatch {
    background: url("/images/service/construction/bg_icatch.webp") no-repeat center / cover;
    box-shadow: 0 -130px 0 #EDF3FA inset;
}
    .icatch__inner {
        display        : flex;
        justify-content: space-between;
        padding: 34px 19px;
    }

/* 見出し
--------------------------- */
.icatch__heading {
    text-align: center;
}
    .icatch__catch {
        width: fit-content;
        background-color: var(--primary-color);
        border-radius: 100px;
        margin: auto;
        padding: 6px 30px;
        font-size  : clamp(16px, 3vw, 18px);
        font-weight: bold;
        color      : #fff;
    }
        .icatch__catch strong {
            font-weight: bold;
            color      : var(--point-color);
        }
            .icatch__catch strong  span {
                font-size  : inherit;
                font-weight: inherit;
                color      : inherit;
                text-emphasis: filled dot;
                -webkit-text-emphasis: filled dot;
            }
    .icatch__headline {
        margin-block:
            clamp(15px, 2.6vw, 20px)
            clamp(20px, 4.7vw, 36px);
        font-size  : clamp(30px, calc(30 / 350 * 100vw), 60px);
        font-weight: bold;
        color      : var(--primary-color);
        word-break: auto-phrase;
    }

/* FORM
--------------------------- */
.icatch-form {
    background: #fff;
    width: 400px;
    height: 490px;
    border-radius: 5px;
    overflow: hidden;
    padding: 0 10px 30px;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
    z-index: 1;/* IE用*/
}
.icatch-form-txt {
    padding: 15px 0;
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
}
.icatch-form-txt strong {
    font-size: 18px;
    font-weight: bold;
}
.icatch-form-inner {
    height: 410px;
    overflow-y: scroll;
    padding: 15px 10px 15px 0;
    background: #fff;
}

/* #
--------------------------- */
.icatch__btn {
    width: min(345px, 100%);
    background-color: #fff;
    border: 3px solid var(--accent-color);
    border-radius: 4px;
    margin: 28px auto 0;
    padding: 20px 10px;
    transition: 0.3s;
    font-size  : 18px;
    font-weight: bold;
    color      : var(--accent-color);
    text-decoration: none;
    text-align: center;
    word-break: auto-phrase;
    &:hover {
        background-color: #f22f72;
        color: #fff;
        text-decoration: none;
    }
}

@media screen and (max-width: 768px) {
    .icatch {
        box-shadow: none;
        padding: 0;
    }
    .icatch__inner {
        display: block;
        padding: 20px;
    }
}

/*-------------------------------------------------------------------------
INTRO
-------------------------------------------------------------------------*/

.intro {
    display: grid;
    gap: 40px 0;
    grid-template-areas:
        "ttl img"
        "text img";
    padding-block:
        clamp(47px, calc(47 / 375 * 100vw), 60px)
        clamp(60px, calc(60 / 375 * 100vw), 72px);
}
    .intro__ttl {
        grid-area: ttl;
        align-self: end;
        font-size  : clamp(24px, calc(24 / 375 * 100vw), 30px);
        font-weight: bold;
        line-height: 1.6;
        word-break: auto-phrase;
    }
        .intro__ttl span {
            font-size  : inherit;
            font-weight: inherit;
            color      : var(--accent-color);
        }
    .intro__text {
        grid-area: text;
        line-height: 1.68;
    }
    .intro__img {
        grid-area: img;
        text-align: center;
        > img {
            width: clamp(170px, calc(170 / 375 * 100vw), 216px);
            height: auto;
        }
    }
    .intro__movie {
        grid-column: 1 / -1;
        width: min(800px, 100%);
        aspect-ratio: 16 / 9;
        margin: 20px auto 0;
    }
        .intro__movie iframe {
            display: block;
            width: 100%;
            height: 100%;
            border: 0;
        }

@media (max-width: 768px){
    .intro {
        display: grid;
        gap: 30px 0;
        grid-template-areas:
            "ttl"
            "img"
            "text";
    }
    .intro__ttl {
        line-height: 1.3;
        text-align: center;
    }
    .intro__ttl span {
        display: block;
    }
    .intro__movie {
        grid-column: 1;
        width: 100%;
        margin-top: 10px;
    }
}

/*-------------------------------------------------------------------------
主な機能
-------------------------------------------------------------------------*/

.functions {
    background: url('/images/service/construction/bg_function.webp') no-repeat center / cover;
    padding-block: clamp(60px, calc(60 / 375 * 100vw), 120px);
}

/* LIST
--------------------------- */
.functions__list {
    margin-top: clamp(30px, calc(30 / 375 * 100vw), 66px);
}
.functions__list > * + * {
    margin: 50px 0 0;
}
    .functions__items {
        display              : grid;
        gap                  : 30px 50px;
        grid-template-rows   : 1fr 1fr;
        grid-template-areas  :
            "heading img"
            "text    img";
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    /* 偶数番目は左右逆 */
    .functions__items:nth-child(even) {
        grid-template-areas  :
            "img heading"
            "img text";
        grid-template-columns: auto 1fr;
    }
    .functions__heading {
         grid-area: heading;
         align-self: end;
    }
        .functions__num {     
            display    : flex;
            gap        : 11px;
            align-items: center;
            margin: 0 0 2px;
            font-family: "Montserrat", sans-serif;
            font-size  : 24px;
            font-weight: bold;
            color      : var(--primary-color);
            &:before {
                content: "";
                width: 15px;
                height: 1px;
                background-color: var(--primary-color);
            }
        }
        .functions__sub-ttl {
            font-size  : 20px;
            font-weight: bold;
            word-break: auto-phras;
        }
    .functions__text {
        grid-area: text;
        align-self: start;
        line-height: 1.6;
    }
    .functions__img {
        grid-area: img;
        text-align: center;
    }

@media (max-width: 768px) {
    .functions__items,
    .functions__items:nth-child(even) {
        grid-template-areas:
            "heading"
            "img"
            "text";
        grid-template-rows   : auto;
        grid-template-columns: 1fr;
    }
    .functions__heading {
        text-align: center;
    }
    .functions__num {
        display: inline;
    }
}

/*-------------------------------------------------------------------------
効率アップ
-------------------------------------------------------------------------*/

.efficiency {
    display              : grid;
    align-items          : center;
    grid-template-columns: 365px 1fr 365px;
}
    .efficiency__img,
    .efficiency__arw {
        text-align: center;
    }
    .efficiency__text {
        line-height: 1.6;
    }
    .efficiency__sp-text {
        font-size  : 20px;
        font-weight: bold;
        color      : var(--primary-color);
    }

@media screen and (max-width: 768px){
    .efficiency {
        display: block;
    }
    .efficiency__arw {
        margin-block: 10px 20px;
    }
}

/*-------------------------------------------------------------------------
強み
-------------------------------------------------------------------------*/

.point {
    display              : grid;
    gap                  : 40px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}
    .point__bold {
        font-size  : 20px;
        font-weight: bold;
        line-height: 1.6;
    }
    .point__img {
        margin-block: 25px 28px;
        text-align: center;
    }
    .point__text {
        text-align: left;
    }

/*-------------------------------------------------------------------------
FAQ
-------------------------------------------------------------------------*/

.faq__list {
    border-bottom: 1px solid #E3E3E3;
    margin: 0 0 40px;
    padding: 0 0 40px;
}
    .faq__ttl {
        margin: 0 0 22px;
        font-size  : 20px;
        font-weight: bold;
        &:before {
            content: "Q";
            margin: 0 9px 0 0;
        }
    }
.faq-btn {
    width: min(100%, 400px);
    height: 67px;
    background-color: var(--accent-color);
    border-radius: 5px;
    display        : flex;
    gap            : 7px;
    align-items    : center;
    justify-content: center;
    margin-inline: auto;
    font-size  : 20px;
    font-weight: bold;
    color      : #fff;
    &:before {
        content: url("/images/service/construction/icn_mail.webp");
    }
    &:hover {
        filter: brightness(1.1);
        text-decoration: none;
        color: #fff;
    }
}

#path{
  margin: 0;
}
#path li::before{
    padding: 0;
    content: ""
}
.bottom-h1 {
    font-size: 12px;
    font-weight: normal;
    padding: 0 20px;
}
