/* general style */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color:#49495a;

}

.container {
    max-width: 1160px;
    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 {
}

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 */

/* 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 */

/* common style */
.section-title {
    color: #0052C0;
    line-height: 49px;
    font-size: 39px;
    margin-bottom: 24px;
}

.section-text {
    color:#49495A;
    line-height: 32px;
    font-size: 20px;
    margin-bottom: 40px;
}

/* common style */



/* 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/8Y4y6mAHBMoIcj_qV7xMg.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(240, 240, 240, 0.9); /* 白く薄く */
    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: #0052C0;
    text-shadow: 0 0.25px 0;
    line-height: 60px;
    font-size: 48px;
    margin-bottom: 20px;
}

.title-section .description {
    line-height: 35px;
    font-size: 28px;
}

/* title-section End */






/* lgwan-microsoft365-problem-section Start */
.lgwan-microsoft365-problem-section {
    background-color: #E3ECF8;
}

.lgwan-microsoft365-problem-section .container {
}
.lgwan-microsoft365-problem-section .section-title{
    color: #49495A;
}

.lgwan-microsoft365-problem-section h3.subheading{
    color:#49495A;
    line-height: 30px;
    font-size:24px;
    margin-bottom: 30px;

}


.lgwan-microsoft365-problem-section .boxes {
    display: flex;
    gap: 16px; /* ボックスの間隔 */
}


.lgwan-microsoft365-problem-section .box {
    position: relative;
    flex: 1;
    border: 2px solid #a6c8ff;
    border-radius: 6px;
    padding: 40px 16px 16px; /* 上に余白を多めに確保 */
    background-color: #f0f6ff;
    line-height: 32px;
    font-size: 20px;
}

.lgwan-microsoft365-problem-section .circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #a6c8ff;
    color: #000; /* ← 黒文字 */
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* 800px以下では縦並び */
@media (max-width: 800px) {
    .lgwan-microsoft365-problem-section .container {
        flex-direction: column;
    }
}

/* lgwan-microsoft365-problem-section End */

/* solution-section Start */
.solution-section .boxes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap; /* 小さい画面で折り返し */
}

.solution-section .box {
    flex: 1;
    min-width: 200px;
    background-color: #a6c8ff; /* 背景色 */
    padding: 20px;
    border-radius: 6px;
}

.solution-section .box h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000; /* 黒文字 */
}

.solution-section .box p {
    margin: 0;
    color: #000;
    line-height: 1.5;
}

/* 800px以下では縦並び */
@media (max-width: 800px) {
    .solution-section .boxes {
        flex-direction: column;
    }
}

/* solution-section End */


/* sevice-merit-section Start */
.service-merit-section{
    background-color: #E3ECF8;
}
.service-merit-section .section-title {
    color: #49495A;
}

/* 2列グリッド（≤800pxで1列） */
.service-merit-section .boxes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

@media (max-width: 800px) {
    .service-merit-section .boxes {
        grid-template-columns: 1fr;
    }
}

/* ボックス本体：中身は縦方向に並べる */
.service-merit-section .box {
    display: flex;
    flex-direction: column;   /* ← アイコン → タイトル → テキスト を縦に */
    gap: 12px;
}

/* アイコンは自由にサイズ調整できるよう最小指定のみ */
.service-merit-section .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 6px;
}

.service-merit-section  .icon-wrapper .icon {
    width: 40px;
    height: 40px;
    fill: #0052C0;
}

/* タイトルと本文の基本 */
.service-merit-section .box .title {
    font-weight: 700;
    font-size: 1.75rem;      /* 例: 28px */
    line-height: 1.25;
    margin: 0;
    color: #171717;          /* お好みで */
}

.service-merit-section .box .text {
    margin: 0;
    line-height: 1.8;
    color: #3c3c44;          /* お好みで */
}

/* 画像アイコンを使う場合の推奨 */
.service-merit-section .box .icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* sevice-merit-section End */


/* target-section Start */
.target-section .section-text p{
    text-align: center;
    color: #49495A;
    font-weight: normal;
    line-height: 49px;
    font-size: 39px;
    margin-bottom: 0;

}

/* target-section End */


/* fee-section Start */
.fee-section{
    background-color: #E3ECF8;

}
.fee-section .section-title{
    margin-bottom: 10px;
    color: #49495A;
}
.fee-section .section-text{
    margin-bottom: 10px;

}
.fee-section .section-text p{
    text-align: center;
    color: #49495A;
    font-weight: normal;
    line-height: 32px;
    font-size: 20px;

}
/* fee-section End */


/* reference-information-section Start */
.reference-information-section .section-title{
    color: #49495A;
}
/* reference-information-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 */