@charset "UTF-8";
/* service privacy_env CSS */
.sec-privacy_env {
    container-type: inline-size;
    container-name: privacy_env;
}

.wht-box.has-bottom{
    border-radius: 10px 10px 0 0;
}
.wht-box.has-top{
    border-radius: 0 0 10px 10px;
}

.newitem-info{
    gap: 20px;
    align-items: center;
    background-image: linear-gradient(115deg, #eaeaea 60%, #f57e10 60%);
    border-top: 3px solid #f57e10;
    border-bottom: 3px solid #f57e10;
    padding: 15px 25px;
    margin: 40px auto;
    width: 90%;
    max-width: 800px;
}
.info-leftcont{
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px -20px #000;
    position: relative;
}
.info-leftcont::before{
    content: "";
    display: block;
    width: 20px;
    height: 30px;
    background-color: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 50%;
    left: calc(100% - 1px);
    transform: translateY(-50%);
}
.newitem-ttl{
    color: #f57e10;
    padding-bottom: 10px;
    border-bottom: 1px solid #f57e10;
    margin-bottom: 15px;
}
.info-rightcont{
    width: 40%;
    min-width: 280px;
}

@container privacy_env (max-width:700px){
    .info-leftcont {
        padding: 25px 20px;
    }
}

@container privacy_env (max-width:650px){
    .newitem-info {
        gap: 25px;
        justify-content: center;
    }
    .info-leftcont {
        flex: auto;
    }
    .info-leftcont::before {
        width: 35px;
        height: 15px;
        clip-path: polygon(0 0, 100% 0%, 50% 100%);
        top: calc(100% - 1px);
        left: 50%;
        transform: translateX(-50%);
    }
}

@container privacy_env (max-width:400px){
    .newitem-info {
        padding: 15px;
        width: 100%;
    }
}

.worries-txt{
    gap: 8px;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
}
.worries-txt>li{
    background-color: #c5d8e2;
    padding: 15px 30px;
    border-radius: 100px;
}

.worries-txt>li:nth-child(odd){
    margin-bottom: 10px;
}
.worries-txt>li:nth-child(even){
    margin-top: 10px;
}

.worries-img{
    justify-content: center;
}
.worries-img>li{
    width: 120px;
}

.solution-ttlarea{
    background-color: #ffdb47;
    padding: 35px 30px 0;
    position: relative;
}
.solution-ttlarea::before{
    content: "";
    display: block;
    width: 60px;
    height: 20px;
    background-color: #fff;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}
.bg-marker-wht{
    background: linear-gradient(transparent 0%, #fff 0%);
    padding: 0 3px;
}
.solution-img{
    display: flex;
    justify-content: center;
}

.solution-txtarea{
    padding: 15px 30px;
    background-color: #fffbc9;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.solution-list{
    gap: 10px;
    justify-content: center;
}
.solution-list>li{
    background-color: #ffc630;
    padding: 5px 15px;
    border-radius: 5px;
}

.solution-list>li::before{
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    font-weight: 900;
    color: #fff;
    padding-right: 5px;
}

@container privacy_env (max-width:800px){
    .worries-txt {
        max-width: 480px;
        margin: 0 auto;
    }
}

@container privacy_env (max-width:550px){
    .worries-img>li:nth-last-of-type(even) {
        display: none;
    }
    .worries-txt {
        gap: 5px 10px;
    }
    .worries-txt>li:nth-child(odd) {
        margin-bottom: 5px;
    }
}

@container privacy_env (max-width:400px){
    .worries-txt>li {
        padding: 10px 20px;
    }
}

.feature-list>li{
    flex: 1;
    padding-right: 15px;
    border-right: 1px solid #94cacf;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
}
.feature-list>li:last-child{
    padding-right: 0;
    border-right: none;
    margin-right: 0;
}
.feature-txt{
    flex: 1;
}
.feature-num{
    color: #329aa3;
}

@container privacy_env (max-width:650px){
    .feature-list>li {
        width: 100%;
        flex: auto;
        padding-right: 0;
        border-right: none;
        margin-right: 0;
        padding-bottom: 15px;
        border-bottom: 1px solid #94cacf;
        margin-bottom: 15px;
    }
    .feature-list>li:last-child {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }
}

.compare-table-wrap{
    padding: 10px;
    margin: 0 auto;
    max-width: 720px;
    position: relative;
    overflow-x: auto;
    z-index: 1;
}
.compare-table-wrap::before,
.compare-table-wrap::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: -1;
}
.compare-table-wrap::before{
    left: 0;
    background-color: #f5f5f5;
}
.compare-table-wrap::after{
    right: 0;
    background-color: #fff7d8;
}
.compare-table{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0 3px;
    text-align: center;
}
.compare-table th,
.compare-table td{
    padding: 5px 10px;
}
.compare-table tr.img td{
    padding: 10px 0 10px 20px;
}
.compare-table tr:first-child th{
    font-weight: 700;
    font-size: 95%;
    padding: 0px 10px;
}
.compare-table tr.item-row th{
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 3px 0 0;
}
.compare-table tr.item-row th span{
    background-color: #fff;
    padding: 2px 10px;
    border-radius: 30px;
}
.compare-table tr:not(:first-child):not(.item-row) td:last-child{
    background-color: #ffeda1;
    color: #f08000;
    font-weight: 700;
    border-radius: 0 10px 10px 0;
}

.compare-table tr:not(:first-child):not(.item-row) td:first-child{
    background-color: #ddd;
    color: #555;
    font-weight: 500;
    border-radius: 10px 0 0 10px;
}

.scene-list{
    gap: 10px;
}
.scene-list>li{
    width: calc(25% - 7.5px);
    background-color: #d6ebec;
    padding: 30px 10px 20px;
    border-radius: 10px;
    position: relative;
}
.scene-icon {
    width: 25px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.sp-only-scene{
    display: none;
}

@container privacy_env (max-width:650px){
    .scene-list>li {
        width: calc(50% - 5px);
    }
    .sp-only-scene{
        display: block;
    }
}

.faq-item>dt{
    color: #329aa3;
    font-weight: bold;
    line-height: 1.4;
    text-indent: -1.5em;
    padding-left: 1.5em;
    border-bottom: 1px solid #b7dde0;
    margin-bottom: 5px;
}
.faq-item>dt::before{
    content: "Q.";
    font-size: 110%;
    font-family: "Jost", sans-serif;
}
