@charset "utf-8";

/* -------------------------------------------------- 
 * security_page.css
 * 
 * セキュリティ対策ページ用CSS
 * ※第1階層フォルダごとに読み込ませるCSSを分けて作成
-------------------------------------------------- */

/* --------------------------------------

共通要素

----------------------------------------- */
/* --------------------------------------
link
----------------------------------------- */
.cb-cubelogo {
    display: none!important;
}
p a,
p a:link,
p a:visited,
p a:active
{
    color: var(--u-color__blue);
    text-decoration: underline;
}
.p-application-area p a,
.p-application-area p a:link,
.p-application-area p a:visited,
.p-application-area p a:active
{
    color: #6EA1D7;
    text-decoration: underline;
}
/* --------------------------------------
text
----------------------------------------- */
p {
    font-size: var(--u-text__r);
    margin: 0;
    line-height: 1.75;
    text-align: justify;
}
.p-firstview p,
.p-application-area p,
.p-environment-area p,
.p-people-area p {
    color: var(--u-color__light_gray);
}
h2 {
    font-size: var(--u-text__xl);
    margin: 0;
    letter-spacing: 0.1em;
    line-height: 1.9;
    text-align: center;
}


.p-application-area h2,
.p-environment-area h2,
.p-people-area h2 {
    color: #fff;
}
h3 {
    font-size: var(--u-text__l);
    margin: 0;
    letter-spacing: 0.1em;
    line-height: 1.9;
}
.p-application-area h3,
.p-environment-area h3,
.p-people-area h3 {
    color: #fff;
}
h4 {
    font-size: var(--u-text__m);
    margin: 0;
    letter-spacing: 0.1em;
    line-height: 1.75;
}
.p-application-area h4,
.p-environment-area h4,
.p-people-area h4 {
    color: #fff;
}
/* .p-security__heading 見出しエリア内 */

.p-security__heading h2 img {
    display: flex;
    height: 45px;
    width: auto;
    margin: 0 auto;
}
.p-security__heading h4 {
    margin: 8px auto 0 auto;
}
.p-people-area .p-security__heading h4 {
    margin: 10px -5px 0 25px;
}
.p-security__heading p {
    font-size: var(--u-text__m);
    letter-spacing: 0.1em;
    margin: 35px 0 0px 0;
}
@media (min-width:768px){
    h2 {
        text-align: left;
    }
    .p-security__heading p {
        text-align: left;
    }
    .p-people-area .p-security__heading p {
        text-align: center;
    }
    .p-security__heading h2 img {
        display: flex;
        height: 55px;
        width: auto;
        margin: 0 ;
    }
    .p-security__heading h4 {
        margin: 18px -5px 0 25px;
    }
}
/* --------------------------------------
layout
----------------------------------------- */
/* 
レイアウトユニット
 */
.l-section-padding {
    padding: var(--u-length__xl) 0;
}
/* boderのあしらい */
.l-unit__horizontal {
    padding-left: var(--u-length__s);
    border-left: 6px solid #fff;
}
.l-unit__vertical {
    padding-bottom: var(--u-length__xs);
    border-bottom: 6px solid #fff;
}
@media (min-width:768px){
}
.l-width__pc60per {
    width: 100%;
}
.l-width__100per {
    width: 100%;
}
@media (min-width:768px){
    .l-width__pc60per {
        width: 60%;
    }
}
.l-unit__image {
    width: 100%;
    height: auto;
    margin-top: var(--u-length__s);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.l-unit__image img{
    width: 100%;
    object-fit: contain;
    aspect-ratio: 16 / 9;
    background: #fff;
}
@media (min-width:768px){
    .l-unit__image {
        width: 33%;
        margin-top: 0;
    }
}
/* list */
.l-border-container {
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 15px;
    width: 100%;
}
.l-border-container .l-border-container {
    padding: 10px;
    margin: 8px 0 11px 0;
}
@media (min-width:768px){
    .l-border-container {
        border-radius: 6px;
        padding: 30px;
    }
    .l-border-container .l-border-container {
        padding: 15px;
        margin: 10px 0 0px 0;
    }
}
.l-security__list > li {
    position: relative;
    line-height: 2.3;
    margin: 0 15px 0 35px;
}
.l-security__list > li::before {
    font-family: 'Material Symbols Outlined';
    content: "verified_user";
    font-size: 3rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    position: absolute;
    left: -1.2em;
    top: -0.48em;
}
.l-border-container .l-border-container li {
    position: relative;
    line-height: 2;
    margin: 0 15px 0 40px;
    font-size: var(--u-text__s);
}
.l-border-container .l-border-container li:before {
    font-family: 'Material Symbols Outlined';
    content: "navigate_next";
    font-size: 3rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    position: absolute;
    left: -1.2em;
    top: -0.48em;
}
/* flex box container */
.l-2-column {
    width: 100%;
}
.l-3-column {
    width: 100%;
}
@media (min-width:768px){
    .l-2-column {
        width: calc(100% / 2 - 8px)!important;
    }
    .l-3-column {
        width: calc(100% / 3 - 8px)!important;
    }
}
/* flex box */
.l-flex-column {
    display: flex;
    flex-direction: column;
}
.l-flex-row {
    display: flex;
    flex-direction: column;
}
.l-space-between {
    justify-content: space-between!important;
}
.l-space-around {
    justify-content: space-around!important;
}
.l-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.l-justify-center {
    justify-content: center!important;
}
.l-align-center {
    align-items: center!important;
}
.l-align-stretch {
    align-items: stretch!important;
}
.l-align-start {
    align-items: flex-start!important;
}

.c-button a:not(:first-child) {
    margin: 8px 0 0 0;
}
@media (min-width:768px){
    .l-flex-row {
        flex-direction: row;
    }
    .c-button a:not(:first-child) {
        margin: 0 0 0 0;
    }
}
/* --------------------------------------
p-firstview
----------------------------------------- */

.p-firstview {
    background: var(--u-gradation__05);
    padding: 120px 0 60px 0px;
    position: relative;
    z-index: 0;
}
.p-firstview::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    background-image: var(--u-gradation__05_reverse);
    clip-path: polygon(0 0, 100% 0, 20% 100%, 0% 100%);
    z-index: -1;
}
.p-firstview::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background-image: var(--u-gradation__05_reverse);
    clip-path: polygon(100% 0, 0 0, 100% 45%);
    z-index: -1;
    opacity: 0.5;
}
.p-firstview .l-inner {
    z-index: 2;
}
.p-firstview__heading {
    order: 2;
}

.p-firstview h2 img{
    width: 87%;
    margin: 5px 0 20px 0;
    height: auto;
}
.p-firstview__heading p {
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin: 15px 15px 20px 15px;
}

.p-firstview__mainvisual {
    width: 77%;
    order: 1;
}
.p-firstview__mainvisual img {
    filter: brightness(128%) contrast(97%) saturate(135%);
}
.p-firstview__points {
    width: 100%;
    margin: 0 0 0 0px;
}
.p-firstview__points li {
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: var(--u-text__m);
    font-weight: bold;
    position: relative;
    margin: 0 0 12px 0;
    padding: 8px 0;
}
.p-firstview__points li::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4b608a;
    background: linear-gradient(-115deg, #203852 0%, #4a5e83 100%);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-size: var(--u-text__m);
    font-weight: bold;
    opacity: 0.5;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
    z-index: -1;
}
.p-line { /* 縦ライン */
    width: 1px;
    height: 50px;
    margin: 0 auto ;
    position: relative;
    display: block;
    overflow: hidden;
}
.p-line__inner { 
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, #fff);
    animation: line_animation 1s linear infinite;
}
@keyframes line_animation {
    0% {
      transform: translateY(-100%);
    }
  
    100% {
      transform: translateY(100%);
    }
}
.p-weakness {
    width: 100%;
    bottom: 0;
    padding: 25px 20px;
    background: #eee;
    text-align: justify;
}

.p-weakness p{
    color: #000;
}
@media (min-width:1000px){
    .p-firstview {
        padding: var(--u-length__xl) 0;
    }
    .p-firstview__heading {
        order: 1;
    }
    .p-firstview h2 img{
        width: 55%;
    }
    .p-firstview__heading p {
        font-size: 16px;
        line-height: 2;
        margin: 15px 0 0 0;
        order: none;
    }
    .p-firstview__mainvisual {
        width: 30%;
        order: 2;
    }
    .p-firstview__points {
        width: calc(100% + 40px);
        margin: 0 0 0 -20px;
    }
    .p-firstview__points li {
        width: calc(100% / 5 - 10px);
        height: 120px;
        margin: 0;
    }
    .p-weakness {
        padding: 0.8em 0;
        background: #eee;
    }
    .p-weakness p{
        text-align: center!important;
    }
}
/* --------------------------------------
p-application
----------------------------------------- */

.p-application-area {
    background: var(--u-color__blue);
    position: relative;
    z-index: 0;
}
.p-application-area .p-diagnose ul li {
    width: 100%;
    padding: 0.8em 0;
    background: #fff;
    color: var(--u-color__blue);
    text-align: center;
    font-weight: bold;
}
.p-application-area .p-diagnose ul li:not(:first-child) {
    margin-top: var(--u-length__xs);
}
/* セキュリティ強化機能 */
.p-security-function {
    color: #fff;
}
.p-application-unit__03 .l-flex-row {
    flex-direction: column-reverse;
}
.p-application-unit__03 img {
    width: 80%;
    height: auto;
    margin: 20px auto 20px auto;
}
.p-application-area .c-button__04 a { /* 「白色」のボタン　*/
    color: var(--u-color__blue);
}
@media (min-width:768px){
    .p-application-area .p-diagnose ul li:not(:first-child) {
        margin-top: 0;
    }
    .p-application-unit__03 .l-flex-row {
        flex-direction: row;
    }
    .p-application-unit__03 img {
        width: 30%;
        height: auto;
        margin: 0;
    }
}
/* --------------------------------------
p-environment
----------------------------------------- */

.p-environment-area {
    background: var(--u-color__green);
    position: relative;
    z-index: 0;
}
.l-triangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 55vw;
    height: calc(600 / 1310 * 55vw);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
    opacity: 0.8;
}
.p-environment-area .l-triangle {
    opacity: 1;
}
.l-triangle img{
    width: auto;
    height: 100%;
    position: absolute;
    right: 0;
}
.p-environment-area .p-security__heading h2 img {
    height: 35px;
}
.p-environment-area .p-security__heading h4 {
    margin: 18px auto 0 auto;
}
.p-environment-area .l-inner {
    z-index: 1;
}
.p-box__container {
    flex-wrap: wrap;
    align-items: stretch;
}
.p-environment-area .p-box h4 {
    color: var(--u-color__green);
}
.p-environment-area .p-box h4 span {
    color: #666;
}
.p-box {
    background: #fff;
    width: 100%;
    height: auto;
    padding: 15px;
    margin-bottom: 24px;
    border-radius: 6px;
}
.p-box__contents {
    align-items: center;
}
.p-environment-unit__01 .p-box__contents {
    flex-direction: row;
}
@media (min-width:768px){
    .p-environment-area .p-security__heading h2 img {
        height: 45px;
    }
    .p-environment-area .p-security__heading h4 {
        margin: 18px 0 0 25px;
    }
    .p-box {
        width: calc(100% / 3 - 16px);
    }
}
/* icons */
.p-box__icon {
    height: 100px;
    width: 28%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.p-box__icon img {
    width: 100%;
    height: auto;
}
.p-environment-area .p-box .material-symbols-outlined {
    font-size: 8.5rem;
}
.p-environment-area .p-box_01 .p-box__icon img {
    width: 65%;
    margin: 0 7px 0 0;
}
.p-environment-area .p-box_02 .material-symbols-outlined { 
    color: #6898c9; }
.p-environment-area .p-box_03 .p-box__icon  { width: 22%; }
.p-environment-area .p-box_04 .p-box__icon  { width: 22%; }
.p-environment-area .p-box_05 .p-box__icon img { width: 95%; }
.p-environment-area .p-box_06 .p-box__icon  { width: 31%; }
.p-environment-area .p-box_07 .p-box__icon  { width: 31%; }
.p-environment-area .p-box_08 .p-box__icon img { width: 90%; }
.p-environment-area .p-box_09 .p-box__icon  { width: 31%; }

.p-box p {
    color: #000;
}
.p-environment-area .c-button__04 a { /* 「白色」のボタン　*/
    color: var(--u-color__green);
}
.p-environment-area .p-box_08 .c-button .l-2-column {
    width: 100%;
}
.p-environment-unit__02 .l-border-container {
    padding-right: 13%;
    color: #fff;
}
.p-environment-unit__02 .l-unit__image,
.p-more-measures-unit__03 .l-unit__image,
.p-more-measures-unit__04 .l-unit__image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.p-more-measures-unit__03 .l-unit__image,
.p-more-measures-unit__04 .l-unit__image {
    border: 1px solid #bbb;
}
.p-more-measures-unit__03 .l-unit__image {
    background: var(--u-gradation__03);
}
.p-environment-unit__02 img,
.p-more-measures-unit__04 img {
    width: 60%;
    height: auto;
}
.p-more-measures-unit__03 img {
    width: 68%;
    height: auto;
    background-color: unset;
    filter: var(--u-drop-shadow__02);
}
.p-environment-unit__03 .l-flex-row {
    flex-direction: column-reverse;
}
.p-environment-unit__03 .l-unit__image {
    margin: 0 0 15px 0;
}
.p-environment-area p a, 
.p-environment-area p a:link, 
.p-environment-area p a:visited, 
.p-environment-area p a:active {
    color: #fff;
}
@media (min-width:768px){
    .p-environment-area .p-box_08 .c-button .l-2-column {
        width: calc(100% / 2 - 4px)!important;
    }
    .p-environment-unit__03 .l-flex-row {
        flex-direction: row;
    }
    .p-environment-unit__03 .l-unit__image {
        margin: 0;
    }
}
/* --------------------------------------
p-people
----------------------------------------- */

.p-people-area {
    position: relative;
    background: var(--u-color__cyan);
}
.p-people-bg {
    background: var(--u-color__cyan);
}
/* 上段 */
.p-people-triangle01 {
    width: 100%;
    height: 700px;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--u-color__cyan);
    z-index: -1;
}
.p-people-area .p-box h4 {
    color: var(--u-color__cyan);
}
.p-people-unit__01 .p-box:not(:last-child) img {
    border: 1px solid #aaa;
}
@media (min-width:768px){
    .p-people-area {
        background: unset;
    }
}

/* 中段（動画とSNS） */
.p-sns {
    margin: 0px 0 75px 0;
}
.p-sns div {
    padding: 0 15px;
    height: 30px;
}
.p-sns > div:not(:last-child) {
    border-right: 1px solid #fff;
}
.p-youtube a {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.p-youtube p {
    font-size: var(--u-text__s);
    font-weight: bold;
}
.p-youtube p span {
    font-size: var(--u-text__xs);
    font-weight: normal;
}
.p-youtube svg {
    position: absolute;
    width: 37px;
    height: 30px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
}
.p-youtube a div {
    position: relative;
    margin: 0 var(--u-length__xs) 0 0;
    z-index: 0;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.p-twitter svg,
.p-facebook svg {
    width: auto;
    height: 100%;
}
.p-people-unit__02 {
    margin: 20px 0 0 0;
}
.p-people-unit__02 video{
    position: unset;
    width: 100%;
    height: auto;
    min-width: 100%;
    background-size: cover;
    z-index: -2;
    margin: var(--u-length__m) 0;
    background-color: #eee;
    display: none;
}
@media (min-width:768px){
    .p-people-unit__02 .l-flex-row {
        flex-direction: row;
    }
    .p-sns {
        margin: 0;
    }
    .p-sns div:not(:first-child) {
        padding: 0 50px;
    }
    .p-sns div {
        height: 50px;
    }
    .p-youtube svg {
        width: 46px;
        height: 39px;
    }
    .p-youtube a {
        margin: 0 15px 0 0;
    }
    .p-youtube a div {
        position: relative;
        margin: 0 var(--u-length__xs) 0 0;
        z-index: 0;
        background: #fff;
        width: 65px;
        height: 65px;
        border-radius: 50%;
    }
    .p-twitter svg,
    .p-facebook svg {
        width: auto;
        height: 85%;
    }
    .p-people-unit__02 video{
        position: fixed;
        top: 0;
        left: 0;
        width: auto;
        height: auto;
        min-width: 100%;
        background-size: cover;
        z-index: -2;
        margin: 0;
        display: block;
    }
}
/* 下段 */
.p-people-area_02 {
    position: relative;
    padding-top: 0px;
}
.p-people-unit__02 > .l-inner > .l-flex-row {
    flex-direction: row;
}
.p-people-area_02 .p-people-bg:first-child {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1320px;
    z-index: -1;
}
/* .p-partner-logo-area */
.p-partner-logo-area .l-flex-row:not(.c-button) {
    flex-direction: row;
}
.p-partner-logo-area {
    background: #fff;
    padding: 8px;
    border-radius: 4px;
    z-index: 1;
}
.p-people-unit__03 p {
    text-align: justify;
}
.p-partner-logo-area ul {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.p-partner-logo-area ul li {
    width: 33%;
    text-align: center;
}
.p-partner-logo-area ul li img {
    max-width: 65%;
    margin: 10px 0;
}
/* .p-isms-area */
.p-people-unit__04 {
    padding: 0 ;
}
.p-isms-area .l-basic-list li {
    border-bottom-color: #fff;
}
.p-isms-area .l-basic-list li:first-child {
    border-top-color: #fff;
}
.p-isms-area .l-basic-list__left {
    width: 110px;
    font-weight: bold;
}
.p-isms-area .l-basic-list__right {
    width: calc(100% - 110px);
}
.p-isms-area > div > div:first-child {
    width: 100%;
    text-align: center;
    margin: 0px 0 45px 0;
}

.p-isms-area > div > div:first-child p {
    margin: var(--u-length__xs) 0 0 0;
    text-align: center;
}

@media (min-width:768px){
    .p-people-area_02 {
        padding-top: 140px;
    }
    .p-people-unit__03 p {
        text-align: center;
    }
    .p-partner-logo-area {
        padding: 30px;
        border-radius: 6px;
    }
    .p-partner-logo-area ul li {
        width: 14%;
    }
    .p-people-unit__04 {
        padding: 0 25px;
    }
    .p-isms-area > div > div:first-child {
        width: unset;
    }
    .p-isms-area > div > div:first-child p {
        text-align: justify;
    }
}
/* -------------------------------------- 
    セキュリティ対策の流れ
----------------------------------------- */
:root {
    --u-security-flow01: var(--u-color__blue);
    --u-security-flow02: #0087cc;
    --u-security-flow03: #00b3d9;
} 
.p-flow_of_measures {
    background-color: #F2F2F2;
}
.p-flow_of_measures h2 {
    text-align: center;
    color: var(--u-color__blue);
    border-top: 1px solid var(--u-color__blue);
    border-bottom: 1px solid var(--u-color__blue);
    padding: 15px 0;
}
.p-flow-step {
    position: relative;
    height: 230px;
    width: 100%;
}
.p-flow-step .l-3-column {
    width: calc(100% / 3 + 10px)!important;
}
.p-flow-step li {
    position: absolute;
    height: 100%;
    padding: 20px 0px 40px 60px;
    clip-path: polygon(0 0, calc(100% - 25px) 0%, 100% 50%, calc(100% - 25px) 100%, 0 100%, 25px 50%);
}
.p-flow-step li h3 {
    color: #fff;
    font-size: var(--u-text__m);
    font-weight: bold;
}
.p-flow-step li h3 span {
    display: block;
    font-size: var(--u-text__xxl);
}
.p-flow-step li:nth-child(1) {
    left: 0;
    background: var(--u-security-flow01);
    clip-path: polygon(0 0, calc(100% - 25px) 0%, 100% 50%, calc(100% - 25px) 100%, 0 100%, 0 50%);
}
.p-flow-step li:nth-child(2) {
    background: var(--u-security-flow02);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.p-flow-step li:nth-child(3) {
    right: 0;
    background: var(--u-security-flow03);
}
.p-flow_of_measures-unit__01,
.p-flow_of_measures-unit__02,
.p-flow_of_measures-unit__03 {
    margin: var(--u-length__m) 0 0 0;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
}
.p-flow_of_measures-unit__01 .l-unit__vertical {
    border-color: var(--u-security-flow01);
}
.p-flow_of_measures-unit__02 .l-unit__vertical {
    border-color: var(--u-security-flow02);
}
.p-flow_of_measures-unit__03 .l-unit__vertical {
    border-color: var(--u-security-flow03);
}
.p-flow_of_measures-unit__01 h3 {
    color: var(--u-security-flow01);
}
.p-flow_of_measures-unit__02 h3 {
    color: var(--u-security-flow02);
}
.p-flow_of_measures-unit__03 h3 {
    color: var(--u-security-flow03);
}
/* フローの数字 */
.p-flow_number {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    color: #fff;
    margin: 0 auto 15px auto;
    font-weight: bold;
}
.p-flow_of_measures-unit__01 .p-flow_number {
    background: var(--u-security-flow01);
}
.p-flow_of_measures-unit__02 .p-flow_number {
    background: var(--u-security-flow02);
}
.p-flow_of_measures-unit__03 .p-flow_number {
    background: var(--u-security-flow03);
}
/* -------------------------------------- 
    さらなるセキュリティ支援
----------------------------------------- */  
.p-more-measures {
    background-color: #fff;
}
.p-more-measures h2,
.p-more-measures h3,
.p-more-measures h4 {
    color: var(--u-color__blue);
}
/* boderのあしらい */
.p-more-measures .l-unit__horizontal {
    border-left: 6px solid var(--u-color__blue);
}
.p-more-measures .l-border-container {
    border: 1px solid var(--u-color__blue);
}
.p-more-measures-unit__02 .l-border-container {
    padding: 0;
    border-radius: 0;
}
.p-more-measures .l-border-container > div:first-child {
    padding: 0 30px 30px 30px;
}
.p-more-measures .l-border-container .c-button a {
    border-radius: 0;
}
.p-more-measures-unit__02_img_container {
    width: 100%;
    height: 150px;
    border-bottom: 1px solid var(--u-color__blue);
}
.p-more-measures-unit__02_img_container img {
    margin: 0 auto;
}
.p-more-measures-unit__02 .l-border-container:first-child img {
    width: 75%;
    height: auto;
}
.p-more-measures-unit__02 .l-border-container:last-child img {
    width: 47%;
    height: auto;
}
.p-more-measures-unit__04 .l-border-container {
    padding-right: 13%;
}
.p-more-measures-unit__04 .l-security__list > li::before {
    font-family: 'Material Symbols Outlined';
    content: "verified_user";
    font-size: 3rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    position: absolute;
    left: -1.2em;
    top: -0.48em;
    color: var(--u-color__blue);
}
@media (min-width:768px){
    .p-more-measures .p-security__heading p {
        text-align: center;
    }
}

/* -------------------------------------- 
	pickupエリア
----------------------------------------- */
.p-pickup__section {
    background-color: #fff;
    position: relative;
 }
.p-pickup__h2 {
    text-align: center;
    margin: 0 0 var(--u-length__s) 0;
    font-size: var(--u-text__xxl);
    font-weight: 500;
    letter-spacing: 0.5rem;
}
/* スライダー */
.p-pickup {
    width: 100%;
    height: auto;
}
.p-pickup li {
    padding: 0 12.5px 0 12.5px;
}
.p-pickup li img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 6px;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.3));
}
.p-pickup li .slider-text {
    width: 100%;
}
  /* arrow */
.p-pickup__section .slick-arrow {
    width: 80px;
    height: calc(100% + var(--u-length__xl) * 2 + var(--u-text__xxl));
    position: absolute;
    top: calc(0px - var(--u-length__s) - var(--u-length__xl) - var(--u-text__xxl));
    z-index: 1;
    cursor: pointer;
}
.p-pickup__section .prev_icon.slick-arrow {
    left: 0;
}
.p-pickup__section .next_icon.slick-arrow {
    right: 0;
}
.p-pickup__section .slick-arrow:hover {
    background:rgba( 0, 0, 0, .3);
}
.p-pickup__section .slick-arrow::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid #383b4a;
    border-width: 2px 2px 0 0;
    position: absolute;
    top: calc(var(--u-length__xl) + 0px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: rotate(45deg);
}
.p-pickup__section .prev_icon.slick-arrow::before {
    transform: rotate(-135deg);
}
.p-pickup__section .slick-arrow:hover:before {
    border: 1px solid #fff;
    border-width: 2px 2px 0 0;
}
.p-pickup__section .slider-text p {
    font-size: var(--u-text__s);
    margin: var(--u-length__xs) 0 0 0;
}
/* -------------------------------------- 
	pickupエリア追記
----------------------------------------- */

.p-pickup__section.l-section-padding:not(.p-pickup__section02) {
    padding: 70px 0 100px 0;
}
.p-pickup__news h4 {
    text-align: center;
}
.p-news_vulnerability h4 {
    margin: 30px 0 0 0;
}
/* NEWS LIST */
.l-basic-list li {
    width: 100%;
    border-bottom: 1px solid #aaa;
    padding: 8px 0 8px 0;
}
.l-basic-list li a,
.l-basic-list li a p {
    font-size: var(--u-text__s)!important;
}
.l-basic-list li:first-child {
    border-top: 1px solid #aaa;
}
.l-basic-list li {
    display: flex;
    flex-direction: row;
}
.p-pickup__news .l-basic-list__left {
    width: 100px;
}
.p-pickup__news .l-basic-list__right {
    width: calc(100% - 100px);
}
.p-pickup__cvp {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: var(--u-gradation__03_reverse);
    border-radius: 4px;
    position: relative;
    z-index: 0;
    filter: var(--u-drop-shadow__02);
    padding: 30px;
}
.p-pickup__cvp::before {
    content: "";
    position: absolute;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    background: var(--u-gradation__03);
    border-radius: 4px;
    z-index: -1;
    top: 8px;
    left: 8px;
    opacity: 0.8;
}
.p-pickup__cvp p {
    color: #fff;
}
.p-pickup__cvp h3 {
    color: #fff;
    font-size: var(--u-text__m);
    font-weight: bold;
}
.p-pickup__cvp .c-button {
    width: 100%;
    margin: 0 auto;
}
.p-pickup__cvp .c-button a div {
    margin-left: 35px;
    position: relative;
    display: inline;
}
.p-pickup__cvp .c-button a div::before {
    font-family: 'Material Symbols Outlined';
    content: "verified_user";
    font-size: 3rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    position: absolute;
    left: -1.3em;
    top: -0.53em;
    color: var(--u-color__blue);
}
.p-pickup__cvp .c-button a:hover div::before {
    color: var(--u-color__blue);
}
.p-pickup__section02 {
    background-color: #fff;
 }
 @media (min-width:768px){
    .p-pickup__news div.l-2-column {
        width: calc(100% / 2 - 20px)!important;
    }
    .p-pickup__news h4 {
        text-align: left;
        margin: 0;
    }
    .p-pickup__cvp {
        width: calc(100% - 180px);
        border-radius: 6px;
        padding: 30px;
    }
    .p-pickup__cvp p {
        text-align: center;
    }
 }
/* -------------------------------------- 
	セキュリティ支援エリア
----------------------------------------- */  

.u-u999_only {
    display: block;
}
.u-o1000_only {
    display: none;
}  
.u-o1600_only {
    display: none;
}
.p-security {
    margin-top: -60px;
}
.p-security_topic__inner a,
.p-security_topic__inner a:link,
.p-security_topic__inner a:visited,
.p-security_topic__inner a:active
{
    color: var(--u-color__blue);
    text-decoration: underline;
}
.p-security__top {
    background: #fff url(/wp-content/themes/eccube/img/lp/security/security_bg_sp.png) no-repeat;
    background-size:  cover;  
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}
.p-security__h2 {
    font-size: var(--u-text__xxl);
    margin-top: 0;
    color: var(--u-color__blue);
    text-align: center;
}
.p-security__h2_topic {
    font-size: var(--u-text__m);
    color: #000;
}
.p-security__text {
    max-width: 650px;
    margin: 0 auto;
}
.p-security__h4 {
    color: var(--u-color__blue);
    margin-top: 10px;
}
.p-eccube_security {
    text-align: center;
    margin-top: 35px;
}
.p-security_topic__inner {
    background-color: #fff;
    padding: 50px var(--u-padding__smartphone) 0;
}
/*インナー見出し*/
.p-security__head-img img {
    height: 100%;
    width: auto;
}
.p-security__head-img {
    width: auto;
    height: 42px;
    display: flex;
    justify-content: center;
    margin: 0 0 7px 0;
}
.p-environment__inner .p-security__head-img img{
    height: 75%;
    margin-bottom: 5px;
}
.p-security_h3 {
    text-align: center;
    font-family: adobe-caslon-pro, serif;
    letter-spacing: 0.05em;
    font-size: 4rem;
    border-bottom: 4px solid var(--u-color__blue);
    margin: 0;
    color: var(--u-color__blue);
}
.p-security_h3_sb {
    font-size: var(--u-text__m);
    font-weight: bold;
    text-align: center;
    margin: 0px 0 40px 0;
    line-height: 1.5;
    border-top: 4px solid var(--u-color__blue);
    color: var(--u-color__blue);
    padding: 12px 0 0 0;
}
.p-security__list_name {
    color: var(--u-color__blue);
    font-size: var(--u-text__m);
    font-weight: bold;
    border-bottom: 1px solid var(--u-color__blue);
    position: relative;
    margin-left: 40px;
    padding-bottom: 3px;
    line-height: 1.2;
}
.p-security__list_name::before {
    position: absolute;
    top: -2px;
    left: 0;
    content: url(/wp-content/themes/eccube/img/lp/security/s_icon_b.png);
    margin-left: -40px;
 }
 .p-security__list_text {
    padding-left: 40px;
    margin: 7px 0 20px;
 }
 .p-security__list {
    padding: 0 10px;
 }
 .p-vulnerability__list {
    border: 1px solid var(--u-color__blue);
 }
 .p-vulnerability {
    background-image: linear-gradient(62deg, #005AB9 0%, #6EA1D7 100%);
    color: #fff;
    font-weight: bold;
    line-height: 3;
 }
 .p-vulnerability__text {
    margin: 20px 20px 35px 60px;
 }
 .p-vulnerability__text:last-child {
    margin-bottom: 20px;
 }
 .p-application::before {
    content: url(/wp-content/themes/eccube/img/lp/security/s_icon_g.png);
 }
 .p-application:last-child{
    margin-bottom: 0;
 }
 .p-people::before {
    content: url(/wp-content/themes/eccube/img/lp/security/s_icon_a.png);
 }
 .p-people__figure {
    text-align: center;
 }
 .p-people__img {
    border: 1px solid var(--u-color__cyan);
 }
 .p-people__note {
    font-size: 1.2rem;
    text-align: center;
    margin: 5px 0 0 0;
 }
 .p-security_3topic {
    display: flex;
    flex-direction: column;
 }   
 .p-application__inner {
    order: 1;
 }
 .p-environment__inner {
    order: 2;
 }
 .p-people__inner {
    order: 3;
    padding-bottom: 50px;
 }

 /* color */
 .u-color__g {
    color: var(--u-color__green);
    border-color: var(--u-color__green);
 }
 .u-color__a {
    color: var(--u-color__cyan);
    border-color: var(--u-color__cyan);
 }
 .u-mg__0 {
    margin-bottom: 0;
 }

 @media (min-width:1000px){
    .u-u999_only {
        display: none;
    }
    .u-o1000_only {
        display: block;
        color: var(--u-color__blue);
        font-weight: bold;
        margin: 0 0 10px 0;
    }  
    .p-security {
        background: #fff url(/wp-content/themes/eccube/img/lp/security/security_bg_pc.png) no-repeat;
        background-size:  cover;  
    }
    .p-security__h2__text,
    .p-security__h2 {
        text-align: left;
    } 
    .p-security__h2 {
        margin-bottom: 7px;
    }
    .p-eccube_security {
        margin-top: 0;
    }
    .p-eccube_security__text {
        width: 210px;
    }
    .p-security__h4 {
        font-size: 1.4rem;
        color: #000;
    }
    .p-security_3topic {
        flex-direction: column;
        max-width: 1200px;
        margin: 0 auto;
        align-items: stretch;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 40px;
        padding: 0 30px 110px 30px;
    } 
    .p-eccube_security__img {
        margin: 0 auto 20px;
        max-width: 650px;
        
    } 
    .p-security__top{
        display: flex;
        padding-left: 30px;
        padding-right: 30px;
        align-items: center;
        background: none;
        justify-content: space-between;
        padding-top: 50px !important;
        padding-bottom: 0 !important;
        max-width: 1200px;
    }
    .p-eccube_security {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .p-application_wrapper,
    .p-people__list_wrapper,
    .p-security_title,
    .p-environment__list {
        display: flex;
        gap: 0 30px
    } 
    .p-security__list,
    .p-vulnerability__list,
    .p-people__list,
    .p-environment {
        width: 100%;
    }
    .p-vulnerability__list {
        height: 275px;
    }
    .p-3topic__img {
        max-width: 343px;
        height: 100%;
    }
    .p-security_title {
        align-items: center;
        margin-bottom: 25px;
        margin-top: 20px;
    }
    .p-security__list {
        padding: 0px;
    }
    .p-security_h3 {
        border-bottom: none;
        font-size: 4.5rem;
    }
    .p-security_h3_sb {
        margin: 0 0 13px 0;
        font-size: 1.6rem;
        color: var(--u-color__blue);
        border: none;
    }
    .p-people_h3_sb {
        color: var(--u-color__cyan);
    }
    .p-people__figure {
        text-align: right;
    }
    .p-people__note {
        text-align: right;
    }    
    .p-environment_h3_sb {
        color: var(--u-color__green);
    }
    .p-security_topic__inner {
        border-left: 5px solid var(--u-color__blue);
        padding: 20px 35px;
        filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));
    }
    .p-environment__inner {
        border-left:  5px solid var(--u-color__green);
    }
    .p-environment__inner {
        order: 3;
     }
    .p-people__inner {
        order: 2;
        border-left: 5px solid var(--u-color__cyan);
    }
 }   
 @media (min-width:1600px){
    .u-o1600_only {
        display: block;
    }
    .p-eccube_security {
        flex-direction: row;
        align-items: flex-end;
    }
    .p-security_3topic {
        flex-direction: row;
        max-width: 1800px;
        padding-bottom: 110px;
        position: relative !important;
    } 
    .p-eccube_security__img {
        position: absolute;
        max-width: 745px;
        z-index: 1;
        margin-top: -180px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    } 
    .p-eccube_security__text {
        margin-bottom: 50px;
        margin-right: -50px;
    }
    .p-security__top {
        flex-direction:row;
        padding-top: 110px !important;
        padding-bottom: 30px !important;
        max-width: 1440px;
        flex-direction:row;
    }
    .p-security__text {
        max-width: 1000px;
    }
    .p-security_h3 {
        font-size: 5.4rem;
    }
    .p-people_h3_sb {
        color: var(--u-color__cyan);
    }
    .p-people__note {
        padding-left: 30px;
        text-align: left;
    }    
    .p-application__inner,
    .p-people__inner {
        width: calc(50% - 20px);
    }
    .p-environment__inner {
        width: 75%;
        padding-top: 40px;
        position: relative;
    }
 }
/* -------------------------------------- 
	セキュリティ支援エリア追記
----------------------------------------- */
.p-security__top .l-unit__vertical {
    margin: 50px auto 0px auto;
    border-color: var(--u-color__blue);
    color: var(--u-color__blue);
    text-align: center;
}

@media (min-width:1000px){
    .p-security__top .l-unit__vertical {
        margin: 90px auto 50px auto;
        width: 850px;
    }
}

 /* -------------------------------------- 
 *
 * header
 * 
----------------------------------------- */
#contents {
    padding: 0!important;
}
#header.active {
    background: none!important;
    border: none!important;
}
.large.header.active .inner {
    background: none!important;
}
#header.active > div > div.header_nav_area.l-header > div > nav.global_nav > ul > li > a {
    color: #fff!important;
}
#header.active > div > div.header_nav_area.l-header > div > nav.dev_nav > ul > li > a {
    color: #fff!important;
}
@media screen and (min-width: 992px) {
    .header.active .inner .btn-contact span, 
    .active .inner .btn-contact span {
        color: #fff!important;
        border: 1px solid #fff!important;
        background: url(../img/header/icon_store_w.svg) no-repeat 20px center;
    }
}
.header .inner .c-navicon__header-cvp span {
    background-color: #D0AB00;
    text-shadow: 0px 0px 6px rgb(0 0 0 / 20%);
}
.header .inner .c-navicon__header-cvp span:hover {
    background-color: #fff;
    color: #D0AB00;
    text-shadow: none;
}
/* foundation
------------------------------ */
/* html,body{
    height: 100%;
} */


/* utility
------------------------------ */
/* .u-highlight{
    background:linear-gradient(transparent 60%, #feefad 60%);
} */

/* component
------------------------------ */
/* .c-title{
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}
.c-lead{
    margin: 20px auto 0;
}
.c-lead__small{
    font-size:1.2rem;
}
.c-btn{
    background: #ffd000;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    display: block;
}
.c-close{
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}
.c-close::before{
    content: "";
    display: inline-block;
    width: 16px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.c-close::after{
    content: "";
    display: inline-block;
    width: 16px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}
@media (min-width:768px){
    .c-title{
        font-size: 2.8rem;
        font-weight: 400;
    }
    .c-lead{
        margin: 30px auto 0;
    }
} */

/* p-security
------------------------------ */
/* .p-security__hero{
    background: url(../img/security/bg_security.jpg) center no-repeat #85A9B5;
    background-size: cover;
    padding: 0;
    margin-bottom: 30px;
}
.p-security__title{
    margin: 0;
}
.p-security__lead{
    max-width: 954px;
    margin: 20px auto 0;
    padding: 0 20px;
}
.p-security__lead a{
    color:#000;
    text-decoration: underline;
}
.p-security__lead a:hover{
    text-decoration: none;
}
@media (min-width:768px){
    .p-security__hero{
        padding: 0;
        margin-bottom: 30px;
    }
    .p-security__title{
        margin: 0 auto;
        max-width: 956px;
    }
    .p-security__lead{
        padding: 0;
    }
} */

/* /p-eccube_security
------------------------------ */
/* .p-eccube_security{
    background: #f2f2f2;
    padding: 40px 0;
    scroll-behavior: smooth;
    margin-top: 40px;
}

.p-eccube_security__container{
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    align-items: center;
}

.p-eccube_security__lead{
    font-weight: bold;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.8;

}

.p-eccube_security__lead a{
    text-decoration: underline;
}

.p-eccube_security__banner img {
    box-shadow: 0px 2px 6px 2px rgb(0 0 0 / 10%);
}

.p-eccube_security__banner a:hover{
    opacity: 0.7;
}

.p-eccube_security__sp{
    display: none;
}

@media (min-width:798px){
    .p-eccube_security{
        padding: 60px 0;
        margin-top: 60px;
    }

    .p-eccube_security__container{
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
        max-width: 954px;
        margin: 0 auto;
    }

    .p-eccube_security__lead{
        text-align: left;
    }   
}    

@media (max-width:400px){
    .p-eccube_security__sp{
        display: block;
    }
} */

/* p-flow
------------------------------ */
/* .p-flow{
    max-width: 954px;
    margin: 0 auto;
    padding: 40px 20px;
}
.p-flow__list{
    max-width: 700px;
    margin: 30px auto 0;
}
.p-flow__btn{
    text-align: left;
    padding: 15px 40px;
    font-size: 1.6rem;
    border-radius: 60px;
    margin-top: 30px;
}
.p-flow__list li{
    position: relative;
}
.p-flow__list li::before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #fff;
}
.p-flow__list li:nth-last-child(n+3)::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 57px;
    height: 10px;
    background: url(../img/security/icon_flow.png);
    background-size: cover;
}
.p-flow__list .p-flow__list-waf .c-btn{
    background: #A3DDC6;
}
.p-flow__list .p-flow__list-waf::after{
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: none;
    background-color:#A3DDC6;
}

@media (min-width:798px){
    .p-flow{
        padding: 50px 0 80px;
    }
    .p-flow__list{
        margin: 40px auto 0;
    }
    .p-flow__btn{
        padding: 20px 50px;
        font-size: 1.6rem;
        border-radius: 60px;
        margin-top: 40px;
    }
    .p-flow__list li::before{
        right: 30px;
    }
    .p-flow__list li:not(:last-child)::after{
        bottom: -25px;
    }
} */


/* p-eccube_check
------------------------------ */
/* .p-eccube_check{
    background: #f2f2f2;
    padding: 40px 20px;
    scroll-behavior: smooth;
}
.p-eccube_check__lead{
    max-width: 954px;
    margin: 20px auto 0;
}
.p-eccube_check__lead a{
    color: #3686d8;
    text-decoration: underline;
}
.p-eccube_check__lead a:hover{
    text-decoration: none;
}
.p-eccube_check__how{
    max-width: 954px;
    margin: 20px auto 0;
}
.p-eccube_check__how li{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-eccube_check__how li img{
    width: 20%;
}
.p-eccube_check__btn{
    width:75%;
}
@media (min-width:798px){
    .p-eccube_check{
        background: #f2f2f2;
        padding: 80px 0;
    }
    .p-eccube_check__lead{
        text-align: center;
    }
    .p-eccube_check__how{
        margin: 50px auto 0;
        display: flex;
        justify-content: space-around;
    }
    .p-eccube_check__how li{
        display: block;
        text-align: center;
    }
    .p-eccube_check__how li img{
        width: 50%;
    }
    .p-eccube_check__btn{
        width:100%;
        margin-top: 10px;
    }
} */


/* p-security_check
------------------------------ */
/* .p-security_check{
    max-width: 956px;
    padding: 80px 20px;
    margin: 0 auto;
    scroll-behavior: smooth;
}
.p-security_check__how{
    margin-top: 30px;
}
.p-security_check__how > li{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.p-security_check__how>li img{
    width: 20%;
}
.p-security_check__btn{
    width: 75%;
}
.p-security_check__how-info{
    width: 100%;
    font-size: 1.2rem;
    padding-left: 28%;
    margin-top: -5px;
}
@media (min-width:768px){
    .p-security_check{
        padding: 80px 0;
    }
    .p-security_check__how{
        margin: 50px auto 0;
        display: flex;
        justify-content: space-around;
    }
    .p-security_check__how > li{
        display: block;
        text-align: center;
    }
    .p-security_check__how>li img{
        width: 50%;
    }
    .p-security_check__btn{
        width: 100%;
        margin-top: 10px;
    }
    .p-security_check__how-info{
        width: 100%;
        font-size: 1.2rem;
        padding-left: 10px;
        margin-top: 5px;;
        text-align: left;
    }
} */



/* p-diagnosis
------------------------------ */
/* .p-diagnosis{
    background: #f2f2f2;
    padding: 40px 20px;
    scroll-behavior: smooth;
}
.p-diagnosis__subtitle{
    font-size: 1.6rem;
    margin: 30px 0 0;
}
.p-diagnosis__partner_box,
.p-support__partner_box{
    background: #fff;
    margin-top: 30px;
}
.p-diagnosis__partner_box .p-diagnosis__logo{
    display: inline-block;
    padding: 0 20px;
}
.p-support__partner_box .p-diagnosis__logo{
    display: inline-block;
    padding: 20px;
}
.p-diagnosis__partner_box .c-title,
.p-support__partner_box .c-title{
    font-size: 1.4rem;
    text-align: left;
    padding: 0 20px;
}
.p-support__partner_box .c-lead__small{
    color: #6C6C6C;
    padding: 0 20px;
    margin: 0 auto 10px;
}
.p-diagnosis__partner_box .c-lead{
    margin-top: 10px;
    padding: 0 20px;
    font-size: 1.2rem;
}
.p-support__list{
    padding: 0 20px;
}
.p-support__list li{
    font-size: 1.4rem;
    margin-top: 8px;
    background: #FFFAE3;
    border: 1px solid #F7D647;
    padding: 2px 12px;
    border-radius: 20px;
    display: inline-block;
}
.p-support__list li.none{
    background: #F4F4F4;
    border: 1px solid #C3C0C0;
    opacity: 0;
}
.p-diagnosis__support li:first-child{
    margin-top: 0;
}
.p-diagnosis__btn{
    background: #ffd000;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding: 18px 10px;
    display: block;
    margin-top: 20px;
}
.p-diagnosis__annotation{
    font-size: 1.2rem;
    margin-top: 30px;
    padding: 20px 30px;
    background: #fff;
}
.p-diagnosis__search{
    margin-top: 30px;
    border-top: 1px solid #ccc;
}
.p-diagnosis__search .c-btn{
    margin-top: 30px;
    font-weight: 700;
}


@media (min-width:768px){
    .p-diagnosis{
        padding: 80px 0;
    }
    .p-diagnosis__subtitle{
        font-size: 1.8rem;
        margin: 50px auto 0;
        text-align: center;
    }
    .p-diagnosis__lead{
        margin: 10px auto 0;
        text-align: center;
    }
    .p-diagnosis__partner{
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    .p-support__partner{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        max-width: 956px;
        margin: 20px auto 30px;
    }
    .p-diagnosis__partner_box{
        margin: 0 15px;
        max-width: 300px;
    }
    .p-support__partner_box{
        width: 32%;
    }
    .p-support__partner_box:nth-child(3n+2){
        margin: 30px 2% 0;
    }
    .p-diagnosis__partner_box .p-diagnosis__logo,
    .p-support__partner_box .p-diagnosis__logo{
        display: inline-block;
        padding: 20px;
    }
    .p-diagnosis__partner_box .c-title,
    .p-support__partner_box .c-title{
        font-size: 1.6rem;
        font-weight: 700;
        padding: 0 20px;
    }
    .p-diagnosis__btn{
        font-size: 1.6rem;
        font-weight: 700;
    }
    .p-diagnosis__annotation{
        max-width: 630px;
        margin: 30px auto 0;
    }
    .p-diagnosis__search{
        margin-top: 30px;
        border-top: 1px solid #ccc;
    }
    .p-diagnosis__search .c-lead{
        text-align: center;
        margin: 10px auto 0;
    }
    .p-diagnosis__search-btn{
        text-align: center;
    }
    .p-diagnosis__search .c-btn{
        margin-top: 30px;
        display: inline-block;
        padding: 10px 30px;
    }
} */


/* p-eccube_waf
------------------------------ */
/* .p-eccube_waf{
    max-width: 956px;
    padding: 40px 20px;
    margin: 0 auto;
    scroll-behavior: smooth;
  } */

/* Secrity Up co
------------------------------ */
/*.p-co {
    margin-bottom: 10rem;
}
.p-co__lead {
    background: #FFFAE3;
    border-radius: 6px;
    padding: 2rem;
    margin: 2rem auto 0;
}
     .p-co__lead h4{
        margin: 0 0 .5rem;
    }
    .p-co__lead p{
        margin: 0rem;
        font-size: 1.4rem;
    }
    .p-co__lead a{
        text-decoration: underline;
    }
    .p-co__lead h4{
        font-size: 1.6rem;
    }
  .c-secrityup{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
  }
  @media (min-width:768px){
    .p-co__lead {
        padding: 2.5rem 4rem 2.5rem;
        margin-top: 3rem;
    }
  } */
/* Secrity Up WAF
------------------------------ */
  /* .p-eccube_waf__lead{
    text-align: center;
  }
  .c-secrityup__logo{
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
  .c-secrityup__info{
    width: 90%;
    margin: 0 auto;
  }
  .c-secrityup__title{
    font-size: 1.6rem;
    font-weight: 700;
  }
  .c-secrityup__btn{
    width: 100%;
    text-align: center;
  }
  .c-secrityup__btn .c-btn{
    display: inline-block;
    padding: 10px 30px;
  }
  .c-secrityup__waf{
    margin-top: 30px;
    background: #E9F8F7;
    padding: 20px;
    border-radius: 6px;
  }
  .c-secrityup__waf .c-secrityup__lead{
    margin-top: 0;
  }
  .c-secrityup__waf .c-secrityup__img{
    max-width: 100%;
    margin: 10px auto;
  }
  @media (min-width:768px){
    .p-eccube_waf{
        padding: 80px 20px;
    }
    .c-secrityup{
        margin-top: 50px;
        justify-content: space-between;
    }
    .c-secrityup__logo{
        width: 28%;
        margin: 0 auto;
    }
    .c-secrityup__info{
        width: 65%;
        margin: 0 auto;
    }
    .c-secrityup__title{
        font-size: 1.6rem;
        font-weight: 700;
        margin-top: 0;
    }
    .c-secrityup__btn{
        margin-top: 15px;
    }
    .c-secrityup__lead{
        font-size: 1.4rem;
    }
    .c-secrityup__btn .c-btn{
        display: inline-block;
        padding: 10px 30px;
    }
    .c-secrityup__waf{
        margin: 40px auto 0;
        padding: 30px 35px 20px;
        max-width: 700px;
    }
    .c-secrityup__waf .c-secrityup__lead{
        margin-top: 0;
    }
    .c-secrityup__waf .c-secrityup__img{
        max-width: 100%;
        margin: 10px auto;
    }
  } */

/* button_area
------------------------------ */
/* .button_area{
    width: 100%;
}
  .button_area .c-btn{
    width: 100%;
    margin: 30px auto 0;
    font-weight: 700;
    text-align: center;
    padding: 0px;
    display: block;
    background: none;
}
.button_area .c-btn a{
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 1.8rem 1.5rem 1.5rem;
    box-shadow: 0px 2px 6px 2px rgba(0,0,0,0.1);
    text-decoration: none;
    border-radius: 6px;
    line-height: 1.4;
}
.button_area .c-btn a::before{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(45deg);
}
.button_area .c-btn a small{
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #383b4a;
}
.button_area .c-btn__default a{
    background: #ffcc00;
    color: #383b4a;
}
.button_area .c-btn__default a::before{
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.button_area .c-btn__primary a{
    background: #67AAE2;
    color: #fff;
    margin-top: 10px;
}
.button_area .c-btn__primary a small{
    color: #fff;
}
.button_area .c-btn__primary a::before{
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

@media screen and (min-width: 768px) {
    .button_area {
        display: flex;
        justify-content: center;
        margin-top: 2.5rem;
    }
    .button_area .c-btn{
        width: 380px;
        margin: 0 15px;
    }
    .button_area .c-btn a{
        font-size: 1.8rem;
    }
    .button_area .c-btn a small{
        font-size: 14px;
    }
    .button_area .c-btn__primary a{
        margin-top: 0;
    }
    .button_area .c-btn a:hover{
        opacity: 0.8;
    }
} */
/* p-collaboration
------------------------------ */
/* .p-collaboration{
    margin: 0 auto;
    padding: 40px 20px;
    background: #f2f2f2;
    scroll-behavior: smooth;
}
.p-collaboration__title{
    margin: 0;
    font-size: 1.4rem;
}
.p-collaboration__lead{
    font-size: 1.2rem;
    padding: 0;
    margin: 0;
}
.p-collaboration__lead a{
    text-decoration: underline;
}
.p-collaboration__lead a:hover{
    text-decoration: none;
}
@media (min-width:768px){
    .p-collaboration{
        width: 100%;
        margin: 0 auto;
        padding: 35px;
    }
    .p-collaboration__title{
        max-width: 720px;
        margin: 0 auto;
        font-size: 1.4rem;
    }
    .p-collaboration__lead{
        max-width: 720px;
        font-size: 1.2rem;
        padding: 0;
        margin: 0 auto;
    }
} */

/* c-modal
------------------------------ */
/* .c-modal.is-open{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.c-modal__overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    z-index: 9999999;
}
.is-open .c-modal__overlay{
    display: block;
    opacity: 1;
    pointer-events: auto;
} */

/* .p-modal__check
------------------------------ */
/* .p-modal__check{
    display: none;
    max-width: 658px;
    width: 90%;
    padding: 40px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    z-index: 99999999;
}
.p-modal__check .c-title{
    text-align: left;
    font-weight: 700;
    font-size: 1.8rem;
}
.p-modal__check .p-check__list li{
    margin-top: 30px;
}
.p-modal__check.is-show{
    display: block;
}
@media (min-width:768px){
    .p-modal__check{
        padding: 50px;
    }
} */

/* .p-modal__idk
------------------------------ */
/* .p-modal__idk{
    display: none;
    max-width: 658px;
    width: 90%;
    padding: 40px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    z-index: 99999999;
}
.p-modal__idk .c-title{
    text-align: left;
    font-weight: 700;
    font-size: 1.8rem;
}
.p-modal__idk.is-show{
    display: block;
}
@media (min-width:768px){
    .p-modal__idk{
        padding: 50px;
    }
}
.p-modal__change{
    color: #3686d8;
    text-decoration: underline;
    cursor: pointer;
} */


/* .p-sidebnr
------------------------------ */
/* .p-sidebnr{
    position: fixed;
    bottom: 200px;
    right: 0px;
    z-index: 3;
    display: none;
}
.p-sidebnr .c-mask{
    width: 80px;
    overflow: hidden;
}
.p-sidebnr .p-sidebnr__waf a{
    width: 160px;
    display: block;
    transform: translateX(-50%);
    transition: .5s;
}
.p-sidebnr .p-sidebnr__waf a:hover{
    transform: translateX(0%);
}
.p-sidebnr .p-sidebnr__wafdoc a{
    width: 160px;
    display: block;
    transform: translateX(-50%);
    transition: .5s;
}
.p-sidebnr .p-sidebnr__wafdoc a:hover{
    transform: translateX(0%);
}

@media (min-width:768px){
    .p-sidebnr{
        display: block;
    }
} */

/* 20241114 add */
.p-environment-unit__01 .p-box__container {
  gap: 0 24px;
  justify-content: center;
}
