@charset "UTF-8";
/* -------------------------------------
common
------------------------------------- */
*{
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
    box-sizing: border-box;
    background: #fff;
    margin-top: 0 !important;
    width: 100%;
    /* margin-bottom:120px; */
}
body {
    font-family:"游ゴシック体", 'YuGothic' ,'Noto Sans JP' ,  sans-serif;
    color: #333;
    font-size: 1.6rem;
    text-decoration-line: none;
    text-decoration: none;
    border-bottom: none;
    margin: 0;
    background-color:white;
}
section{
    overflow: hidden;
}
a{
    transition: 0.3s;
}
a:hover{
    opacity: 0.7;
}
img{
    width:100%;
}
li > ul, li > ol{
	margin-left: 0;
}
li{
    list-style:none;
}
.pc{
    display: block;
}
.sp{
	display: none;
}
.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
#content_Wrap{
    overflow-x: hidden;
    letter-spacing: 0.05em;
}

/* -------------------------------------
header
------------------------------------- */
header{
    position: fixed;
    justify-content: space-between;
    width: 100%;
    z-index: 99;
}
header.change-color{
    background: rgba(255,255,255,0.8);
    transition: 0.3s;
}
header h1{
    width: 12%;
    max-width: 130px;
    padding: 20px 0 0 20px;
}
header .h_right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 88%;
}
header .h_right nav{
    display: flex;
    justify-content: flex-end;
    width: 80%;
}
header .h_right nav a{
    display: block;
    width: auto;
    position: relative;
    font-weight: bold;
    margin-right: 30px;
}
header .h_right nav a:hover{
    opacity: 1;
}
header .h_right nav a::after{
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: #003c6c;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}
header .h_right nav a:hover::after{
    width: 100%;
}
header .h_cv_Btn{
    display: block;
    width: 20%;
    max-width: 230px;
    background: #da6e0f;
    padding: 30px 5px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
}
header .h_cv_Btn:hover{
    opacity: 1;
    background: #003c6c;
}
.sp_menu{
    display: none;
}

/* -------------------------------------
fv
------------------------------------- */
.fv{
    position: relative;
    width: 100%;
    height: 0;
    background: url(/tob/lp/manegyads/img/fv_bg_pc.jpg) center top no-repeat;
    background-size: contain;
    padding-top: 45%;
    z-index: 1;
}
.fv .fv_inner{
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.fv .fv_left,.fv .fv_right{
    position: relative;
    width: 50%;
}
.fv .fv_right .fv_item{
    position: absolute;
    width: 48%;
    opacity: 0;
}
.fv .fv_left{
    opacity: 0;
}
.fv .fv_left .fv_cv_Btn{
    position: relative;
    display: block;
    width: 80%;
    margin: 30px auto 0;
    background: #da6e0f;
    border-radius: 10px;
    padding: 30px 5px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    transition: 0.3s;
}
.fv .fv_left .fv_cv_Btn:hover{
    opacity: 1;
    background: #003c6c;
}
.fv .fv_left .fv_cv_Btn::after{
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(45deg);
}
.fv .fv_right .fv_item.legal{
    top: -8%;
    right: 42%;
}
.fv .fv_right .fv_item.hr{
    top: 1%;
    right: -10%;
}
.fv .fv_right .fv_item.acc{
    width: 80%;
    bottom: -20%;
    right: -4%;
}

/* アニメーション */
.fv .fv_right .fv_item.legal.ani01,
.fv .fv_right .fv_item.hr.ani01,
.fv .fv_right .fv_item.acc.ani01,
.fv .fv_left.ani01{
    will-change: transform,opacity;
    animation: ani01 .5s 1;
    opacity: 1;
}
@keyframes ani01{
    0% {
    transform: translateY(20px);
    opacity: 0;
    }
    100% {
    transform: translateY(0);
    opacity: 1;
    }
}

/* -------------------------------------
コンテンツ内共通
------------------------------------- */
div[id]{
    margin-top: -76px;
    padding-top: 76px;
}
section[class*=_Wrap]{
    padding: 100px 0;
}
.bg_w{
    width: 100%;
    background: url(/tob/lp/manegyads/img/bg_w.jpg) left top no-repeat;
    background-size: 50%;
}
.bg_blue{
    position: relative;
    background: #f0f6fc;
    z-index: 0;
}
.bg_blue::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(/tob/lp/manegyads/img/bg_blue.jpg) right top no-repeat;
    background-size: 50%;
    z-index: -1;
}
section[class*=_Wrap] .inner{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
section[class*=_Wrap] h3{
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #333;
}
section[class*=_Wrap] h3::after{
    position: absolute;
    content: "";
    width: 40px;
    height: 5px;
    background: #004986;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.txt{
    font-size: 16px;
    line-height: 1.5;
}
.arrow-3{
    margin-top: 50px;
}
.arrow-3 span{
    display: block;
    width: 0;
    margin: 0 auto;
    border-top: #278fcf 20px solid;
    border-right: transparent 13px solid;
    border-left: transparent 13px solid;
    margin-bottom: 0px;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}
.arrow-3 span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.arrow-3 span:nth-of-type(2) {
    top: 16px;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
}
.arrow-3 span:nth-of-type(3) {
    top: 32px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    /* padding: 0 0 30px; */
}
@-webkit-keyframes sdb {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}
@keyframes sdb {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}
.cv_Btn{
    width: 100%;
    max-width: 500px;
    margin: 50px auto 0;
    text-align: center;
}
.cv_Btn a{
    position: relative;
    display: block;
    width: 100%;
    background: #da6e0f;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: bold;
    padding: 30px 5px;
    border-radius: 10px;
    color: #fff;
    transition: 0.3s;
}
.cv_Btn a:hover{
    opacity: 1;
    background: #003c6c;
}
.cv_Btn a::after{
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(45deg);
}

/* アニメーション */
.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
    from {
    opacity: 0;
    transform: translateY(100px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* -------------------------------------
ManegyAdsとは？
------------------------------------- */
.about_Wrap{
    width: 100%;
    background: url(/tob/lp/manegyads/img/about_bg.jpg) center top no-repeat;
    background-size: cover;
}
section.about_Wrap h3{
    color: #fff;
}
section.about_Wrap h3::after{
    background: #278fcf;
}
.about_Wrap .youtube{
    width: 100%;
    max-width: 800px;
    margin: 50px auto 0;
}
.about_Wrap .youtube div{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}
.about_Wrap .youtube iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.about_Wrap .inner > .txt{
    margin-top: 50px;
    text-align: center;
    color: #fff;
    line-height: 1.8;
}
.about_List{
    margin: 50px auto 0;
    justify-content: space-between;
}
.about_List li{
    width: calc((100% / 3) - 2%);
    background: #fff;
    border-radius: 15px;
    padding: 30px ;
}
.about_List li h4{
    color: #004986;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.about_List li figure{
    margin: 0 auto 20px;
}
.about_List li:nth-child(1) figure{
    width: 22%;
}
.about_List li:nth-child(2) figure{
    width: 26%;
}
.about_List li:nth-child(3) figure{
    width: 30%;
    padding: 6px 0;
}
.about_List li .txt span{
    font-weight: bold;
    background: linear-gradient(transparent 50%, #f0f963 50%);
}
.about_List li .txt sup{
    font-size: 70%;
    vertical-align: top;
}
.about_List li .note{
    margin-top: 10px;
    font-size: 80%;
    line-height: 1.2;
    text-indent: -1em;
    padding-left: 1em;
}

/* -------------------------------------
ManegyAdsの利用メリット
------------------------------------- */
section.merit_Wrap{
    padding: 100px 0 50px;
}
.merit_List{
    margin-top: 80px;
    justify-content: space-between;
}
.merit_List li{
    position: relative;
    width: calc((100% / 3) - 3%);
    background: #f7fbff;
    padding: 30px;
}
.merit_List li::after{
    position: absolute;
    content: "";
    border: #2990d0 1px solid;
    width: 100%;
    height: 100%;
    top: 5px;
    left: 5px;
}
.merit_List li span.num{
    position: absolute;
    top: -12%;
    left: -5%;
    z-index: 2;
}
.merit_List li:nth-child(1) span.num{
    width: 10%;
}
.merit_List li:nth-child(2) span.num{
    width: 13%;
}
.merit_List li:nth-child(3) span.num{
    width: 13%;
}
.merit_List li h4{
    color: #004986;
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    min-height: 60px;
}
.merit_List li:nth-child(2) h4{
    padding: 15px 0;
}
.important{
    position: relative;
    background: #fcf440;
    padding: 30px 0;
    justify-content: center;
    opacity: 0;
}
.important .inner{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.important p{
    text-align: center;
    color: #a60e0e;
    font-size: 30px;
    font-weight: bold;
    padding: 0 30px;
}
.important .illust{
    position: absolute;
    bottom: 0;
}
.important .illust.left{
    width: 150px;
    left: 2%;
}
.important .illust.right{
    width: 130px;
    right: 2%;
}

.important.cubic{
    position: relative;
    animation: img-opacity 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
    /* overflow: hidden; */
    transition: all 1.5s ease 0s;
}
.important.cubic::after{
    content: "";
    animation: img-animation 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
    background: #FFF;
    position: absolute;
    /* top: 0; */
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
    height: 150px;
}
@keyframes img-opacity {
    100% { opacity: 1;}
}
@keyframes img-animation {
    100% { transform: translateX(100%);}
}

/* -------------------------------------
お悩み
------------------------------------- */
.onayami_Wrap .before,
.onayami_Wrap .after{
    margin-top: 50px;
}
.onayami_Wrap .before .fukidashi-3{
    justify-content: space-between;
}
.onayami_Wrap .before .fukidashi-3 li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: calc((100% / 3) - 2%);
    background: #767676;
    padding: 20px ;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
}
.onayami_Wrap .before .fukidashi-3 li::after{
    position: absolute;
    content: "";
    border-top: #767676 15px solid;
    border-left: transparent 10px solid;
    border-right: transparent 10px solid;
    bottom: -10%;
}
.onayami_Wrap .before .fukidashi-3 li:nth-child(1):after{
    right: 25%;
}
.onayami_Wrap .before .fukidashi-3 li:nth-child(2):after{
    left: 50%;
    transform: translateX(-50%);
}
.onayami_Wrap .before .fukidashi-3 li:nth-child(3):after{
    left: 25%;
}
.onayami_Wrap figure{
    width: 80%;
    margin: 30px auto 0;
}
.onayami_Wrap .after .fukidashi-1{
    position: relative;
    background: #08446a;
    padding: 30px;
    text-align: center;
    font-size: 24px;
    line-height: 1.8;
    font-weight: bold;
    color: #fff;
    border-radius: 20px;
}
.onayami_Wrap .after .fukidashi-1::after{
    position: absolute;
    content: "";
    border-top: #08446a 20px solid;
    border-left: transparent 15px solid;
    border-right: transparent 15px solid;
    left: 50%;
    bottom: -8%;
    transform: translateX(-50%);
}
.onayami_Wrap .after .fukidashi-1 span{
    font-weight: bold;
    color: #f0f963;
}

/* -------------------------------------
活用シーン
------------------------------------- */
section.scene_Wrap .inner{
    max-width: 1200px;
}
.scene_Wrap .scene_List{
    margin-top: 80px;
    justify-content: space-between;
}
.scene_Wrap .scene_List li{
    position: relative;
    width: calc((100% / 3) - 2%);
    background: #f4f4f4;
    padding: 30px;
}
.scene_Wrap .scene_List li .scene-num{
    position: absolute;
    display: inline-block;
    width: 35%;
    top: -10px;
    left: 10px;
}
.scene_Wrap .scene_List li figure{
    width: 50%;
    margin: 0 auto 20px;
}
.scene_Wrap .scene_List li h4{
    color: #004986;
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

/* -------------------------------------
運用メニュー
------------------------------------- */
.menu_Wrap .menu_List{
    margin-top: 80px;
    justify-content: space-between;
}
.menu_Wrap .menu_List li{
    position: relative;
    width: calc((100% / 3) - 3%);
    background: #fff;
    border-radius: 50%;
}
.menu_Wrap .menu_List li .circle-inner{
    position: relative;
    padding-top: 100%;
    height: 0;
}
.menu_Wrap .menu_List li .circle-inner .circle-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);width: 100%;
}
.menu_Wrap .menu_List li figure{
    margin: 0 auto;
}
.menu_Wrap .menu_List li:nth-child(1) figure{
    width: 40%;
}
.menu_Wrap .menu_List li:nth-child(2) figure{
    width: 25%;
}
.menu_Wrap .menu_List li:nth-child(3) figure{
    width: 50%;
}
.menu_Wrap .menu_List li h4{
    color: #004986;
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* -------------------------------------
活用事例
------------------------------------- */
.case_Wrap .casestudy{
    margin-top: 50px;
}
.case_Wrap .casestudy.own{
    margin-top: 80px;
    padding-bottom: 30px;
    border-bottom: #dddddd 1px solid;
}
.case_Wrap .casestudy h4{
    color: #2990d0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.case_Wrap .casestudy .table_Box{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    /* justify-content: space-between;
    align-items: flex-end; */
}
.case_Wrap .casestudy.other .table_Box{
    max-width: 800px;
}
.case_Wrap .point{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    background: #fcf440;
    margin-top: 30px;
    padding: 20px;
    opacity: 0;
}
.case_Wrap .point.cubic{
    position: relative;
    animation: img-opacity 1s cubic-bezier(.4, 0, .2, 1) forwards;
    /* overflow: hidden; */
    transition: all 1s ease 0s;
}
.case_Wrap .point.cubic::after{
    content: "";
    animation: img-animation 1s cubic-bezier(.4, 0, .2, 1) forwards;
    background: #FFF;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}
@keyframes img-opacity {
    100% { opacity: 1;}
}
@keyframes img-animation {
    100% { transform: translateX(100%);}
}

/* -------------------------------------
footer
------------------------------------- */
footer .company{
    border-top: 2px solid #004986;
    padding: 30px 0;
    text-align: center;
}
footer .company p{
    margin-bottom: 20px;
}
footer .company .logo{
    display: block;
    width: 20%;
    max-width: 180px;
    margin: 0 auto;
}
footer .copyright{
    background: #004986;
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
    color: #fff;
}

/* -------------------------------------
pagetop
------------------------------------- */
.pagetop{
    position: fixed;
    bottom: 45px;
    right: 15px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #003c6c;
    transition: 0.3s;
}
.pagetop:hover{
    opacity: 0.7;
}
.pagetop a{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.pagetop a::before,
.pagetop a::after{
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background: #fff;
}
.pagetop a::before{
    top: 43%;
    left: 43%;
    transform: translateX(-50%) rotate(-45deg);
}
.pagetop a::after{
    top: 43%;
    left: 60%;
    transform: translateX(-50%) rotate(45deg);
}

/* =====================================
PC(1800px~)
===================================== */

@media screen and (min-width: 1800px) {
    .fv {
        height: 750px;
        background: url(/tob/lp/manegyads/img/fv_bg_pc.jpg) center top no-repeat;
        background-size: cover;
        padding-top: 0;
    }
    .fv .fv_inner{
        max-width: 1400px;
    }
}

/* =====================================
PC(~1400px)
===================================== */

@media screen and (max-width: 1400px) {
    .fv .fv_right .fv_item{
        width: 35%;
    }
    .fv .fv_right .fv_item.legal{
        top: 5%;
        right: 42%;
    }
    .fv .fv_right .fv_item.hr{
        top: 12%;
        right: -4%;
    }
    .fv .fv_right .fv_item.acc{
        width: 60%;
        bottom: -5%;
        right: 5%;
    }
    header .h_right nav a {
        margin-right: 15px;
        font-size: 14px;
    }
    header .h_cv_Btn{
        font-size: 14px;
    }
}

/* =====================================
PC(1025px~)
===================================== */
ul li[data-aos="fade-up"]:nth-child(1){
    transition-delay: 0.5s !important;
}
ul li[data-aos="fade-up"]:nth-child(2){
    transition-delay: 0.7s !important;
}
ul li[data-aos="fade-up"]:nth-child(3){
    transition-delay: 0.9s !important;
}

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

    /* -------------------------------------
    header
    ------------------------------------- */
    header .h_right{
        position: absolute;
        transform: translateX(100vw);
        transition: 0.5s;
    }
    header h1{
        width: 22%;
        padding: 15px 0 15px 15px;
    }
    .sp_menu{
        position: relative;
        display: block;
        width: 50px;
        height: 50px;
        top: 20px;
        right: 20px;
    }
    .sp_menu span{
        position: absolute;
        width: 100%;
        height: 2px;
        background: #333;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.3s;
    }
    .sp_menu span:nth-child(1){
        top: 0;
    }
    .sp_menu span:nth-child(2){
        top: 10px;
    }
    .sp_menu span:nth-child(3){
        top: 20px;
    }
    .sp_menu.active span:nth-child(1){
        top: 15px;
        transform: translateX(-50%) rotate(45deg);
        background: #fff;
    }
    .sp_menu.active span:nth-child(2){
        display: none;
    }
    .sp_menu.active span:nth-child(3){
        top: 15px;
        transform: translateX(-50%) rotate(-45deg);
        background: #fff;
    }
    header .h_right.panelactive{
        display: block;
        position: absolute;
        background: rgba(0, 60, 108,0.9);
        width: 100%;
        height: 100vh;
        transform: translateX(0);
    }
    header .h_right nav{
        flex-direction: column;
        width: 100%;
        padding-top: 100px;
    }
    header .h_right nav a {
        color: #fff;
        width: 90%;
        margin: 0 auto 20px;
        text-align: center;
        padding: 0 0 20px;
        border-bottom: #969696 1px solid;
    }
    header .h_cv_Btn{
        width: 80%;
        max-width: none;
        margin: 0 auto;
        padding: 20px 5px;
        border-radius: 5px;
    }
    header.change-color {
        background: rgba(255,255,255,1);
    }
    div[id]{
        margin-top: -50px;
        padding-top: 50px;
    }

    /* -------------------------------------
    fv
    ------------------------------------- */
    .fv{
        padding-top: 60%;
    }
    .fv .fv_left .fv_cv_Btn{
        width: 100%;
    }

    .onayami_Wrap .after .fukidashi-1{
        font-size: 22px;
    }
}

/* =====================================
SP(~768px)
===================================== */

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

    /* -------------------------------------
    common
    ------------------------------------- */
    .pc {
        display: none;
    }
    .sp{
        display: block;
    }

    /* -------------------------------------
    header
    ------------------------------------- */
    header h1 {
        width: 20%;
        max-width: 130px;
    }
    .sp_menu {
        width: 35px;
        height: 35px;
        top: 18px;
        right: 18px;
    }

    /* -------------------------------------
    fv
    ------------------------------------- */
    .fv {
        height: auto;
        background: url(/tob/lp/manegyads/img/fv_bg_pc.jpg) center top no-repeat;
        background-size: cover;
        padding: 10% 0 5%;
    }
    .fv .fv_inner{
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        flex-direction: column;
        margin: 0 auto;
    }
    .fv .fv_left, .fv .fv_right{
        width: 100%;
    }
    .fv .fv_left .fv_cv_Btn{
        display: none;
    }
    .fv .fv_left .fv_cv_Btn::after {
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        right: 3%;
    }
    .fv .fv_right{
        margin-top: 3%;
    }
    .fv .fv_right .fv_item{
        position: relative;
        width: 40%;
    }
    .fv .fv_right .fv_item.legal {
        top: unset;
        right: unset;
        margin-top: 0;
        margin-left: 8%;
    }
    .fv .fv_right .fv_item.hr {
        top: unset;
        right: unset;
        margin-top: -38%;
        margin-left: 53%;
    }
    .fv .fv_right .fv_item.acc {
        width: 70%;
        bottom: unset;
        right: unset;
        margin-top: -6%;
        margin-left: 21%;
    }
    .fv_inner > .fv_cv_Btn {
        position: relative;
        display: block;
        width: 100%;
        margin: 15px auto 0;
        border-radius: 5px;
        padding: 20px 5px;
        font-size: 16px;
        background: #da6e0f;
        color: #fff;
        font-weight: bold;
        text-align: center;
        box-sizing: border-box;
        transition: 0.3s;
        opacity: 0;
    }
    .fv_inner > .fv_cv_Btn::after{
        position: absolute;
        content: "";
        width: 8px;
        height: 8px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        top: 50%;
        right: 5%;
        transform: translateY(-50%) rotate(45deg);
    }
    /* アニメーション */
    .fv .fv_right .fv_item.legal.ani01,
    .fv .fv_right .fv_item.hr.ani01,
    .fv .fv_right .fv_item.acc.ani01,
    .fv .fv_left.ani01,
    .fv_inner > .fv_cv_Btn.ani01{
        will-change: transform,opacity;
        animation: ani01 .5s 1;
        opacity: 1;
    }
    @keyframes ani01{
        0% {
        transform: translateY(20px);
        opacity: 0;
        }
        100% {
        transform: translateY(0);
        opacity: 1;
        }
    }

    /* -------------------------------------
    コンテンツ内共通
    ------------------------------------- */
    section[class*=_Wrap]{
        padding: 50px 0;
    }
    section[class*=_Wrap] h3{
        font-size: 20px;
    }
    section[class*=_Wrap] h3::after {
        width: 30px;
        height: 3px;
    }
    .txt {
        font-size: 14px;
    }
    ul[class*=_List]{
        flex-wrap: wrap;
    }
    ul[class*=_List] li{
        width: 100%;
    }
    ul[class*=_List] li h4{
        font-size: 18px;
    }
    .cv_Btn{
        width: 100%;
        margin: 15px auto 0;
    }
    .cv_Btn a{
        border-radius: 5px;
        padding: 20px 5px;
        font-size: 16px;
    }
    .cv_Btn a::after {
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        right: 3%;
    }

    /* -------------------------------------
    ManegyAdsとは？
    ------------------------------------- */
    .about_Wrap{
        background: url(/tob/lp/manegyads/img/about_bg_sp.jpg) center top no-repeat;
        background-size: cover;
    }
    .about_Wrap .inner > .txt {
        margin-top: 30px;
        font-size: 14px;
        text-align: justify;
    }
    .about_List{
        margin: 30px auto 0;
    }
    .about_List li {
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
    }
    .about_List li h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .about_List li figure {
        margin: 0 auto 15px;
    }
    .about_List li:nth-child(1) figure {
        width: 17%;
    }
    .about_List li:nth-child(2) figure {
        width: 19%;
    }
    .about_List li:nth-child(3) figure {
        width: 24%;
    }

    /* -------------------------------------
    ManegyAdsの利用メリット
    ------------------------------------- */
    section.merit_Wrap{
        padding: 50px 0 15px;
    }
    .merit_List{
        margin-top: 50px;
    }
    .merit_List li {
        padding: 20px;
        margin-bottom: 30px;
    }
    .merit_List li:last-child{
        margin-bottom: 0;
    }
    .merit_List li span.num{
        left: 0;
    }
    .merit_List li:nth-child(1) span.num{
        width: 7%;
    }
    .merit_List li:nth-child(2) span.num{
        width: 10%;
    }
    .merit_List li:nth-child(3) span.num{
        width: 11%;
    }
    .merit_List li h4{
        min-height: 0;
    }
    .merit_List li:nth-child(2) h4{
        padding: 0;
    }
    .arrow-3 {
        margin-top: 20px;
    }
    .important{
        padding: 20px 0;
    }
    .important .illust.left {
        width: 15%;
        left: 0;
    }
    .important .illust.right {
        width: 15%;
        right: 0;
    }
    .important p {
        font-size: 20px;
        padding: 0;
    }

    /* -------------------------------------
    お悩み
    ------------------------------------- */
    .onayami_Wrap .before .fukidashi-3{
        flex-wrap: wrap;
    }
    .onayami_Wrap .before .fukidashi-3 li {
        width: 85%;
        box-sizing: border-box;
        padding: 15px;
        font-size: 14px;
        margin-bottom: 5%;
    }
    .onayami_Wrap .before .fukidashi-3 li:nth-child(2){
        margin-left: auto;
    }
    .onayami_Wrap .before .fukidashi-3 li:nth-child(3){
        width: 100%;
    }
    .onayami_Wrap .before .fukidashi-3 li:nth-child(1):after,
    .onayami_Wrap .before .fukidashi-3 li:nth-child(3):after{
        right: unset;
        left: 10%;
    }
    .onayami_Wrap .before .fukidashi-3 li:nth-child(2):after {
        left: unset;
        right: 10%;
        transform: none;
    }
    .onayami_Wrap figure {
        width: 100%;
        margin: 0 auto;
    }
    .onayami_Wrap .after {
        margin-top: 20px;
    }
    .onayami_Wrap .after .fukidashi-1 {
        padding: 20px;
        text-align: justify;
        font-size: 16px;
        border-radius: 10px;
    }
    .onayami_Wrap .after .fukidashi-1::after {
        border-top: #08446a 15px solid;
        border-left: transparent 10px solid;
        border-right: transparent 10px solid;
    }
    .onayami_Wrap .after figure{
        margin: 30px auto 0;
    }
    .onayami_Wrap .cv_Btn{
        margin-top: 30px;
    }

    /* -------------------------------------
    活用シーン
    ------------------------------------- */
    .scene_Wrap .scene_List{
        margin-top: 50px;
    }
    .scene_Wrap .scene_List li{
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }
    .scene_Wrap .scene_List li:last-child{
        margin-bottom: 0;
    }
    .scene_Wrap .scene_List li .scene-num{
        width: 28%;
    }
    .scene_Wrap .scene_List li figure {
        width: 35%;
        margin: 0 auto 15px;
    }
    .scene_Wrap .scene_List li h4{
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* -------------------------------------
    運用メニュー
    ------------------------------------- */
    .menu_Wrap .menu_List{
        margin-top: 50px;
    }
    .menu_Wrap .menu_List li {
        width: calc((100% / 3) - 2%);
    }
    .menu_Wrap .menu_List li:nth-child(1) figure {
        width: 35%;
    }
    .menu_Wrap .menu_List li h4 {
        font-size: 14px;
        line-height: 1.2;
        margin-top: 10px;
    }

    /* -------------------------------------
    活用事例
    ------------------------------------- */
    .case_Wrap .casestudy,
    .case_Wrap .casestudy.own{
        margin-top: 50px;
    }
    .case_Wrap .casestudy h4{
        font-size: 18px;
    }
    .case_Wrap .point {
        font-size: 16px;
        margin: 30px auto;
        padding: 15px;
    }

    /* -------------------------------------
    footer
    ------------------------------------- */
    footer .company{
        padding: 20px 0;
    }
    footer .company p{
        font-size: 14px;
    }
    footer .company .logo{
        width: 40%;
    }
    footer .copyright {
        padding: 10px 5px;
        font-size: 10px;
        line-height: 1.2;
    }

    /* -------------------------------------
    pagetop
    ------------------------------------- */
    .pagetop {
        bottom: 60px;
        width: 50px;
        height: 50px;
    }
    .pagetop a::before {
        left: 40%;
    }
}
