/* ==========================================================================
共通デザイン
========================================================================== */
.bg.lightblue {
    width: 100vw;
    background-color: #F5F7FB;
}

/* ページネーション pagination */
.pagination ul {
    max-width: 90%;
    margin: 0 auto 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--maru);
    font-weight: bold;
    font-size: 20px;
    list-style: none;
}

.pagination li a {
    line-height: 20px;
    display: block;
    padding: 8px;
    border-radius: 4px;
    background-color: #fff;
    color: #496698;
    border: #496698 3px solid;
}

.pagination li a.is-active {
    background-color: #496698;
    color: #fff;
}

/* ボタン */



/* ==========================================================================
Header
========================================================================== */

header {
    position: fixed;
    z-index: 100;
    font-family: var(--maru);
    width: 100%;
}

.hamburger,
.spMenu {
    display: none;
}

header .navAbove {
    background-color: #F2F2F2;
    text-align: end;
    padding: 2px 24px;
    font-size: 14px;
    color: #707070;
}

header .navAbove a {
    position: relative;
    padding-left: 12px;
}

header .navAbove a::before {
    position: absolute;
    left: 0;
    top: 2px;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #707070;
    width: 0;
    height: 0;
    margin-top: 0;
    content: "";
    color: #707070;
}

nav {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #fff;
    overflow-x: hidden;
    color: #486798;
    filter: drop-shadow(0px 5px 3px rgba(100, 100, 100, 0.1));
}

nav>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav>a p {
    width: 68px;
}

nav .nav-aniv {
    margin-left: 8px;
    flex-grow: 1;
}

nav .nav-aniv img {
    height: 44px;
}

@media screen and (max-width: 340px) {
    nav .nav-aniv {
        display: none;
    }
}

nav img.phollyLogo {
    width: 140px;
    height: 100%;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    justify-content: flex-end;
    width: 100%;
    font-weight: 600;
    list-style: none;
    line-height: 1;
}

nav ul li {
    padding: 10px 0;
}

header ul li.btn {
    padding: 10px;
    border: 2px solid #3B4E60;
    border-radius: 4px;
    color: #3B4E60;
    transition: all .5s;
}

header ul li.btn.demo:hover {
    background-color: #3B4E60;
    color: #fff;
}

header ul li.btn.inquiry {
    background-image: linear-gradient(135deg, #FFBD27, #ff8400);
    color: #fff;
    border: none;
    padding: 12px 10px;
}

header ul li.btn.inquiry:hover {
    filter: contrast(115%);
}


@media screen and (max-width: 1180px) {
    nav {
        padding: 12px 16px;
    }

    nav>a p {
        width: 58px;
        font-size: 14.5px;
    }

    nav ul {
        font-size: 14.5px;
        gap: 8px;
    }

    nav .nav-aniv img {
        height: 40px;
    }

    nav img.phollyLogo {
        width: 100px;
    }
}

@media screen and (max-width: 940px) {

    nav ul.pcMenu {
        display: none;
    }

    .navAbove {
        display: none;
    }

    header nav {
        justify-content: space-between;
    }

    .hamburger {
        display: block;
        width: 32px;
        height: 22px;
        position: relative;
    }

    .hamburger span {
        position: absolute;
        transition: .6s;
        width: 100%;
        height: 4px;
        background-color: #3B4E60;
        border-radius: 50vh;
    }

    .hamburger span:first-of-type {
        top: 0;
    }

    .hamburger span:nth-of-type(2) {
        top: 50%;
    }

    .hamburger span:last-of-type {
        top: 100%;
    }

    .hamburger.active span:first-of-type {
        top: 50%;
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-of-type(2) {
        opacity: 0
    }

    .hamburger.active span:last-of-type {
        top: 50%;
        transform: rotate(-45deg);
    }

    .spMenuBg {
        opacity: 0;
        background: rgba(0, 0, 0, 0.5);
        height: 100vh;
        position: fixed;
        width: 100vw;
        pointer-events: none;
    }

    .spMenuBg.active {
        opacity: 1;
        z-index: 6;
        transition: .8s;
        pointer-events: unset;
    }

    .spMenu {
        padding-top: 32px;
        text-align: center;
        z-index: 7;
        position: fixed;
        display: block;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        font-size: 20px;
        color: #3B4E60;
        font-weight: 600;
        transform: translateX(-100%);
        transition: .8s;
        list-style: none;
    }

    .spMenu.active {
        transform: translateX(0);
    }

    .spMenu>a li {
        padding: 8px;
        width: 90%;
        margin: 0 auto;
        border-bottom: #486798 1px dashed;
    }

    .spMenu>a:nth-of-type(6) li {
        border-bottom: none;
        margin-bottom: 24px;
    }

    .spMenu>a li.btn {
        margin: 8px auto 0;
    }

    .spMenu>a li.btn.inquiry {
        border: none;
    }
}

/* ==========================================================================
contentArea
========================================================================== */
.contentArea {
    padding-top: 92px;
    overflow-x: hidden;
}

@media screen and (max-width: 1060px) {
    .contentArea {
        padding-top: 88px;
    }
}

@media screen and (max-width: 940px) {
    .contentArea {
        padding-top: 55px;
    }
}

/* ==========================================================================
PageTitle
========================================================================== */
/* 基本
---------------------------------*/
.pageTitleArea {
    background-color: #F5F7FB;
    padding: 48px 0;
    border-radius: 0 0 4vw 4vw;
    text-align: center;
    width: 1200px;
    max-width: 80%;
    margin: 0 auto;
}

.pageTitle-flex {
    display: flex;
    align-items: center;
    gap: 16px;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
}

.pageTitle {
    font-family: var(--maru);
    font-weight: bold;
    color: #285396;
    font-size: 32px;
    padding-bottom: 4px;
    border-bottom: 12px #fff double;
    width: fit-content;
    margin: 0 auto;
    max-width: 90%;
}

.pageTitle-flex img {
    filter: saturate(110%);
    height: 80px;
}

@media screen and (max-width: 480px) {
    .pageTitleArea {
        max-width: 92%;
    }

    .pageTitle {
        font-size: 6vw;
    }
}

/* セキュリティのみ
---------------------------------*/
.security .pageTitleArea {
    max-width: 96%;
}

@media screen and (max-width: 800px) {
    .security .pageTitle {
        font-size: 4.5vw;
    }
}

/* 機能ページのみ
---------------------------------*/
.function .pageTitleArea {
    background-color: #e9ecf4;
    border-radius: 0 0 8vw 8vw;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

/* ==========================================================================
Footer
========================================================================== */
#footer {
    background-color: #6E7A86;
    padding-top: 48px;
    color: #fff;
    text-align: center;
}

footer .box-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

footer .box-wrap .single {
    padding: 0 48px;
}

#njc {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

#mogic {
    border-right: 1px solid #fff;
}

#footer dt,
#footer dd {
    text-align: center;
}

#footer dt a {
    position: relative;
    padding-left: 15px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
}

#footer dt a:before {
    position: absolute;
    left: 0;
    top: 5px;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
    width: 0;
    height: 0;
    margin-top: 0;
    content: "";
}

#footer dt a:hover {
    text-decoration: underline;
}

#footer dd {
    padding: 1em 0;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logos .p-mark {
    border-radius: 2px;
    background-color: #fff;
    padding: 8px;
    margin-right: 4px;
}

.footer-logos .p-mark img {
    width: 64px;
    height: auto;
}

.footer-jqa {
    display: flex;
    border-radius: 4px;
    width: 180px;
    margin: 0;
    margin-left: 4px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px;
    border: #fff 1px solid;
}

.footer-jqa img:first-of-type {
    width: calc(91px *0.8);
    height: calc(129px * 0.8);
}

.footer-jqa img:last-of-type {
    width: calc(103px *0.8);
    height: calc(133px *0.8);
}


p.policy a {
    position: relative;
    padding-left: 15px;
    margin: 15px auto 20px;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

p.policy a:before {
    position: absolute;
    left: 0;
    top: 5px;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
    width: 0;
    height: 0;
    margin-top: 0;
    content: "";
}

p.policy a:hover {
    text-decoration: underline;
}

.copyright {
    padding-bottom: 30px;
    font-size: .8em;
}

@media screen and (max-width: 660px) {
    #footer {
        padding-top: 32px;
    }

    footer .box-wrap {
        display: block;
    }

    #njc,
    #mogic {
        border: none;
        padding: 32px 0;
        width: 80%;
        margin: 0 auto;
    }

    #njc {
        border-bottom: 1px #fff solid;
    }

    #footer dd {
        padding: 1em 0 0;
    }
}