
/* 機能詳細ページのスタイルシートです */

html{
    scroll-behavior: smooth;
  }

/* 見出し横線のスタイル */

.head-border {
    display: flex;
    align-items: center;
}

.head-border:before,
.head-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #041C33;
}

.head-border:before {
    margin-right: 16px;
}

.head-border:after {
    margin-left: 16px;
}

/* 機能詳細ページ */

.featurepage-head {
    background-color: #041C33;
    width: 100%;
    padding: 80px 32px;
}

.featurepage-head-title {
    font-size: 45px;
    font-weight: 900;
    color: white;
    text-align: center;
}

.featurepage-head-text {
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-align: center;
    padding: 28px 0 0;
}

.featurepage-navi {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
}

.featurepage-navi-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    padding: 0 16px;
    text-decoration: underline;
    text-decoration-color:white;
}

.navi-line {
    margin: 5px 16px 0 16px;
    width: 1px;
    height: 24px;
    background-color:white;
}

.featurepage-title {
    font-size: 40px;
    font-weight: 900;
    color: #041C33;
    text-align: center;
    margin: 100px 0 0;
}

.featurepage-section {
    width: 100%;
    padding: 0 32px;
}

.featurepage-section-title {
    max-width: 1032px;
    margin: 0 auto;
}

.featurepage-block {
    margin: 80px 0;
}

.featurepage-img {
    max-width: 952px;
}

.featurepage-copy {
    margin: 24px 0 40px ;

}

.featurepage-copy-head {
    font-size: 30px;
    font-weight: 900;
    color: #041C33;
    padding-bottom: 16px;
}

.featurepage-copy-text {
    font-size: 16px;
    font-weight: 500;
    color: #041C33;
}

@media screen and (min-width: 680px){   
    .pc { display:inline; }
    .sp { display:none; }
  }
  @media screen and (max-width: 680px){   
    .pc { display:none; }
    .sp { display:inline; }
  }

/* ====== SP Layout ===== */
@media screen and (max-width: 1024px) {

    .featurepage-head {
        background-color: #041C33;
        width: 100%;
        padding: 60px 0;
    }
    
    .featurepage-head-title {
        font-size: 33px;
    }
    
    .featurepage-head-text {
        font-size: 16px;
        padding: 28px 0 0;
    }
    
    .featurepage-navi {
        display: block;
        justify-content: center;
        align-items: center;
        padding-top: 16px;
    }
    
    .featurepage-navi-text {
        font-size: 16px;
        text-align: center;
        padding-top: 16px;
    }
    .featurepage-title {
        font-size: 25px;
        margin: 60px 0 0;
    }
    
    .featurepage-section {
        width: 100%;
        padding: 0 20px;
    }
    
    .featurepage-section-title {
        max-width: 1032px;
        margin: 0 auto;
    }
    
    .featurepage-block {
        margin: 60px 0;
    }
    
    .featurepage-img-sp {
        width: 100%;
    }
    
    .featurepage-copy {
        margin: 24px 0 40px ;
    }
    
    .featurepage-copy-head {
        font-size: 20px;
        padding-bottom: 8px;
    }
    
    .featurepage-copy-text {
        font-size: 13px;
    }
}