/* general style */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color:#49495a;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 75px 63px;
    position: relative;
    z-index: 2;
}

@media (max-width: 800px) {

    .container{
        padding:75px 40px;
    }
}


a {

    text-decoration: none;   /* アンダーラインを消す */
}

a:hover {
}

.link-wrap {
    word-break: break-all;
}

img {
    width: 100%;
}

img.modal-image{
}



.arrow-content-wrapper{

}

.arrow-content {
    display: flex;
    align-items: stretch;
}
.arrow-wrapper {
    position: relative;
    width: 80px;
    flex-shrink: 0;
}


.arrow-content .arrow-svg {
    height: 100%;
    width: 100%;
    display: block;
}

.arrow-content .icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow-content .icon-svg {
    width: 32px;
    height: 32px;
}

.arrow-content .text-content {

    padding: 20px;
    flex: 1;
}
.arrow-content .text-content ul{
    list-style-type: circle;
}
.arrow-content .text-content ul li {
    margin-left:20px;
    line-height:24px;
    font-size:16px;
    margin-bottom: 10px;

}

.arrow-content .text-content h3 {
    line-height: 30px;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
}

/* general style End */
/******* common style *******/

.section-title {
    color: #0052C0;
    font-weight: normal;
    line-height: 56px;
    font-size: 45px;
    margin-bottom: 24px;
}

.section-text {
    line-height: 29px;
    font-size: 18px;
    margin-bottom: 40px;
}


.general-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.general-grid .general-item {
    min-width: 200px;
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.general-icon-wrapper {
    width: 35px;
    height: 35px;
    background-color: #0052C0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0; /* アイコンのサイズ固定 */
}

.general-icon {
    width: 24px;
    height: 24px;
    fill: #FFFFFF;
}

.general-text-wrapper {
    display: flex;
    flex-direction: column;
}

.general-title {
    line-height: 28px;
    font-size: 23px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.general-text {
    line-height: 29px;
    font-size: 18px;
    margin: 0;
}


/******* common style End *******/

/* header menu Start*/

.nw_header {
    background: #fff;
    padding: 10px 20px;
    min-height: 102px;
}

.nw_header .nw_inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.nw_header .nw_left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.nw_header .logo img {
    margin-top: 10px;
    height: 25px;
    width: 150px;
}

.nw_header .sns_pc {
    display: flex;
    gap: 10px;
    min-width: 180px;
    align-items: center;
}

.nw_header .nw_right {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.nw_header .sns_sp {
    display: none;
    gap: 8px;
}

.nw_header .sns_sp img {
    width: 30px;
    height: 30px;
}

.nw_header .contact img {
    height: 50px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nw_header {
        background: #fff;
        padding: 10px 20px;
        min-height: 70px;
        height: 70px;
    }

    .nw_header .sns_pc {
        display: none;
    }

    .nw_header .sns_sp {
        display: flex;
    }

    .nw_header .contact {
        display: none;
    }

    .nw_header .nw_inner {
        flex-direction: row;
        align-items: center;
    }

    .nw_header .nw_left,
    .nw_header .nw_right {
        flex: 1;
    }

    .nw_header .nw_left {
        align-items: flex-start;
    }

    .nw_header .nw_right {
        justify-content: flex-end;
    }
}

/* Menu Styles End */

/* Footer Style Start */
footer {
    background: #e3ecf8;
    height: 270px; /* PC時の固定高さ */
    padding: 0 20px;
    font-family: sans-serif;
    text-align: center;
    position: relative;
}

/* ▼ fNavi（1/3の位置に） */
footer {
    background: #e3ecf8;
    height: 270px;
    padding: 0 20px;
    font-family: sans-serif;
    text-align: center;
    position: relative;
}

/* PC用配置 */
footer .fNavi {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 0;
}

footer .fNavi li {
    padding: 0 12px;
    position: relative;
}

footer .fNavi li + li::before {
    content: "|";
    color: #999;
    position: absolute;
    left: 0;
    top: 0;
}

footer .fNavi li a {
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

footer .fNavi li a:hover {
    color: #0043B1;
}

footer address {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #777;
    margin: 0;
}

/* ▼ モバイル時は位置を自然配置（absolute解除） */
@media screen and (max-width: 768px) {
    footer {
        height: 150px;
        padding-top: 40px;
    }

    footer .fNavi {
        position: static;
        transform: none;
        font-size: 13px;
        margin-bottom: 10px;
    }

    footer .fNavi li {
        padding: 4px 12px;
    }

    footer .fNavi li + li::before {
        left: -6px;
    }

    footer address {
        position: static;
        transform: none;
        top: auto;
        font-size: 11px;
        margin: 0;
    }
}

/* Footer Style End */

/* Animation classes */
/* slide-upアニメーション */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* slide-downアニメーション */
.slide-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.6s ease-in;
}
.slide-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* fade-inアニメーション */
.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* zoom-inアニメーション*/
.zoom-in{
    animation: ZoomIn 1s ease-out forwards;

}

@keyframes ZoomIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 共通 */
.slide-up-group > *,
.slide-down-group > *,
.slide-left-group > *,
.slide-right-group > * {
    opacity: 0;
    transition: all 0.3s ease-out;
}

/* アニメーション後に visible が付いたとき */
.slide-up-group > *.visible {
    transform: translateY(0);
    opacity: 1;
}
.slide-down-group > *.visible {
    transform: translateY(0);
    opacity: 1;
}
.slide-left-group > *.visible {
    transform: translateX(0);
    opacity: 1;
}
.slide-right-group > *.visible {
    transform: translateX(0);
    opacity: 1;
}

/* 初期状態 */
.slide-up-group > * {
    transform: translateY(10px); /* ここを40pxや50pxにして目立つように */
}
.slide-down-group > * {
    transform: translateY(-20px);
}
.slide-left-group > * {
    transform: translateX(-20px);
}
.slide-right-group > * {
    transform: translateX(20px);
}

/* Animation classes End */


/* title-section */
.title-section {
    position: relative;
    width: 100%;
}

.title-section .background-layer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/general/bpkZX_6JkmEimIEWN9B_y.avif');
    background-size: cover;
    background-repeat: repeat;
    background-position: center 50%;
    transform: scale(0.95);
    z-index: 0;

}

.title-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(216, 222, 229, 0.8); /* 白く薄く */
    z-index: 1; /* ← オーバーレイは中間 */
    /* 例: rgba(128, 128, 128, 0.3) でグレーのオーバーレイも可能 */
}


.title-section .logo {
    position: relative;
    height: 33px;
    width: 110px;
    margin-bottom: 20px;
    z-index: 2;
}

.title-section .main-title {
    font-weight: bold;
    color: #000;
    text-shadow: 0 0.25px 0;
    line-height: 56px;
    font-size: 45px;
}

.title-section .sub-title {
    color: #000;
    font-weight: normal;
    text-shadow: 0px 0.25px 0px;
    line-height: 56px;
    font-size: 45px;
    margin-bottom: 20px;
}

.title-section .description {
    color: rgb(73, 73, 90);
    line-height: 29px;
    font-size: 18px;

}

/* title-section End */

/* toc-section */
.toc-section {
    background-color: #ffffff;
}
.toc-section a{


       color: inherit;          /* 親要素の文字色を継承 */
}

.toc-section .container{
    padding-top:10px;
    padding-bottom: 0;
}

.flex-container {
    display: flex;
    align-items: center;
}

.toc-section .toc-list .toc-item {
    padding:8px 6px;
}

.toc-section .toc-list .toc-item:hover {
    background-color: rgba(0, 82, 192, 0.1);
    border-radius: 4px;
    cursor: pointer;
}


.toc-section .image-space {
    max-width: 37%;
}

.toc-section .image-space img {
    width: 100%;

}

.toc-section .zoom-image {
    width: 100%;
}

.toc-section .toc-space {
    padding-top:50px;
    padding-bottom: 75px;
    padding-left:63px;
    width: 63%;
}

@media (max-width: 800px) {
    .toc-section .toc-space {
        padding-top: 50px;
        padding-bottom: 10px;
        padding-left: 10px;
        width: 100%;
    }
}

.toc-section .toc-title {
    color: #0052C0;
    line-height: 56px;
    font-size: 45px;
    font-weight: normal;
    margin-bottom: 24px;
}

.toc-section .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-section .toc-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.toc-section .toc-number {
    background-color: #0052C0;
    color: white;
    font-size: 27px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 1px;
    margin-right: 16px;
    flex-shrink: 0;
}

.toc-section .toc-content {
    flex: 1;
}

.toc-section .toc-heading {
    line-height: 28px;
    font-size: 23px;
    color: #49495a;
    margin-bottom: 4px;
}

.toc-section .toc-description {
    line-height: 29px;
    font-size: 18px;
    color: #49495a;
}
@media screen and (max-width: 800px) {
    .toc-section .container{
        padding-left:10px;
        padding-right:10px;
    }
    .toc-section .image-space{
        display: none;
    }

    .toc-section .toc-space{
        width: 100%;
    }

}



/* toc-section End */


/* toc-lp-section */
.toc-lp-section {
    background-color: #ffffff;
}

.toc-lp-section a {
    color: inherit;          /* 親要素の文字色を継承 */
}

.toc-lp-section .container {
    padding-top: 10px;
    padding-bottom: 0;
}

.flex-container {
    display: flex;
    align-items: center;
}

.toc-lp-section .toc-list li .current{
    color:#49495a;
    font-weight: bold;
}

.toc-lp-section .image-space {
    max-width: 37%;
}

.toc-lp-section .image-space img {
    width: 100%;
    margin-top: 16px;
}

.toc-lp-section .zoom-image {
    width: 100%;
}

.toc-space {
    padding-top: 50px;
    padding-bottom: 75px;
    padding-left: 63px;
    width: 63%;
}

@media (max-width: 800px) {
    .toc-space {
        padding-top: 50px;
        padding-bottom: 10px;
        padding-left: 10px;
        width: 100%;
    }
}

.toc-title {
    color: #0052C0;
    line-height: 56px;
    font-size: 45px;
    font-weight: normal;
    margin-bottom: 24px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.toc-number {
    background-color: #0052C0;
    color: white;
    font-size: 27px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 1px;
    margin-right: 16px;
    flex-shrink: 0;
}

.toc-content {
    flex: 1;
}

.toc-heading {
    line-height: 28px;
    font-size: 23px;
    color: #49495a;
    margin-bottom: 4px;
}

.toc-description {
    line-height: 29px;
    font-size: 18px;
    color: #49495a;
}

@media screen and (max-width: 800px) {
    .toc-lp-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .toc-lp-section .image-space {
        display: none;
    }

    .toc-lp-section .toc-space {
        width: 100%;
    }
}
/* toc-lp-section End */


/* Form Section Start */


.form-section {
}

.form-section .section-text {

    line-height: 32px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}


/* Form Section End */

/* Contact Section Start */
.contact-section {
}

.contact-section .container {
}

.contact-section .section-text{
    text-align: center;
}

.contact-section .linkBox {
    margin-bottom: 30px;
}

.contact-section .linkUl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.contact-section .linkUl li a {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 40px;
    min-width:300px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section .btn-green {
    background-color: #009973;
    color: #fff;
}
.contact-section .btn-green:hover {
    background-color: #fff;
    color: #009973;
    border: 2px solid #009973;
}

/* ▶ 青枠ボタン（お問い合わせ） */
.contact-section .btn-outline-blue {
    background-color: #fff;
    color: #0053c2;
    border: 2px solid #0053c2;
}
.contact-section .btn-outline-blue:hover {
    background-color: #0053c2;
    color: #fff;
}

@media screen and (max-width: 768px) {
    @media screen and (max-width: 768px) {
        .contact-section .linkUl {
            flex-direction: column;
            gap: 20px;
            align-items: center; /* ← これで li を中央寄せ */
        }

        .contact-section .linkUl li {
            width: 100%;
            display: flex;
            justify-content: center; /* ボタンを中央に */
        }
    }

}

/* contact Section End */





/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒背景 */
}

.modal-content {
    display: block;
    margin: 10% auto;
    max-width: 80%;
}
.close-button {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-button:hover {
    color: #bbb;
}

/* Modal styles End */

/* Grid container */

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.grid-item {
    display: flex;
    gap: 20px;
}

.grid-item .number {
    line-height: 24px;
    font-size: 24px;
}

.grid-item .grid-title {
    line-height: 25px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.grid-item .grid-text {
    line-height: 25px;
    font-size: 16px;
}

/* grind container End */
/* challenge list */
.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.challenge-icon {
    width: 40px;
    height: 40px;
    fill: #0052C0;
    flex-shrink: 0;
}

.challenge-title {
    line-height: 25px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.challenge-text {
    line-height: 25px;
    font-size: 16px;
}

/* challenge list End */


/* relational-pages-section*/
.relational-pages-section {
    background-color: #F2F2F2;
}

.relational-pages-section .text-content {
    line-height: 25px;
    font-size: 20px;
}

/* relational-pages-section End*/




/* what-is-three-separation-section*/
.what-is-three-separtion-model-section .section-title{

}

.what-is-three-separtion-model-section .section-text {
    margin-bottom: 30px;

}

.what-is-three-separtion-model-section .three-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start; /* ← space-between だと幅が不揃いに */
}

.what-is-three-separtion-model-section .box-item {
    flex: 0 0 calc(33.333% - 21.33px); /* gap調整付き */
    box-sizing: border-box;
    text-align: center;
}

.what-is-three-separtion-model-section .box-item img {
    max-width: 70%;
    height: auto;
    margin-bottom: 16px;
}

.what-is-three-separtion-model-section .box-item h3 {
    line-height: 28px;
    font-weight:bold;
    font-size: 23px;
    margin-bottom: 8px;
    color: rgb(73, 73, 90);
}

.what-is-three-separtion-model-section .box-item p {
    line-height: 29px;
    font-size: 18px;
    color: rgb(73, 73, 90);
}

/* 2列対応：1000px以下 */
@media screen and (max-width: 1000px) {
    .what-is-three-separtion-model-section .box-item {
        flex: 0 0 calc(50% - 16px); /* gapの半分を引く */
    }
}

/* 1列対応：700px以下 */
@media screen and (max-width: 700px) {
    .what-is-three-separtion-model-section .box-item {
        flex: 0 0 100%;
    }
}

/* what-is-three-separtion-model-section End*/
/* challenge-three-separtion-model-section Start*/
.challenge-three-separtion-model-section {
    background: #E3ECF8;
}
.challenge-three-separtion-model-section .section-title{
    color: #000;
}
.challenge-three-separtion-model-section .section-text{

}


.challenge-three-separtion-model-section .general-grid{
    margin-top:20px;
    margin-bottom: 30px;
}


.challenge-three-separtion-model-section .general-grid .general-item {
    min-width: 300px;
    flex: 1;
    display: flex;
    flex-direction: column; /* ← 縦方向に変更 */
    align-items: flex-start; /* 左揃えに */
    gap: 10px; /* 上下の間隔 */
}

.challenge-three-separtion-model-section .general-grid .general-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #E3ECF8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.challenge-three-separtion-model-section .general-grid .general-icon {
    width: 40px;
    height: 40px;
    fill: #666666;
}

.challenge-three-separtion-model-section .general-grid .general-title {
    line-height: 28px;
    font-size: 23px;
}

.challenge-three-separtion-model-section .general-grid .general-text {
    line-height: 29px;
    font-size: 18px;
}

/* challenge-three-separtion-model-section End*/

/* three-separation-status-section Start*/

/* three-separation-status-section End*/



/********************　**********************/
/* alpha-model-background-section Start*/

/* alpha-model-background-section End*/

/* alpha-model-points-section Start*/
.alpha-model-points-section {
    background: #E3ECF8;

}
.alpha-model-points-section .section-title{
    color: #000;

}


.alpha-model-points-section .general-grid{
    width: 100%;
}
.alpha-model-points-section .general-grid .general-item {
    min-width:500px;
}

.alpha-model-points-section .general-grid .general-icon-wrapper {
    width: 54px;
    height: 54px;
    background: #E3ECF8;
}


.alpha-model-points-section .general-grid .general-icon {
    width: 54px;
    height: 54px;
    fill: #666666;
}


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

    .alpha-model-points-section .general-grid .general-item {
        min-width:300px;
    }
}
/* alpha-model-points-section End*/

/* alpha-model-requirements-section Start*/

/* alpha-model-requirements-section End*/

/* alpha-model-fortinet-solution-overview-section Start*/

.alpha-model-solution-overview-section{
    background: #E3ECF8;

}
.alpha-model-solution-overview-section .section-title{
    color: #000;

}
/* alpha-model-fortinet-solution-overview-section End*/

/********************　End **********************/
/********************　Start **********************/
/* alpha-model-local-breakout-solution-section Start*/

.alpha-model-local-breakout-solution-section {

}
.alpha-model-local-breakout-solution-section .subheading{
    color: #0052C0;
    line-height: 34px;
    font-size: 27px;
    margin-bottom: 30px;

}


.alpha-model-local-breakout-solution-section .general-grid{
    width: 100%;
    margin-bottom: 200px;
}
.alpha-model-local-breakout-solution-section .general-grid .general-item {

    min-width:340px;
    max-width: 340px;
}


.alpha-model-local-breakout-solution-section .general-grid .general-icon-wrapper {
    width: 54px;
    height: 54px;
    background: #fff;
}


.alpha-model-local-breakout-solution-section .general-grid .general-icon {
    width: 54px;
    height: 54px;
    fill: #0052C0;
}

.alpha-model-local-breakout-solution-section .general-grid .general-item .general-title {
    font-weight: normal;
}


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

    .alpha-model-local-breakout-solution-section .general-grid .general-item {
        min-width:300px;
    }
}

.alpha-model-local-breakout-solution-section .three-seven-box {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 32px;
    flex-wrap: wrap;
}

.alpha-model-local-breakout-solution-section .left-box {
    flex: 0 0 30%;
    align-items: center;
}

.alpha-model-local-breakout-solution-section .left-box img {
    width: 100%;
    height: auto;
    display: block;
}

.alpha-model-local-breakout-solution-section .right-box {
    flex: 0 0 69%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.alpha-model-local-breakout-solution-section .right-text {
    display: block;
    margin: 0;
    font-size: 16px;
    color: #333;
}

.alpha-model-local-breakout-solution-section .right-box img {
    width: 100%;
    height: auto;
    display: block;
    clear: both;
}


.alpha-model-local-breakout-solution-section .right-text-block,
.alpha-model-local-breakout-solution-section .right-image-block {
    width: 100%;
}


/* alpha-model-local-breakout-solution-section End*/

/* alpha-model-sizing-guide-section Start*/
.alpha-model-sizing-guide-section {
    background: #E3ECF8;
}
.alpha-model-sizing-guide-section .section-title{
    color: #000;
}
.alpha-model-sizing-guide-section .subheading{
    line-height: 34px;
    font-size: 27px;
    margin-bottom: 30px;
}

.alpha-model-sizing-guide-section .sizing-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d0d7e2;
    font-size: 18px;
    margin-bottom: 40px;
}

.alpha-model-sizing-guide-section .sizing-table th,
.alpha-model-sizing-guide-section .sizing-table td {
    padding: 12px 8px;
    border: 1px solid #d0d7e2;
    text-align: left;
    vertical-align: top;
}

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

    .alpha-model-sizing-guide-section .sizing-table th,
    .alpha-model-sizing-guide-section .sizing-table td {
        padding: 12px 2px;
        border: 1px solid #d0d7e2;
        font-size: 14px;
        text-align: left;
        vertical-align: top;
    }
}

/* 1,3行目: 薄いブルー */
.alpha-model-sizing-guide-section .sizing-table tr:nth-child(odd) {
    background-color: #E3ECF8;
}

/* 2,4行目: それより濃いブルー */
.alpha-model-sizing-guide-section .sizing-table tr:nth-child(even) {
    background-color: #D4DFF1;
}


/* alpha-model-sizing-guide-section End*/

/* 	remote-access-solution-section Start*/

.remote-access-solution-section .subheading{
    color: #0052C0;
    line-height: 34px;
    font-size: 27px;
    margin-bottom: 30px;
}

/* 	remote-access-solution-section End*/

/* edr-solution-section Start*/

.edr-solution-section{
    background: #E3ECF8;

}
.edr-solution-section .section-title{
    color: #000;
}
.edr-solution-section .subheading{
    color: #0052C0;
    line-height: 34px;
    font-size: 27px;
    margin-bottom: 30px;
}

/* edr-solution-section End*/

.edr-case-study-section .section-title{
    color: #000;
}

.edr-solution-section .general-grid {
    margin-top: 40px;
    margin-bottom: 100px;
}

.edr-solution-section .general-grid .general-item {
    min-width: 48%;
}
.edr-solution-section .general-grid .general-item .general-title{
}


@media (max-width: 800px) {
    .edr-solution-section .general-grid .general-item {
        min-width: 100%;
    }

}

/* edr-case-study-section Start*/

/* edr-case-study-section End*/
/********************　End **********************/