@charset "UTF-8";
@import url("sanitize.css");

/*=============================================================
 レイアウト設定
=============================================================*/
body {
    font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
    color: #1B1464;
    letter-spacing: 0.1em;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}
h1,h2 {
    letter-spacing: 0.2em;
}
h1 {
    margin: 0;
}
a {
    display: block;
    color: #1B1464;
    text-decoration-line: none;
}
a:hover { 
    text-decoration: underline;
}

/*=============================================================
 共通
=============================================================*/
.container {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1100px;
}
/* CTAボタンエリア */
/* 「LINEで今すぐ相談する」ラインデザイン */
.com-line {
    color: white;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.3em;
    position: relative;
    height: 50px;
    padding: 50px 20px 80px;
    margin: 50px 0;
    text-align: center;
    z-index: 1;
}
.com-line::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    z-index: -1;
    background: linear-gradient(180deg, #FFF000 0%, #FFF000 12%, #2D92BE 13%, #2D92BE 100%);
    transform: skewY(-3deg);
}
.com-line-top {
    margin: -100px 0 50px;
}
.com-line-bottom {
    margin: -50px 0 50px;
}
/* 「LINEで相談する」ボタンデザイン */
.sticky-container {
    height: auto;
    width: 100%;
    border-top: 5px #2D92BE solid;
}
.btn-area-wrap {
    position: sticky;
    bottom: 30px;
    z-index: 2;
}
.btn-area {
    position: relative;
    margin: -70px auto 50px;
    width: 340px;
    z-index: 2;
}
.cta-btn {
    cursor: pointer;
    width: 340px;
}
.cta-btn:hover {
	filter: brightness(110%);
}
.cta-img {
    position: absolute;
    right: -60px;
    top: 20px;
    width: 90px;
}
/* コンテンツタイトル */
.com-title {
    font-weight: bold;
    text-align: center;
    padding-top: 50px;
}
.com-title-text {
    display: inline-block;
    border-bottom: dashed 1px #000;
    line-height: 40px;
    min-width: 550px;
}
.com-title-text:first-child {
    border-top: dashed 1px #000;
}
/* コンテンツ画像エリア */
.com-flex {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.com-flex-content {
    padding: 0 10px;
    text-align: center;
}
.com-flex-content p {
    font-weight: bold;
}
.com-flex-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    height: 200px;
    width: 200px;
}
.com-flex-content img {
    max-width: 100%;
    max-height: 100%;
}
@media screen and (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    /* CTAボタンエリア */
    .com-line {
        padding: 45px 20px 70px;
    }
    .btn-area {
        width: 270px;
    }
    .cta-btn {
        width: 270px;
    }
    .cta-img {
        right: -40px;
        top: 18px;
        width: 68px;
    }
    /* コンテンツタイトル */
    .com-title-text {
        margin: 0 auto;
        width: 100%;
        min-width: 200px;
        max-width: 350px;
    }
    .com-title-text-top {
        border-top: dashed 1px #000;
    }
    /* コンテンツ画像エリア */
    .com-flex {
        display: flex;
        align-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }
}

/*=============================================================
 header
=============================================================*/
.header {
    position: relative;
}
.line-logo {
    position: absolute;
    z-index: 998;
    top: 15px;
    right: 65px;
    width: 40px;
    height: 40px;
}
/* メニュー */
.nav-openbtn {
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    top: 10px;
    right: 10px;
    margin-left: auto;
    width: 50px;
    height: 50px;
}
/*ボタン内側*/
.nav-openbtn .openbtn-area {
    transition: all .4s;
}
.nav-openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    width: 45%;
    border-radius: 2px;
    background: #000;
}
.nav-openbtn span:nth-of-type(1) {
    top:15px;	
}
.nav-openbtn span:nth-of-type(2) {
    top:23px;
}
.nav-openbtn span:nth-of-type(3) {
    top:31px;
}
/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/
.nav-openbtn.active .openbtn-area {
    transform: rotateY(-180deg);
}
.nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.nav-openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
#nav-area {
    position:fixed;
    z-index: 999;
    top: -150%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#nav-area.panelactive {
    top: 0;
}
/*ナビゲーションの縦スクロール*/
#nav-area.panelactive #nav-list {
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#nav-area ul {
    margin: 100px auto 50px auto;
}
/*リストのレイアウト設定*/
#nav-area li {
    list-style: none;
    text-align: center; 
}
#nav-area li a {
    padding: 8px;
    margin: 16px auto;
    display: block;
    letter-spacing: 0.1em;
    font-weight: bold;
}
#nav-area.panelactive body{ 
    height: 100%;
    overflow: hidden;
}
    
/*=============================================================
 fv
=============================================================*/
.fv-logo {
    display: inline-block;
}
.fv-img-logo {
    width: 180px;
}
.fv-wrap {
    width: 100%;
}
.fv-text {
    margin-left: 40px;
    width: 350px;
}
.fv-text-title {
    background-color: #1B1464;
    border-radius: 32px;
    color: white;
    display: inline-block;
    margin: 30px 0;
    padding: 5px 30px;
}
.fv-text-nomal {
    padding: 0 10px;
    letter-spacing: 0.3em;
    line-height: 28px;
}
.fv-text-bold {
    padding: 10px;
    font-size: 35px;
}
.fv-img {
    position: relative;
    height: 400px;
    width: calc(100% - 320px);
    z-index: 2;
}
.fv-img-yorozu {
    position: absolute;
    top: -100px;
    left: -20px;
    width: 500px;
}
.fv-img-men {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
}

/* fv用CTAボタンエリア */
#sec-fv .com-line {
    padding: 45px 20px 70px;
    margin: -170px 0 50px;
    text-align: left;
}
#sec-fv .com-line::before {
    background: #2D92BE;
    padding-left: 90px;
    text-align: left;
}
#sec-fv .com-line-text {
    margin: 0 auto;
    max-width: 1100px;
}
#sec-fv .com-line p {
    padding-left: 70px;
}
#sec-fv .fv-btn-area {
    margin: 0 auto;
    max-width: 1100px;
}
#sec-fv .btn-area {
    margin: -70px 70px 50px;
}
@media screen and (max-width: 768px) {
    .fv-img-logo {
        margin-left: -20px;
        width: 140px;
    }
    #sec-fv .com-flex {
        margin-top: 15px;
    }
    .fv-text {
        margin: 0 auto;
        text-align: center;
    }
    .fv-text-title {
        margin: 20px 0;
    }
    .fv-text-bold {
        padding: 10px 0 10px 25px;
    }
    .fv-img {
        position: static;
        width: auto;
        text-align: center;
    }
    .fv-img-yorozu {
        display: none;
    }
    .fv-img-men {
        position: static;
        top: 0;
        width: 220px;
    }
    #sec-fv .com-line {
        padding: 40px 20px 65px;
        margin: -190px 0 50px;
        text-align: center;
    }
    #sec-fv .com-line::before {
        top: -14px;
        background: linear-gradient(180deg, #FFF000 0%, #FFF000 12%, #2D92BE 13%, #2D92BE 100%);
    }
    #sec-fv .com-line::after {
        content: "";
        position: absolute;
        top: 0; bottom: 0; left: 0; right: 0;
        z-index: -1;
        background: linear-gradient(300deg, #1B1464 0%, #1B1464 40%, #2D92BE 40%, #2D92BE 100%);
        transform: skewY(-3deg);
    }
    #sec-fv .com-line p {
        padding-left: 0;
    }
    #sec-fv .btn-area {
        margin: -70px auto 50px;
    }
}
/*=============================================================
 「無料相談できる場を用意しました」
=============================================================*/
#sec-outline .container {
    margin-bottom: 150px;
}
#sec-outline .com-flex {
    align-items: center;
}
.outline-arrow {
    margin: 0 -25px;
    width: 100px;
}
.outline-arrow2 {
    margin: 0 -10px 0 -40px;
}
@media screen and (max-width: 768px) {
    .outline-arrow {
        transform: rotate(100deg);
        margin: 15px 0px 50px;
    }
}

/*=============================================================
 「たとえばこんな課題にご活用いただけます」
=============================================================*/
.how-area {
    /* position: relative; */
    align-items: center;
}
.how-area-title {
    border-radius: 0 50px 50px 0;
    background-color: #1B1464;
    color: white;
    padding: 20px 30px 20px 70px;
}
.how-area-text {
    font-size: 12px;
    margin-left: 20px;
    width: calc(100% - 250px);
}
@media screen and (max-width: 768px) {
    .how-area-title-sp {
        border-radius: 50px;
        background-color: #1B1464;
        color: white;
        padding: 5px 30px;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
        max-width: 350px;
    }
    .how-area-text {
        margin-left: 0;
        width: 100%;
    }
}

/*=============================================================
 「エキスパートが相談に乗ります」
=============================================================*/
#sec-expert {
    background-color: #1B1464;
    margin-top: 50px;
    padding: 30px 20px;
}
#sec-expert .container {
    display: flex;
}
.expert-left {
    background: linear-gradient(90deg, #DBECF4 0%, #DBECF4 25px, #FFFFFF 25px, #FFFFFF 100%);
    padding: 50px 45px 50px 65px;
    height: 320px;
    min-width: 350px;
}
.expert-left-text1 {
    padding: 12px 0;
}
.expert-left-text2 {
    border-top: dashed 1px #1B1464;
    border-bottom: dashed 1px #1B1464;
    font-size: 24px;
    font-weight: bold;
    line-height: 40px;
    letter-spacing: 0.25em;
    padding: 12px 0;
}
.expert-left-text3 {
    font-size: 14px;
    padding: 12px 0;
}
.expert-right {
    color: white;
}
.expert-right-content {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
}
.expert-right-content:last-child {
    border: none;
}
.expert-img {
    width: 150px;
}
.expert-img img {
    height: 130px;
}
.expert-info-name {
    font-size: 18px;
    padding: 25px 0 10px;
}
.expert-info-text {
    font-size: 14px;
    line-height: 26px;
    max-width: 320px;
}
/* PCスタイル */
@media screen and (min-width: 768px) {
    .expert-right-content-first {
        margin-top: -40px;
        margin-left: 30px;
    }
    .expert-right-content:last-child {
        margin-left: -30px;
    }
}
/* スマホスタイル */
@media screen and (max-width: 768px) {
    #sec-expert {
        padding:  20px 0;
    }
    .expert-left {
        padding: 30px 40px 30px 60px;
        height: auto;
    }
    .expert-right-content {
        align-items: center;
    }
    .expert-img img {
        height: 110px;
    }
    .expert-info-name-sp {
        font-size: 17px;
        padding: 25px 0 0;
        text-align: center;
    }
}

/*=============================================================
 「実行までサポート可能」
=============================================================*/
#sec-support {
    background-color: #DBECF4;
    padding-bottom: 120px;
}
.support-title-text1 {
    font-weight: normal;
    padding: 12px 0;
}
.support-title-text2 {
    border-top: dashed 1px #1B1464;
    border-bottom: dashed 1px #1B1464;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.25em;
    padding: 12px 0;
    margin: 0 auto;
    max-width: 600px;
}
.support-title-text3 {
    font-weight: normal;
    font-size: 14px;
    padding: 12px 0;
}
#sec-support .com-flex-img {
    height: 150px;
}
.support-content-text {
    font-size: 13px;
    padding-top: 15px;
}

@media screen and (max-width: 768px) {
    #sec-support {
        padding-bottom: 100px;
    }
    .support-title-text2 {
        font-size: 22px;
    }
    .support-content-line {
        border: solid 2px white;
        margin-top: 30px;
        width: 280px;
    }
}

/*=============================================================
 footer
=============================================================*/
footer {
    background-color: #1B1464;
    color: white;
    font-size: 14px;
    margin-top: 70px;
    padding: 30px;
    text-align: center;
}
.footer-menu {
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    padding-bottom: 20px;
    max-width: 1000px;
}
.footer-menu a {
    color: white;
}
@media (max-width: 768px) {
    footer {
        margin-top: 10px;
    }
    .footer-menu {
        flex-wrap: wrap;
        line-height: 30px;
    }
}

/*=============================================================
 運営会社、プライバシーポリシー、特商法、利用規約
=============================================================*/
.sec-info {
    color: black;
}
.sec-info h2 {
    margin: 60px 0 10px;
    border-bottom: 2px solid #777;
}

/*=============================================================
 共通(画面サイズ設定)
=============================================================*/
.sp {
	display: none;
}
@media (max-width: 768px) {
.pc {
	display: none;
}
.sp {
	display: block;
}
}

 