@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


body#body {
    width: 100%;
    
}

#wrapper {
    font-family: "Noto Sans JP", sans-serif;
    overflow-x: hidden;
    font-weight: 500;
    width: 100%;
}

.h1-data {
    display: none;
}

[data-element-id].h1-data {
    display: block;
}

#header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 0;
    z-index: 999;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-logo {
    width: 250px;
}

.h-logo>a {
    display: block;
    width: 100%;
}

.h-logo>a>img {
    display: block;
    width: 100%;
}

.nav-area {
    width: 100%;
    max-width: calc(100% - 300px);
    position: relative;
    z-index: 102;
}

.nav-area nav {
    width: 100%;
}

.nav-list {
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-item1 {
    flex-grow: 1;
    text-align: center;
}

.nav-item1>a,
.nav-item1>span {
    display: block;
    font-weight: bold;
    font-size: 15px;
    color: #777;
    padding: 14px 0;
}

.navbtn {
    width: 180px;
    display: block;
    text-align: center;
}

.navbtn>a {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    background-color: #fabc02;
}

.navbtn.cc01>a {
    background-color: #b7d200;
}

.navbtn.cc02>a {
    background-color: #20b7bc;
}

.navbtn.cc03>a {
    background-color: #fabc02;
}

.navbtn>a>span {
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 3;
}

.navbtn>a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #5a94d2;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

.navbtn>a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.navbtn>a:hover {
    opacity: 1;
}

.drop-switch {
    position: relative;
}

.drop-switch>a>i,
.drop-switch>span>i {
    color: #5a94d2;
    display: inline-block;
    margin-left: 5px;
}

.drop-switch>a:hover,
.drop-switch>span:hover {
    cursor: pointer;
}

.drop-menu {
  display:none;
    width: 300px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #5a94d2;
    padding: 0 10px 10px 10px;
    z-index:0;
}

.drop-switch:hover .drop-menu {
    visibility: visible;
    opacity: 1;
    z-index:1;
display:block;
}

.nav-item2>a {
    display: block;
    width: 100%;
    text-align: left;
    color: #fff;
    padding-bottom: 10px;
    margin-top: 10px;
    border-bottom: 1px solid #fff;
    font-size: 15px;
}

.nav-item2>a>i {
    font-weight: 900;
    color: #fff;
    display: inline-block;
    margin-right: 5px;
}

.hum-btn {
    display: none;
    width: 45px;
    height: 45px;
    background-color: #5a94d2;
    position: relative;
    transition: .5s;
    z-index: 103;
}

.hum-btn>span {
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

.hum-btn>span:nth-child(1) {
    top: 12px;
}

.hum-btn>span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.hum-btn>span:nth-child(3) {
    bottom: 12px;
}

.drawer-active .hum-btn {
    background-color: #fabc02;
}

.drawer-active .hum-btn>span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-active .hum-btn>span:nth-child(2) {
    opacity: 0;
}

.drawer-active .hum-btn>span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.h-logo.h-logo2 {
    width: 180px;
    margin: 0 auto;
}






@media(max-width:1024px) {
  body.drawer-active {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}
    .hum-btn {
        display: block;
    }

    .nav-area {
        max-width: 100%;
        transform: translateX(101%);
        transition: .5s;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #eee;
        height: 100vh;
        display: block;
        width: 600px;
        padding-top: 60px;
    }

    .drawer-active .nav-area {
        transform: translateX(0%);
    }

    nav {
        padding: 30px;
        height: calc(100vh - 300px);
    }

    .nav-list {
        display: block;
        background-color: #fff;
        height: 100%;
        overflow-y: scroll;
        padding-bottom: 60px;
    }

    .drop-switch.nav-item1,
    .nav-item1 {
        width: 100%;
        text-align: left;
        visibility: visible;
    }

    .drop-switch:hover .drop-menu,
    .drop-switch .drop-menu {
        visibility: visible;
        opacity: 1;
        position: relative;
        transform: translateX(0);
        left: 0;
        top: 0;
        background-color: transparent;
        width: 96%;
        display:block;
    }

    .nav-item1>a,
    .nav-item1>span {
        font-size: 16px;
        padding: 10px 20px;
    }

    .nav-item2>a>i {
        color: #5a94d2;
    }

    .nav-item2>a {
        text-align: left;
        border-bottom: 1px solid #777;
        margin-left: 20px;
        color: #777;
    }

}

@media(max-width:599px) {
    .nav-area {
        width: 100%;
    }

    nav {
        padding: 30px 10px;
        height: calc(100vh - 100px);

    }

    .h-logo {
        width: 200px;
    }

    #header {
        padding: 10px 0;
    }

}


.top-mv-area {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 700px;
}

.top-mv-area>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

.top-mv-area::before {
    content: "";
    width: 800px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -400px;
    z-index: 2;
    background-image: url('/import/tenant_4/unison-planet.net/cs/client-check/creator/UGC_NEW/images/Mokup.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.top-mv-area::after {
    content: "";
    width: 800px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: -400px;
    z-index: 2;
    background-image: url('/import/tenant_4/unison-planet.net/cs/client-check/creator/UGC_NEW/images/Mokup.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.top-mv-catch {
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.mv-txt-main {
    color: #fff;
    font-weight: bold;
    font-size: 36px;
    text-align: center;
    line-height: 1.2em;
}

.mv-txt-main.for-sp {
    font-size: 26px;
}

.mv-txt-main>div {
    color: #fabc02;
    font-size: 1.5em;
    margin-top: 0.3em;
}

.mv-txt-sub {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.mvbtn {
    width: 230px;
}

.mvbtn>a {
    text-align: center;
    width: 100%;
    display: inline-block;
    background-color: #fabc02;
    padding: 15px 0;
    position: relative;
    overflow: hidden;
    transition-delay: .6s;
}

.mvbtn>a>span {
    font-weight: bold;
    position: relative;
    z-index: 3;
    color: #fff;
    font-weight: bold;
}

.mvbtn>a::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #5a94d2;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

.mvbtn>a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);

}

.mvbtn>a:hover {
    opacity: 1;
    background: #5a94d2;
}

.mvbtn.download>a>span::before {
    content: "\f019";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2em;
}

.mvbtn.mail>a>span::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2em;
}

.overlay,
.drawer-active .overlay {
    display: none;
}

    .mv-txt-main,
    .mv-txt-sub {
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 1),
            0px 0px 3px rgba(0, 0, 0, 1),
            0px 0px 3px rgba(0, 0, 0, 1);
    }

@media(max-width:1200px) {



    .top-mv-area::before,
    .top-mv-area::after {
        opacity: 0.6;
    }
}



@media(Max-width:1024px) {
    .top-mv-area {
        height: 600px;
    }

    .top-mv-area::after {
        width: 500px;
        right: -250px;
    }

    .top-mv-area::before {
        width: 500px;
        left: -250px;
    }
    
    .overlay {
    width: 100%;
    height: 100vh;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.drawer-active .overlay {
    display: block;
}
}

@media(Max-width:599px) {
    .top-mv-area {
        height: 450px;
    }

    .top-mv-area::after {
        width: 360px;
        right: -180px;
        background-position: bottom center;
    }

    .top-mv-area::before {
        width: 360px;
        left: -180px;
        background-position: bottom center;
    }
    
    .top-mv-catch {
top:35%;
}
}

.fixed-btn.mk1 {
    position: fixed;
    bottom: 15px;
    right: 0px;
    z-index: 99;
    display:flex;
    align-items: center;
}


.mk1 .fixbtn {
    width: 96px;
    height: 96px;
    display: inline-block;
    margin-right: 15px;
}

.mk1 .fixbtn>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 12px;
    text-align: center;
    line-height: 1.1em;
    color: #fff;
    border-radius: 50%;
    overflow: hidden;
    font-weight: bold;
}

.mk1 .fixbtn>a>i {
    display: inline-block;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.mk1 .fixbtn.c01>a {
    background-color: #b7d200;
}

.mk1 .fixbtn.c02>a {
    background-color: #20b7bc;
}

.mk1 .fixbtn.c03>a {
    background-color: #fabc02;
}




.achieve-Head .label {
    display: inline-block;
    margin: 0 auto 10px;
    padding: 2px 20px;
    font-weight: 600;
    color: #fff;
    border-radius: 100px;
    background: #5a94d2;
    position: relative;
}

.achieve-Head .label:after {
    content: "";
    display: block;
    border-top: solid 8px #5a94d2;
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 100%;
    left: 50%;
}

.tit01 {
    color: #4d4d4d;
    text-align: center;
    font-weight: bold;
    letter-spacing: .05em
}

.cgr {
    color: #4d4d4d;
}

.tit01.mk2 {
    text-align: left;
}

.blue-box .tit01,
.bg-blue .tit01,
.wt-txt.up-txt,
.white-one,
.white-one.tit02 {
    color: #fff;
}

.tit02 {
    color: #5a94d2;
    font-weight: bold;
    line-height: 1.3em;
}

.udb {
    border-bottom: 3px dotted #20b7bc;
    padding-bottom: 8px;
}

.udb.white-one {
    border-bottom: 3px dotted #fff;
    padding-bottom: 8px;
}

.bdt {
    border-top: 3px dotted #20b7bc;
}


.up-txt {
    color: #4d4d4d;
    font-size: 15px;
}

.up-txt>a,
.txt>a{
    color: #376fbc;
    font-weight: bold;
    text-decoration: underline;
}

.minit {
    color: #777;
}

[data-element-id] .achieve-List ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

[data-element-id] .achieve-List li {
    width: 18%;
    margin: 1%;
}

.achieve-List li {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.achieve-List li img {
    margin: auto;
}

@media (max-width: 1024px) {
    .achieve-Head .tit .lead {
        font-size: 30px;
    }
}

@media (max-width: 599px) {
    .achieve-Head .label {
        font-size: 15px;
    }

    .achieve-Head .tit .lead {
        font-size: 24px;
    }
}

.bg-grey {
    background-color: #f8f8f8 !important;
}

.bg-blue {
    background-color: #376fbc;
}

.bg-dgr {
    background-color: #4d4d4d;
}

.link-btn.in-flex {
    width: auto;
    flex-grow: 1;
    margin: 2px;
}

.link-btn {
    width: 300px;
    max-width: 100%;
}

.link-btn.long {
    width: 370px;
    max-width: 100%;
}

.link-btn>* {
    text-align: center;
    width: 100%;
    display: block;
    background-color: #5a94d2;
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.link-btn.mk2>* {
    background-color: #fff;
}

.link-btn>*>span {
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 3;
}

.link-btn.mk2>*>span {
    color: #5a94d2;
    transition: .6s;
}

.link-btn>*::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #777;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
    display:block;
}

.link-btn>*:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.link-btn>*:hover {
    opacity: 1;
}

.link-btn>*>span>i {
    display: inline-block;
    margin-left: 5px;
}

.link-btn.r>*>span>i {
    margin-right: 5px;
}

.link-btn.mk2>*:hover>span {
    color: #fff;
}

@media(max-width:599px) {
    .link-btn.in-flex {
        flex-grow: 0;
        width: 100%;
    }
}

.bdr10 {
    border-radius: 5px;
    overflow: hidden;
}

.blue {
    color: #5a94d2;
    font-weight: bold;
}


.menu-item {
    width: 400px;
}

.menu-item.mk2 {
    width: 100%;
    margin-top: 0;
}

.menu-item:nth-child(3),
.menu-item:nth-child(4) {
    margin-top: 130px;
}

.menu-item>a {
    display: block;
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    padding: 30px 15px;
}

.menu-item.mk2>a {
    background-color: #f8f8f8;
}

.menu-item>span {
    display: block;
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    padding: 30px 15px;
}

.menu-item>a:hover {
    opacity: 1;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.c-bg>img {
    display: block;
    width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: calc(100% + 100px);
    object-fit: contain;
}

@media(max-width:1024px) {
    .menu-item {
        width: 48%;
    }
}

@media(max-width:599px) {
    .menu-item {
        width: 100%;
    }

    .menu-item:nth-child(2),
    .menu-item:nth-child(3),
    .menu-item:nth-child(4) {
        margin-top: 30px;
    }

    .c-bg>img {
        display: none;
    }
}

.blue-box {
    width: 100%;
    background-image: url('/import/tenant_4/unison-planet.net/cs/client-check/creator/UGC_NEW/images/BBg.webp');
    background-size: cover;
    background-position: center;
}

.per-box {
    flex: 1;
    text-align: center;
}

.per-txt {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.per-main {
    font-size: 18px;
    color: #fabc02;
    font-weight: bold;
}

.per-main>span {
    font-size: 66px;
    line-height: 1em;
}

@media(max-width:599px) {
    .per-box {
        flex: auto;
        width: 50%;
    }

    .per-box:last-child {
        margin-top: 30px;
    }

    .per-txt {
        font-size: 15px;
    }

    .mg-img {
        margin-top: -15px;
        margin-bottom: -10px;
    }
}

.slider-jirei .slick-slide {
    padding: 0px 15px
}


.menu-name {
    display: inline-block;
    color: #376fbc
}

.menu-name>* {
    display: block;
    width: 100%;
    position: relative;
    padding-left: 25px;
    margin: 5px 0;
    text-align: left;
}

.jirei-item>a  {
    display: block;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.jirei-item.v2>a .item-txt {
    background-color:#f8f8f8;
}

.new-jirei-list.v2 .jirei-item>a .item-txt {
    background-color: #f8f8f8;
}

.new-jirei-list .jirei-item>a:hover {
    opacity: 1;
    box-shadow: 0px 2px 5px #444;
    transform: scale(1.1);
    z-index: 1;
}



.menu-name>*::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fabc02;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.item-txt {
    background-color: #fff;
    padding: 30px 15px;
    color: #4d4d4d;
    position: relative;
}



.jirei-title {
    font-weight: bold;
}

.imgbox {
    position: relative;
    background-color: #000;
}

.imgbox>* {
    position: relative;
    z-index: 2;
}

.imgbox>img {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
    object-fit: cover;
    object-position: center;
}

.img-item01>a {
    display: block;
    padding: 30px 10px;
}

.img-item02>a,
.img-item02>span {
    display: block;
    padding: 60px 10px;
}

.img-item01>a:hover {
    opacity: 1;
}

.img-item02>a:hover {
    opacity: 1;
}

.feature-item.in-flow {
    position: relative;
}

.feature-item.mk2 .item-inner {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    padding: 30px 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.feature-item.in-flow::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    font-size: 36px;
    position: absolute;
    top: 50%;
    right: -18px;
    color: #777;
    transform: translateY(-50%);
}

.feature-item.in-flow:last-child::after {
    display: none;
}

.p-num>span {
    display: inline-block;
    background-color: #376fbc;
    color: #fff;
    font-size: 16px;
    padding: 2px 10px;
    border-radius: 5px;
    margin-right: 10px;
}

@media(max-width:1024px) {
    .feature-item.in-flow::after {
        display: none;
    }

    .img-item02>a,
    .img-item02>span {
        display: block;
        padding: 30px 10px;
    }
}

@media(max-width:599px) {
    .feature-item.in-flow::after {
        content: "\f063";
        display: inline-block;
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
    }

    .feature-item.in-flow:last-child::after {
        display: none;
    }
}

.news-item>a {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    border-bottom: 1px solid #777;
    align-items: center;
}



.solution-box.white-block.ver-n>a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.news-date {
    color: #777;
    font-weight: bold;
    width: 100px;
}

.news-cat {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 100px;
}

.news-cat>* {
    flex-wrap: wrap;
    display: inline-block;
    background-color: #376fbc;
    color: #fff;
    font-size: 12px;
    padding: 1px 10px;
    border-radius: 5px;
    margin-right: 5px;
}

.blog-cat {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 10px;
}

.blog-cat>* {
    display: inline-block;
    background-color: #376fbc;
    color: #fff;
    font-size: 12px;
    padding: 1px 10px;
    border-radius: 5px;
    margin-right: 2px;
}

.news-title {
    color: #4d4d4d;
    width: calc(100% - 100px)
}

.under-scens {
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

@media(max-width:599px) {
    .news-cat {
        padding-left: 0px;
        margin-bottom: 0px;
    }

    .news-date {
        width: 100%;
    }

    .news-title {
        width: 100%;
    }

    .under-scens {
        padding: 15px 10px;
    }
}

.upper-section {
    margin-top: -60px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fnav {
    margin-top: 10px;
}

.fnav>li>a {
    display: block;
    text-align: left;
    color: #777;
    padding-bottom: 10px;
}


.fnav>li>a>i {
    font-weight: 900;
    color: #5a94d2;
    display: inline-block;
    margin-right: 5px;
}

.f-flx-01 {
    width: 100px;
}

.f-flx-01>a,
.f-flx-01>a>img {
    display: block;
}

.fixed-btn.ftr {
    display: flex;
    align-items: center;
    height: 55px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99
}




.ftr .fixbtn.c01 {
    height: 100%;
    flex-grow: 1;
}

.ftr .fixbtn.c01>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #fff;
    background-color: #b7d200;
}

.ftr .fixbtn.c01>a>i {
    font-size: 20px;
    margin-right: 10px;
}

.ftr .fixbtn.c02 {
    height: 100%;
    flex-grow: 1;
}

.ftr .fixbtn.c02>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #fff;
    background-color: #20b7bc;
}

.ftr .fixbtn.c02>a>i {
    font-size: 20px;
    margin-right: 10px;
}

.ftr .fixbtn.c03 {
    width: 65px;
    height: 100%;
}

.ftr .fixbtn.c03>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 30px;
    color: #fff;
    background-color: #fabc02;
}



@media(max-width:599px) {

    .f-flx-02,
    .f-flx-03,
    .f-flx-04,
    .f-flx-05,
    .f-flx-06 {
        width: 50%;
        margin-bottom: 30px;
    }

    .achieve-List li {
        padding: 5px;
    }
}

/*/////////////////////////////////////////////////////*/





.under-mv-area {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 400px;
}

.under-mv-area>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

.under-mv-area .no-before {
    width: 500px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
}

.no-before>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.under-mv-catch {
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.under-txt-main {
    color: #fff;
    font-weight: bold;
    font-size: 40px;
    line-height: 1.2em;
     text-shadow: 0px 0px 3px rgba(0, 0, 0, 1),
            0px 0px 3px rgba(0, 0, 0, 1),
            0px 0px 3px rgba(0, 0, 0, 1);
}

.under-txt-main.for-sp {
    font-size: 30px;
}

.under-txt-sub {
    font-size: 16px;
    color: #fff;
     text-shadow: 0px 0px 3px rgba(0, 0, 0, 1),
            0px 0px 3px rgba(0, 0, 0, 1),
            0px 0px 3px rgba(0, 0, 0, 1);
}

@media(Max-width:1024px) {

    .under-txt-main,
    .under-txt-sub {
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 1),
            0px 0px 3px rgba(0, 0, 0, 1),
            0px 0px 3px rgba(0, 0, 0, 1);
    }

    .under-mv-area .no-before {
        width: 400px;
        opacity: 0.6;
    }
}

@media(Max-width:599px) {
    .under-mv-area {
        height: 320px;
    }

    .under-mv-area .no-before {
        width: 300px;
        left: 30%;
    }

}

.breads {
    position: relative;
    z-index: 2;
    color: #4d4d4d;
    font-weight: bold;
}

.breadcrumbs {
    padding: 15px 0;
}

.breadcrumbs-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.breadcrumbs-list li {
    display: inline;
    letter-spacing: 1px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
    font-weight: bold;
    color: #376fbc;
}

.breadcrumbs-list li+li::before {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    margin: 0 10px;
    border-top: 2px solid #376fbc;
    border-right: 2px solid #376fbc;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .breadcrumbs {
        padding: 10px 0;
    }

    .breadcrumbs li+li::before {
        width: 8px;
        height: 8px;
        margin: 0 5px 1px;
    }
}

.icons {
    background-color: #f8f8f8;
    border: 20px solid #f8f8f8;
    max-width: 150px !important;
    margin-left: auto;
    margin-right: auto;
}

.white-block {
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

/*.solution-box {
    border: 3px solid #ccc;
}*/

.bg-grey .white-block {
    background-color: #fff;
}

.new-inibox {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new-inibox .txt {
    display: flex;
    align-items: center;
}

.new-inibox .txt .init {
    font-size: 1.5em;
    font-weight: bold;
    color: #5a94d2;
}

.new-inibox.ver02 .txt .init {
    font-size: 1.1em;
    width: 5em;
    font-weight: bold;
    color: #5a94d2;
    min-width: 5em;
}

.color-paleblue {
    color: #20b7bc;
}

.mini-list>li,
.mini-list.js-split-tag>span {
    display: block;
    width: 100%;
    position: relative;
    padding-left: 20px;
    margin: 8px 0;
    text-align: left;
    font-weight: bold;
}

.mini-list>li::before,
.mini-list.js-split-tag>span::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #fabc02;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: .4em;
}

.big-list>li {
    display: block;
    width: 100%;
    font-size: 18px;
    position: relative;
    padding-left: 20px;
    margin: 5px 0;
    text-align: left;
    font-weight: bold;
}

.big-list>li::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #fabc02;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.big-list.mk2>li {
    color: #fff;
}

.big-list.mk2>li::before {
    background-color: #fabc02;
}

.yellow {
    color: #fabc02;
}

@media(max-width:599px) {
    .icons {
        border: 10px solid #f8f8f8;
    }

    .white-block {
        padding: 30px 10px;
    }
}

/*.solution-tag {
    position: relative;
    color: #376fbc;
    font-size: 26px;
    padding-left:1.6em;
    font-weight:bold;
}

.solution-tag::before {
background-image:url(/upload/tenant_4/blm.webp);
background-size:contain;
background-position:center left;
content:"";
position:absolute;
top:25%;
left:0;
height:60%;
width:1.5em;
display:inline-block;
background-repeat:no-repeat;
}*/

.solution-tag{
  font-size:30px;
 position: relative;
  padding: 5px 0 5px 80px;
  border-bottom: 3px solid #4d4d4d;
  font-weight:bold;
  color: #4d4d4d;
}

.solution-tag .slnum{
  font-family: 'Roboto', sans-serif;
  font-size: 1.8em;
  line-height: 1;
  position: absolute;
  top:0;
  left: 0;
  color:#5a94d2;
}

.up-col-2>div:nth-child(1) .solution-tag .slnum::before{
  content:"01";
  display:inline-block;
}

.up-col-2>div:nth-child(2) .solution-tag .slnum::before{
  content:"02";
  display:inline-block;
}

.up-col-2>div:nth-child(3) .solution-tag .slnum::before{
  content:"03";
  display:inline-block;
}

.up-col-2>div:nth-child(4) .solution-tag .slnum::before{
  content:"04";
  display:inline-block;
}

.up-col-2>div:nth-child(5) .solution-tag .slnum::before{
  content:"05";
  display:inline-block;
}

.up-col-2>div:nth-child(6) .solution-tag .slnum::before{
  content:"06";
  display:inline-block;
}



.solution-tit {
    color: #376fbc;
    font-weight: bold;
}

.solution-tit>span {
    background: linear-gradient(transparent 50%, #fabc02 50%);
}

@media(max-width:1024px) {
.solution-tag{
  font-size:26px;
 position: relative;
  padding: 5px 0 5px 65px;
  border-bottom: 3px solid #4d4d4d;
  font-weight:bold;
  color: #4d4d4d;
}
}

.solution-tag.for-sp {
    font-size: 22px;
}


.faq-box {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.faq-inner {
    padding: 30px 55px 30px 30px;
    position: relative;
}

.faq-box.pattern-01 .faq-inner {
    padding: 30px 30px 30px 30px;
}

.faq-list .faq-box .faq-inner .text {
    font-size: 18px;
    color: #777;
    padding-left: 35px;
    position: relative;
}

.faq-list .faq-box .faq-inner span {
    font-size: 22px;
    color: #376fbc;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 25px;
}

.faq-box .ans {
    display: none;
    padding: 30px;
    background: #f9f9f9;
    color: #777;
}

.faq-box.pattern-01 .ans {
    display: block;
}

.faq-box .ans span {
    font-size: 20px;
    color: #376fbc;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    position: absolute;
    top: 0;
    left: 0;
}

.faq-box .ans .text {
    color: #777;
    position: relative;
    padding-left: 35px;
    font-size: 16px;
}

.plus::before,
.plus::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 5px;
    background: #376fbc;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.plus::after {
    background: #376fbc;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.plus.is-parent::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.blog .img {
    position: relative;
}

.blog .date {
    background: #376fbc;
    color: #fff;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0.5rem;
    font-size: 13px;
}

.blog .zoom-in-img a {
    display: block;
    background-color: #f8f8f8;
}

.blog .zoom-in-img a:hover {
    opacity: 1;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
    position: relative;
    z-index: 1;
}

.blog.mainblog .zoom-in-img a {
    display: block;
    background-color: #fff;
    overflow: hidden;
    border-radius: 5px;
    height:100%;
}

@media (max-width: 599px) {

    .faq-list .faq-box .faq-inner div,
    .faq-box .ans .text {
        font-size: 14px;
    }

    .faq-list .faq-box .faq-inner span,
    .faq-box .ans span {
        line-height: 20px;
    }

    .faq-inner {
        padding: 20px 55px 20px 20px;
        position: relative;
    }
}


@media (max-width: 1024px) {
    .new-sp-slider .btn-slick {
        left: 80%;
    }
}

@media (max-width: 599px) {
    .new-sp-slider .btn-slick {
        font-size: 18px;
        left: 65%;
    }
}

.slick-arrow {
    position: absolute;
    top: -40%;
    left: 89%;
    background: #376fbc;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 1;
    border-radius: 5px;
}

.btn-next.slick-arrow {
    right: 0;
    left: initial;
}

/*sp時限定slick用*/
.new-sp-slider {
    position: relative;
}

.new-sp-slider>* {
    opacity: 1 !important;
}

.new-sp-slider>.slick-list.draggable {
    width: 100% !important;
}

.new-sp-slider .btn-slick {
    top: -70px;
}

.new-sp-slider .fa-arrow-left.btn-back {
    left: 0;
    right: auto;
}

.bgwave {
    position: relative;
}

.bgwave>* {
    position: relative;
    z-index: 2;
}

.bgwave::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-size: 100% auto;
    background-image: url('/import/tenant_4/unison-planet.net/cs/client-check/creator/UGC_NEW/images/blue-wave.webp');
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.cyber {
    position: relative;
}

.cyber>* {
    position: relative;
    z-index: 2;
}

/*.cyber::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background-position: right top;
    background-size: 100% auto;
    background-image: url('/import/tenant_4/unison-planet.net/cs/client-check/creator/UGC_NEW/images/web.webp');
    background-repeat: no-repeat;
    opacity: 0.3;
}

.cyber::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 50%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-position: right top;
    background-size: 100% auto;
    background-image: url('/import/tenant_4/unison-planet.net/cs/client-check/creator/UGC_NEW/images/web.webp');
    background-repeat: no-repeat;
    opacity: 0.3;
    transform: rotate(180deg);
}

@media(max-width:599px) {
    .cyber::before {
        width: 100%;
        height: 100%;
    }

    .cyber::after {
        width: 100%;
        height: 100%;
    }
}

.new-flow {
    position: relative;
}*/

.cyber::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-position: right;
    background-size: 100% auto;
    background-image: url(/upload/tenant_4/bg-newone.webp);
}

.new-flow::after {
    content: "";
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    bottom: -43px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('/upload/tenant_4/down_1.webp');
    background-size: 100% 100%;
}

.new-flow:last-child::after {
    display: none;
}

@media(Max-width:599px) {
    .new-flow::after {
        width: 25px;
        height: 25px;
        bottom: -33px;
    }
}

/* price */
.index-price-list .item-inner {
    padding: 30px;
}

.index-price-list .item01 {
    background-color: #f8f8f8;
    border-radius: 5px;
}

.index-price-list .item02 {
    background-color: #5a94d2;
    border-radius: 5px;
}

.tit02>img {
    height: 1.3em;
    margin-right: 5px;
}

.index-price-list .item .p-tit {
    font-size: 20px;
    border-radius: 100px;
    background: #5a94d2;
    color: #fff;
    text-align: center;
    -webkit-transform: rotateZ(0.03deg);
    transform: rotateZ(0.03deg);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: 100%;
    margin: 30px auto 0;
}

.index-price-list .item .p-price {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-top: 5px;
    color: #4d4d4d;
}

.index-price-list .item .p-txt {
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    -webkit-transform: rotateZ(0.03deg);
    transform: rotateZ(0.03deg);
    font-weight: 600;
    color: #4d4d4d;
}


.flexbtn {
    width: 120px;
    height: 120px;
    display: inline-block;
}

.flexbtn>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 15px;
    text-align: center;
    line-height: 1.1em;
    color: #fff;
    border-radius: 50%;
    overflow: hidden;
    font-weight: bold;
}

.flexbtn>a:hover {
    opacity: 1;
    box-shadow: 0px 2px 5px #444;
    transform: scale(1.1);
}

.flexbtn>a>i {
    display: inline-block;
    font-size: 2em;
    margin-bottom: 5px;
}

.flexbtn.c01>a {
    background-color: #b7d200;
}

.flexbtn.c02>a {
    background-color: #20b7bc;
}

.flexbtn.c03>a {
    background-color: #fabc02;
}

.indent01 {
    text-indent: -1em;
    padding-left: 1em;
    margin: 1em 0;
}

.indent02 {
    font-size: 14px;
    text-indent: -1.5em;
    padding-left: 3em;
    margin: .5em 0;
}

.cp-name {
    width: 100%;
    color: #20b7bc;
    font-weight: bold;
    position: absolute;
    left: 10px;
    top: 10px;
}

.pager {
    width: 100%;
    margin: 50px 0 0 0;
}

.pager-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pager-list li {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    border-radius: 5px;
    overflow: hidden;
}

.pager-list li a,
.pager-list li .now {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px;
    font-size: 20px;
    line-height: 1;
    border-radius: 0;
    position: relative;
}

.pager-list li a a:hover,
.pager-list li .now a:hover {
    color: inherit;
    background-color: #5a94d2;
    opacity: 1;
}

.pager-list li a:focus,
.pager-list li .now:focus {
    outline: none;
}

.pager-list li a:hover,
.pager-list li .now {
    color: white;
    background-color: #5a94d2;
    opacity: 1;
}

.pager-list .arrow a::before {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #5a94d2;
}

.pager-list .arrow.-prev a::before {
    content: "\f053";
}

.pager-list .arrow.-next a::before {
    content: "\f054";
}

.pager-list .arrow a:hover::before {
    color: #fff;
}

@media (max-width: 1024px) {
    .pager {
        margin: 30px 0;
    }

    .pager-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .pager-list li {
        margin: 0 5px;
    }
}



.fixed-btn.mk2 {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 1000px;
    max-width: 90%;
    z-index: 99;
    background-color: #777;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    border: 5px solid #fff;
    border-bottom: none;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    transition: .4s;
}

.scroll-top .fixed-btn.mk2 {
    transform: translateX(-50%) translateY(80px);
}

.scroll-end .fixed-btn.mk2 {
    transform: translateX(-50%) translateY(80px);
}

.fixed-btn.mk2>.fixbtn{
  width:35%;
}

.fixed-txt{
  width:25%;
  font-size:14px;
  color:#fff;
  text-align:center;
  line-height:1.5em;
  min-width:230px;
}

.fixed-txt>div{
  font-size:22px;
  font-weight:bold;
  color:#fff;
  line-height:1em;
  color:#fabc02;
}



.mk2 .fixbtn>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
}

.mk2 .fixbtn>a:hover {
    opacity: 1;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.mk2 .fixbtn>a>i {
    font-size: 20px;
    margin-right: 10px;
}

.mk2 .fixbtn.c01>a {
    background-color: #b7d200;
}

.mk2 .fixbtn.c02>a {
    background-color: #20b7bc;
}

.mk2 .fixbtn.c03>a {
    background-color: #fabc02;
}

.type-btn {
    width: 200px;
    text-align: center;
}

.type-btn>a {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

.type-btn>a:hover {
    opacity: 1;
    box-shadow: 0px 2px 5px #444;
    transform: scale(1.1);
}

.type-btn:nth-child(1)>a {
    background-color: #b7d200;
}

.type-btn:nth-child(2)>a {
    background-color: #20b7bc;
}

.type-btn:nth-child(3)>a {
    background-color: #fabc02;
}

.type-btn:nth-child(4)>a {
    background-color: #376fbc;
}

.mini-date {
    color: #777;
    font-weight: bold;
}

.c-logobox {
    width: 400px;
    max-width: 100%;
    color: #777;
}

.c-info {
    width: calc(100% - 400px);
    padding-left: 60px;
}

.solution-box.white-block.ver-n{
  padding:0;
}

.solution-box.white-block.ver-n>a{
  padding:30px;
}

@media(Max-width:1024px) {
    .type-btn {
        width: 34%;
        margin: 10px;
    }

    .fixed-btn.mk2 {
        padding: 15px 5px;
    }

    .mk2 .fixbtn>a>i {
        font-size: 18px;
        margin-right: 5px;
    }
}

@media(Max-width:599px) {
    .type-btn {
        width: 40%;
        margin: 10px;
    }
    
    .fixed-btn.mk2{
      flex-wrap:wrap;
    }
    
    .fixed-btn.mk2>.fixbtn {
    width:auto;;
    min-width:240px;
}

    .fixed-btn.mk2 {
        padding: 15px 5px;
        display: none !important;
    }
    
    .solution-box.white-block.ver-n>a{
  padding:30px 10px;
}
}

.contents-area h2 {
    line-height: 1.4;
    background-color: #20b7bc;
    color: #fff;
    padding: 1rem;
    position: relative;
    margin: 3rem 0 1rem;
    font-weight: 500;
    font-size: 22px;
}

.contents-area h3 {
    line-height: 1.4;
    font-weight: 600;
    padding: 0.6em;
    border-left: 10px solid #20b7bc;
    margin: 3rem 0 1rem;
    font-size: 20px;
}

.contents-area h4 {
    font-size: 18px;
    font-weight: 600;
    padding: 0.4em;
    border-bottom: 2px solid #20b7bc;
    margin: 3rem 0 1rem;
}

.contents-area ul li {
    position: relative;
    padding-left: 1.2em;
}

.contents-area ul li::before {
    content: "■";
    color: #20b7bc;
    position: absolute;
    top: 0;
    left: 0;
}

.contents-area ol li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    list-style-type: none;
    counter-increment: cnt;
}

.contents-area ol li::before {
    content: ""counter(cnt)".";
    margin-right: 10px;
    font-weight: bold;
    font-size: 150%;
    color: #20b7bc;
}

.contents-area iframe[src*="youtube"] {
    aspect-ratio: 16 / 9;
    margin-top: 1em;
    margin-bottom: 1em;
    width: 100%;
    height: 100%;
}


@media(max-width:599px) {
    .contents-area h2 {
        font-size: 20px;
    }

    .contents-area h3 {
        font-size: 18px;
    }

    .contents-area h4 {
        font-size: 16px;
    }
}





.formlist dl+* {
    margin-top: 30px;
}

.formlist dt.require:after {
    content: "必須";
    color: red;
    font-size: 70%;
    margin-left: 0.5em;
}

.formlist dt {
    width: 220px;
    font-size: 16px;
    color: #4d4d4d
}


.formlist dd {
    width: calc(100% - 250px);
    font-size: 16px;
}



.formlist input[type=text],
.formlist textarea {
    width: 100%;
    padding: .7em .5em;
    border: 2px solid #5a94d2;
    border-radius: 3px;
}

.formlist textarea {
    height: 200px;
}

.formlist input[type=radio] {
    margin-right: 5px;
}

.formlist input[type=radio]+* {
    margin-right: 15px;
}

.formlist dl+* {
    margin-top: 30px;
}

@media (max-width: 599px) {
    .formlist dd {
        width: 100%;
    }

    .formlist dt {
        width: 100%;
        margin-bottom: 5px;
    }
    
    #main{
      padding:0 10px;
    }

}

.selectbox-2 {
    position: relative;
    display: inline-block;
}

.selectbox-2::before,
.selectbox-2::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.selectbox-2::before {
    right: 0;
    display: inline-block;
    width: 2.8em;
    height: 2.8em;
    border-radius: 0 3px 3px 0;
    background-color: #5a94d2;
    content: '';
}

.selectbox-2::after {
    position: absolute;
    top: 1.1em;
    right: 1.1em;
    transform: rotate(45deg);
    width: 9px;
    height: 9px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
}

.selectbox-2 select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 320px;
    height: 2.8em;
    padding: .4em 3.6em .4em .8em;
    border: 2px solid #5a94d2;
    border-radius: 3px;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}

.selectbox-2 select:focus {
    outline: 1px solid #5a94d2;
}

button {
    border: none;
}

[data-element-id]#header{
  position:relative;
}

[data-element-id]#header .inner{
 width: 96vw;
    margin-left: auto;
    margin-right: auto;
    max-width: 1900px;
}

[data-element-id] .up-show\@tb,
[data-element-id] .up-show\@sp{
  max-width:375px;
  margin-left:auto;
  margin-right:auto;
}

[data-element-id] .up-show\@sp.tks{
  max-width:800px;
}

[data-element-id].nav-list{
  flex-wrap:wrap;
  align-items: flex-start;
}

[data-element-id].drop-switch{
  width:300px;
  visibility: visible;
}

[data-element-id].drop-switch .drop-menu {
    visibility: visible;
    opacity: 1;
    position:relative;
    top:0;
    left:0;
    transform:translate(0,0);
}

[data-element-id].fixed-btn.mk1{
  position:relative;
  bottom:0;
}

[data-element-id].mk1 .fixbtn {
    width: 150px;
    height:150px;
}

[data-element-id].fixed-btn.ftr {
    position: relative;
}

[data-element-id].ftr .fixbtn.c01,
[data-element-id].ftr .fixbtn.c02, 
[data-element-id].ftr .fixbtn.c03 {
    width:auto;
    flex-grow:0;
    flex:1;
}

[data-element-id].slider-jirei>div{
  width:9000px;
  display:flex;
  overflow-x: hidden;
}

[data-element-id].slider-jirei .jirei-item{
  width:300px;
  margin:0 20px;
}

[data-element-id].fixed-btn.mk2{
  position:relative;
}

[data-element-id].fixbtn.tel2.c03>a{
  display:flex;
  flex-wrap:wrap;
}

[data-element-id].img-item01{
  padding:60px 20px;
}
[data-element-id].img-item01>a{
  padding:0px;
}

[data-element-id].img-item02{
padding:60px 20px;
}

[data-element-id].img-item02>span,
[data-element-id].img-item02>a{
padding:0;
}

[data-element-id].tit02.up-ta-c.up-fz-20.up-show.up-mt-10{
  padding-bottom:40px
}

[data-element-id].tit02.up-ta-c.up-fz-20.up-show.up-mt-10::after{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
}

[data-element-id] .faq-box .ans {
    display: block!important;
    padding: 30px;
    background: #f9f9f9;
    color: #777;
}

.up-fz-20{
  font-size:23px;
}
