@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap');

body {
   /* font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif; */
   font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-weight: 400;
    font-weight: normal;
    font-size: 15px;
    color: #333333;
}

body {
    -webkit-text-size-adjust: 100%;
}

body.active {
    overflow: hidden;
}

.wrapper {
    position: relative;
    overflow: hidden;
}

.page .wrapper {
    position: relative;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

img {
    border: none;
    width: 100%;
}

br.pc {
    display: block;
}

br.sp {
    display: none;
}

a {
    cursor: pointer;
    transition: 0.7s;
}

a:hover {
    opacity: 0.5;
}

:root {
    --scrollbar: 2.666667vw;
}
html {
    /* font-size: 2.59vw; */
    font-size: 2.666667vw;
    font-size: var(--scrollbar);
}


@media screen and (max-width: 880px) {
    br.pc {
        display: none;
    }

    br.sp {
        display: block;
    }
}

@media screen and (min-width: 881px) {
    .pc {
        display: block !important;
    }
}

/* =================================
ヘッダー
================================= */
#header {
    background-color: #202020;
    width: 100%;
    padding-right: 24px;
    padding-left: 32px;
    padding-top: 13px;
    padding-bottom: 11px;
    position: fixed;
    z-index: 100;
}
.h-flex-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 0;
    max-width: 218px;
    width: 100%;
}
.header-right-box {
    align-items: center;
    display: flex;
    position: relative;
}

@media screen and (max-width: 880px) {
    .h-flex-box {
        display: flex;
        justify-content: space-between;
        margin-right: 0;
    }
    #header {
        background-color: #202020;
        width: 100%;
        padding-right: 13px;
        padding-left: 10px;
        padding-top: 12px;
        padding-bottom: 10px;
        position: fixed;
        z-index: 100;
    }
    .logo {
        font-size: 0;
        margin-left: 0;
        max-width: 139px;
        width: 100%;
    }
    .header-right-box {
        display: flex;
        position: relative;
    }
}

/* =================================
ハンバーガーメニュー
================================= */
.header-right-menu-box {
    height: 6rem;
    width: 6rem;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.openbtn {
    width: 20px;
    height: 16px;
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    display: flex;
}

.openbtn span {
    display: block;
    height: 2px;
    width: 20px;
    background-color: #e0e0e0;
    position: absolute;
    transition: 0.6s;
}


.openbtn span:nth-of-type(1) {
    top: 0;
    left: 0;
}

.openbtn span:nth-of-type(2) {
    top: 8px;
}

.openbtn span:nth-of-type(3) {
    top: 15px;
}


.openbtn.active span:nth-of-type(1) {
    width: 18px;
    transform: translateY(7px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0; /*çœŸã‚“ä¸­ã®ç·šã¯é€éŽ*/
}

.openbtn.active span:nth-of-type(3) {
    width: 18px;
    transform: translateY(-8px) rotate(45deg);
}
@media screen and (max-width: 880px) {
    .openbtn {
        width: 18px;
        height: 18px;
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        cursor: pointer;
        display: flex;
    }
    .openbtn span {
        display: block;
        height: 1px;
        width: 18px;
        background-color: #e0e0e0;
        position: absolute;
        transition: 0.6s;
    }
    .openbtn span:nth-of-type(1) {
        top: 0;
        left: 0;
    }
    
    .openbtn span:nth-of-type(2) {
        top: 9px;
    }
    
    .openbtn span:nth-of-type(3) {
        top: 17px;
    }
    .openbtn.active span:nth-of-type(1) {
        width: 18px;
        transform: translateY(7px) rotate(-45deg);
    }
    .openbtn.active span:nth-of-type(2) {
        opacity: 0; /*çœŸã‚“ä¸­ã®ç·šã¯é€éŽ*/
    }
    
    .openbtn.active span:nth-of-type(3) {
        width: 18px;
        transform: translateY(-10px) rotate(45deg);
    }
}
/* =================================
フッター
================================= */
body {
    background-color: #202020;
}
#footer {
    background-color: #202020;
    position: relative;
    padding: 40px 0;
}
.ft-link {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.ft-link li {
    line-height: 1;
}
.ft-link li a {
    border-left:1px solid #fff;
    padding: 0 20px;
    color:#fff;
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
}
.ft-link li:last-child a {
    border-right: 1px solid #fff;
}
#footer .copy {
    line-height: 1;
    color:#ffffff;
    text-align: center;
    font-weight: 300;
    font-size: 14px;
}
.page-top,
.ft-page-top {
    cursor: pointer;
    position: fixed;
    right: 40px;
    bottom:20px;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(64,64,64,1);
    z-index: 100;
}
.ft-page-top {
    position: absolute;
    right: 40px;
    bottom:auto;
    top:-20px;
}
.page-top,
.ft-page-top {
    transition: 0.7s;
}
.page-top:hover,
.ft-page-top:hover {
    background-color: rgba(128,128,128,1);
}
.page-top img,
.ft-page-top img {
    width: 16px;
    height: auto;
}
.sp-bottom-btn-box {
    background-color: #fff;
}
@media screen and (min-width: 881px) {
    .sp-bottom-btn-box {
        display: none !important;
    }
}
.sp-bottom-btn-box .gradi_02 {
    height:80px;
    position: absolute;
    top:0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
    background: linear-gradient(to bottom, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
    width: 100%;
}
@media screen and (max-width: 1280px) {
    #footer {
        width: 1280px;
    }
}

@media screen and (max-width: 880px) {
    #footer {
        width: 100%;
    }
    #footer {
        background-color: #202020;
        position: relative;
        padding: 30px 0;
    }
    .ft-link {
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
    }
    .ft-link li a {
        border-left: 1px solid #fff;
        padding: 0 17px;
        color: #fff;
        line-height: 1;
        font-size: 12px;
        letter-spacing: 0.05em;
        font-weight: 600;
    }
    #footer .copy {
        color: #ffffff;
        text-align: center;
        letter-spacing: 0.05em;
        font-weight: 300;
        line-height: 1;
        font-size: 12px;
    }
    .page-top {
        position: fixed;
        right: 10px;
        bottom: 72px;
        border-radius: 3px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #404040;
    }
    .ft-page-top {
        position: absolute;
        right: 10px;
        bottom:auto;
        top:-20px;
    }
    .sp-bottom-btn-box {
        display: block;
        position: fixed;
        z-index: 100;
        padding-top: 8px;
        bottom:0;
        padding-bottom:8px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    .bottom-btn-lists {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    .bottom-btn-lists .btn-list {
        width: 290px;
        padding: 0 5px;
        position: relative;
        z-index: 10;
    }
}


/* =================================
無料体験版
================================= */
.trial-version-box {
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
    margin-top: 57px;
    border-radius: 10px;
    position: fixed;
    right: 10px;
    bottom:80px;
    background-color: #fff;
    z-index: 100;
}
.trial-version-wrap {
    padding: 16px 12px;
    height: 100%;
    width: 100%;
    position: relative;
}
.trial-version-box h3 {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 16px;
}
.trial-version-box h3 span {
    background: linear-gradient(transparent 85%, rgba(0,160,255,0.25) 85%);
}
.x-btn {
    font-size: 0;
    right: 3px;
    top:3px;
    position: absolute;
    width: 10px;
    height: auto;
}
.trial-version-box .btn {
    font-size: 0;
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
}
.trial-version-box .btn + .btn {
    margin-top: 8px;
}
@media screen and (max-width: 880px) {
    .trial-version-box {
        display: none !important; 
    }
}

/* =================================
SPメニュー表示
================================= */
#overlay {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 48px;
    left: 0;
    z-index: 9998;
}
.sp-menu {
    opacity: 1;
    transition: 0.7s;
    position: fixed;
    overflow: auto;
    width: 100%;
    height: 100%;
    z-index: 1001;
    right: 0;
    pointer-events: none;
    z-index: 10002;
    transform: translateX(100%);
    max-width: 100%;
}
.sp-menu.active {
    pointer-events: auto;
    visibility: visible;
    transform: translate(0px, 0%);
}
.sp-menu-inner {
    position: relative;
    padding-top: 60px;
    padding-bottom: 30px;
}
.sp-menu-inner::after {
    content:'';
    position: absolute;
    height:80px;
    bottom:-80px;
    left: 0;
    background: -moz-linear-gradient(top, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
    background: linear-gradient(to bottom, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
    width: 100%;
}
.sp-menu-bottom {
    padding: 0 6px;
    position: relative;
    padding-top: 32px;
}
.sp-menu .gradi_02 {
    height:80px;
    position: absolute;
    top:0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
    background: linear-gradient(to bottom, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
    width: 100%;
}
.sp-menu-btn-lists {
    display: flex;
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
}
.sp-menu-btn-lists .btn-list {
    max-width: 180px;
    width: 100%;
}
.sp-menu-btn-lists .btn-list + .btn-list{
    margin-left: 4px;
}
#sp-menu {
    max-width: 376px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    top: 48px;
    background-color: #fff;
}
.sp-menu-logo {
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
}
.sp-menu-nav {
    margin-top: 40px;
    margin-bottom: 60px;
}
.sp-menu-nav ul li {
    line-height: 1;
}
.sp-menu-nav ul li + li {
    margin-top: 30px;
}
.sp-menu-nav ul a {
    display: table;
    margin: 0 auto;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 4px 6px;
    background-position: left center;
    background-image: url('../images/common/sp-menu-link-arrow.svg');
    padding-left: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color:#004080;
    line-height: 1;
}
.sp-nav-copy {
    margin-top: 27px;
    font-size: 10px;
    color:#004080;
    text-align: center;
}
.sp-navi-bottom-links ul {
    display: flex;
    justify-content: center;
}
.sp-navi-bottom-links ul li + li {
    margin-left: 14px;
}
.sp-navi-bottom-links ul li {
    line-height: 1;
}
.sp-navi-bottom-links ul a {
    color:#004080;
    background-repeat: no-repeat;
    background-size: 4px 6px;
    background-position: left center;
    background-image: url('../images/common/sp-menu-link-arrow.svg');
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding-left: 12px;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 880px) {
    #sp-menu {
        max-width:100%;
        width: 100%;
        margin-left: auto;
        margin-right: 0;
        top: 40px;
        background-color: transparent;
    }
    .sp-menu-inner {
        background-color: #fff;
    }
    .sp-menu-logo {
        max-width: 240px;
        width: 100%;
        margin: 0 auto;
    }
    .sp-menu-nav {
        margin-top: 40px;
        margin-bottom: 62px;
    }
    .sp-menu-nav ul a {
        display: table;
        margin: 0 auto;
        text-align: center;
        background-repeat: no-repeat;
        background-size: 4px 6px;
        background-position: left center;
        background-image: url(../images/common/sp-menu-link-arrow.svg);
        padding-left: 12px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.05em;
        color: #004080;
        line-height: 1;
    }
    .sp-menu-nav ul li + li {
        margin-top: 32px;
    }
    .sp-menu-btn-lists {
        justify-content: center;
    }
    #overlay {
        display: none;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 1);
        position: fixed;
        top: 40px;
        left: 0;
        z-index: 9998;
    }
    .sp-menu-inner::after {
        content: none;
    }
}