@charset "utf-8";

/*----- プラン1～4 -----*/
.planMidashi {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
    color: #fff;
    margin-bottom: 25px;
    background: var(--mainColor);
    font-weight: bold;
}
.planMidashi > div:nth-child(1) {
    font-size: 2.0rem;
}
.planMidashi > div:nth-child(2) {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: bold;
    text-align: right;
}
.planMidashi::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid var(--mainColor);
    width: 0;
    height: 0;
}
/*1.クイックプラン*/
.planMidashi_quick {
    background: var(--greenColor);
}
.planMidashi_quick::after {
    border-top: 15px solid var(--greenColor);
}
/*2.スタンダードプラン*/
.planMidashi_standard {
    background: var(--mainColor);
}
.planMidashi_standard::after {
    border-top: 15px solid var(--mainColor);
}
/*3.フリープラン*/
.planMidashi_free {
    background: var(--brownColor);
}
.planMidashi_free::after {
    border-top: 15px solid var(--brownColor);
}
@media only screen and (max-width:999px){
    .planMidashi {
        display: block;
        padding: 10px 20px 15px 20px;
        margin-bottom: 30px;
    }
    .planMidashi > div:nth-child(1){
        font-size: 1.8rem;
    }
    .planMidashi > div:nth-child(2){
        text-align: left;
        font-size: 1.7rem;
    }
}

/*----- オンラインで全国対応～～お気軽にお問い合わせください -----*/
.ulBold{
    border: 5px solid #ccc;
    padding: 25px;
    line-height: 1.5em;
    font-size: 2.2rem;
    font-weight: bold;
}
.contactBnr{
    border: solid 1px #ccc;
    padding: 25px;
    margin-bottom: 25px;
    background: url("../images/contents/contact-bnr.webp") right / contain no-repeat;
}
.contactBnr > div:nth-child(1) {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}
@media only screen and (max-width:999px){
    .ulBold{
        padding: 10px 10px 10px 15px;
        font-size: 2.0rem;
    }
    .contactBnr{
        padding: 10px;
        background: url("../images/contents/contact-bnrSp.webp") right / contain no-repeat;
    }
    .contactBnr > div:nth-child(1){
        font-size: 1.8rem;
    }
}

/*----- 会社概要 -----*/
.campanyPolicy{
    background: url("../images/contents/company/policy-bg.webp") center bottom / contain no-repeat;
    text-align: center;
}
.campanyPolicy div{
    font-size: 2.6rem;
    margin-bottom: 30px;
}
@media only screen and (max-width:999px){
    .campanyPolicy{
        background-position: center;
        background-size: 100%;
    }
}

/*----- Ｑ＆Ａ -----*/

.faq-main {
    width: calc(100% - 260px - 25px);
    float: left;
}
.faq-side {
    width: 260px;
    float: right;
}
.faq-side .category-title {
    background: var(--mainColor);
    padding: 15px;
    color: #fff;
    text-align: center;
    line-height: 1;
}
.faq-side-menu {
    
}
.faq-side-menu a {
    border: 1px solid #ccc;
    border-top: 0;
    padding: 10px 15px;
    font-size: 1.5rem;
    text-decoration: none;
    color: #000;
    position: relative;
    display: block;
}
.faq-side-menu a:hover {
    background: #dcf5fd;
}
.faq-side-menu a::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    position: absolute;
    right: 15px;
}
@media only screen and (max-width:999px){
    .faq-main, .faq-side {
        width: 100%;
        float: none;
    }
    .faq-main {
        margin-bottom: 30px;
    }
}

/*----- ◯◯HP作成の実績一覧 -----*/

.page-archiveList h2 {
    margin-bottom: 25px;
    font-size: 2.0rem;
}
.page-archiveList h2::before,
.page-archiveList h2::after {
    display: none;
}


/* flow */
.flowImage{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 25px;
}
.flowImage img{
    display: block;
    max-width: 100%;
}