@charset "utf-8";
/* CSS Document */

/*==============================*/
/* サービス */
/*==============================*/

/*-- 背景
------------------------- */
section.serviceWrap{
	position: relative;
	padding-top: 104px;
}
section.serviceWrap::before{
	position: absolute;  bottom: -60px; left: 0;
	content: "";
	width: 55%;
	height: 304px;
	background: #EFF6F8;
	z-index: -9;
}

/*-- タイトル
------------------------- */
section.serviceWrap h2{
	position: relative;
	margin-bottom: 32px;
	font-size: 25px;
	font-weight: 600;
    font-family: "Noto Sans Japanese"; letter-spacing: -0.01em;
}
section.serviceWrap h2:before{
	position: absolute; top: 50%; right: 0;
	content: "";
	width: calc(100% - 560px - 24px);
	height: 1px;
	background: #ccc;
}
section.serviceWrap h2 span{
	position: relative; top: -3px;
	font-size: 25px;
	color: #006D8B;
	letter-spacing: -0.02em;
}

/*-- コンテンツ
------------------------- */
div.service{
	display: flex; display: -webkit-flex;
	justify-content: space-between; -webkit-justify-content: space-between;
}
div.service div{
	width: calc(33.3% - 1px);
	background: #fff;
	box-shadow: 1px 2px 6px 0px rgba(153,153,153,0.5);
}
div.service div dl{ padding: 32px 36px 56px 36px;}
div.service div dl dt{
	margin-bottom: 12px;
	line-height: 1.3em;
	color: #002A3B;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	font-family: "Noto Sans Japanese"; letter-spacing: -0.02em;
}

    /* ======= SP =======*/
    @media (max-width: 767px) {
        div.service { flex-direction: column; -webkit-flex-direction: column;}
        div.service div{
            width: 100%;
            box-shadow: none;
        }
        div.service div dl{ padding: 32px 24px 24px 24px;}
        div.service div dl dt{
            margin-bottom: 12px;
            line-height: 1.3em;
            font-size: 20px;
        }
        div.service div dl dd p{ font-size: 13px;}
    }


/*==============================*/
/* サービスボックス */
/*==============================*/
/*-- 背景
------------------------- */
section.serviceBox_wrap{
	position: relative;
	padding-top: 104px;
}
section.serviceBox_wrap::before{
	position: absolute;  top: 180px; right: 0;
	content: "";
	width: 45%;
	height: 304px;
	background: #EFF6F8;
	z-index: -9;
}

/*-- 
------------------------- */
div.serviceBox{
	display: flex; display: -webkit-flex;
	flex-wrap: wrap; -webkit-flex-wrap: wrap;
	justify-content: space-between; -webkit-justify-content: space-between;
	max-width: 960px;
	width: 100%;
	margin-bottom: -40px;
}

div.serviceBox > div{
	position: relative;
	width: calc(50% - 20px);
	margin-bottom: 40px;
	background: #fff;
	box-shadow: 1px 2px 6px 0px rgba(153,153,153,0.5);
	counter-increment: rank;
}
div.serviceBox > div::before{
	position: absolute; top: 0; left: 0;
	content: "";
	width: 72px;
	height: 100%;
	background: #024051;
	z-index: 0;
}

    /* ======= SP =======*/
    @media (max-width: 767px) {
        div.serviceBox{
            flex-direction: column; -webkit-flex-direction: column;
            margin-bottom: -40px;
        }

        div.serviceBox > div{
            position: relative;
            width: 100%;
            margin-bottom: 40px;
        }
        div.serviceBox > div::before{
            position: absolute; top: 0; left: 0;
            width: 40px;
        }
    }


/*-- 画像
------------------------- */
div.serviceBox > div > p{ position: relative; z-index: 9;}

/*-- コンテンツ
------------------------- */
div.serviceBox dl{ padding: 32px 32px 32px 104px;}
div.serviceBox dl dt{
	position: relative;
	margin-bottom: 14px;
	line-height: 1.3em;
	color: #002A3B;
	font-size: 20px;
	font-weight: 500;
	font-family: "Noto Sans Japanese"; letter-spacing: -0.02em;
}
div.serviceBox dl dt::before{
	position: absolute; top: -22px; left: -92px;
	content: "SERVICE";
	color: #fff;
	font-size: 12px;
	font-weight: 600;
    font-family: 'Roboto', sans-serif; letter-spacing: 0.01em;
}
div.serviceBox dl dt::after{
	position: absolute; top: 8px; left: -90px;
	content: "0"counter(rank) ;
	color: #fff;
	font-size: 44px;
	font-weight: 600;
    font-family: 'Oswald', sans-serif; letter-spacing: 0.01em;
}

div.serviceBox dl dd p:not(:last-child){ margin-bottom: 10px;}

    /* ======= SP =======*/
    @media (max-width: 767px) {
        div.serviceBox dl{ padding: 28px 24px 28px 64px;}
        div.serviceBox dl dt{
            position: relative;
            margin-bottom: 14px;
            line-height: 1.3em;
            color: #002A3B;
            font-size: 19px;
        }
        div.serviceBox dl dt::before{ display: none; }
        div.serviceBox dl dt::after{
            position: absolute; top: 0; left: -59px;
            font-size: 28px;
        }
        div.serviceBox dl dd p{ font-size: 13px;}
    }


/*-- リンク
------------------------- */
div.serviceBox > div > a{
	position: absolute; top: 0; left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
}


/*==============================*/
/* サービスTOP */
/*==============================*/
div.serviceTop{
	display: flex; display: -webkit-flex;
	justify-content: space-between; -webkit-justify-content: space-between;
	margin: 32px auto 0 auto;
	max-width: 90%;
}
    /* ======= TB =======*/
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        div.serviceTop{ max-width: 100%;}
    }
    /* ======= SP =======*/
    @media (max-width: 767px) {
        div.serviceTop{
            flex-wrap: wrap; -webkit-flex-wrap: wrap;
            margin: 32px auto 0 auto;
            max-width: 92%;
        }
    }


/*-- 画像
------------------------- */
div.serviceTop > p{ width: calc(40% - 12px);}

    /* ======= TB =======*/
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        div.serviceTop > p{ width: 40%;}
    }
    /* ======= SP =======*/
    @media (max-width: 767px) {
        div.serviceTop > p{ width: 100%;}
    }


/*-- コンテンツ
------------------------- */
div.serviceTop div{
	position: relative;
	width: calc(60% - 12px);
}
div.serviceTop div::before{
	position: absolute; top: -116px; left: -136px;
	content: "";
	width: 182px;
	height: 180px;
	background: url("/common/img/share/bg_square.png")no-repeat;
	background-size: contain;
}
div.serviceTop h2{
	margin-bottom: 16px;
	line-height: 1.3em;
	color: #002A3B;
	font-size: 24px;
	font-weight: 600;
	font-family: "Noto Sans Japanese"; letter-spacing: -0.02em;
}
div.serviceTop h2 span{
	position: relative; top: -3px;
	font-size: 24px;
	color: #207F99;
    line-height: 1.3em;
}

    /* ======= TB =======*/
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        div.serviceTop div{ width: 60%;}
    }
    /* ======= SP =======*/
    @media (max-width: 767px) {
        div.serviceTop div{ width: 100%; }
        div.serviceTop div::before{
            position: absolute; top: -64px; left: -24px;
            width: 92px;
            height: 90px;
        }
        div.serviceTop h2{
            margin-bottom: 18px;
            font-size: 22px;
        }
        div.serviceTop h2 span{
            position: relative; top: -3px;
            font-size: 22px;
        }
    }

/*==============================*/
/* サービスメニュー */
/*==============================*/
div.serviceMenu{
	display: flex; display: -webkit-flex;
	flex-wrap: wrap; -webkit-flex-wrap: wrap;
	justify-content: space-between; -webkit-justify-content: space-between;
}
div.serviceMenu dl{
	width: calc(50% - 16px);
	margin-bottom: 32px;
	padding: 32px 32px 28px 32px;
	background: #fff;
	box-shadow: 1px 2px 6px 0px rgba(153,153,153,0.5);
}
div.serviceMenu dl dt{
	position: relative;
	margin-bottom: 16px;
	line-height: 1.3em;
	color: #002A3B;
	font-size: 20px;
	font-weight: 500;
	font-family: "Noto Sans Japanese"; letter-spacing: -0.02em;
}
div.serviceMenu dl dt::before{
	position: absolute; top: -7px; left: -32px;
	content: "";
	width: 6px;
	height: 40px;
	background: #207F99;
}

    /* ======= TB =======*/
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        div.serviceMenu dl{
            width: calc(50% - 12px);
            margin-bottom: 24px;
            padding: 32px 28px 28px 28px;
        }
        div.serviceMenu dl dt{
            margin-bottom: 16px;
            font-size: 19px;
        }
        div.serviceMenu dl dt::before{ position: absolute; top: -7px; left: -28px;}
        div.serviceMenu dl dd,
        div.serviceMenu dl dd p{ font-size: 13px;}
    }

    /* ======= SP =======*/
    @media (max-width: 767px) {
        div.serviceMenu{ flex-direction: column; -webkit-flex-direction: column; }
        div.serviceMenu dl{
            width: 100%;
            margin-bottom: 24px;
            padding: 32px 28px 28px 28px;
        }
        div.serviceMenu dl dt{
            margin-bottom: 16px;
            font-size: 19px;
        }
        div.serviceMenu dl dt::before{ position: absolute; top: -7px; left: -28px;}
    }


/*==============================*/
/* サービス詳細 */
/*==============================*/
div.serviceDetail dl{
	padding: 32px 32px 28px 32px;
	background: #fff;
	box-shadow: 1px 2px 6px 0px rgba(153,153,153,0.5);
}
div.serviceDetail dl:not(:last-child){ margin-bottom: 32px;}
div.serviceDetail dl dt{
	position: relative;
	margin-bottom: 18px;
	line-height: 1.3em;
	color: #002A3B;
	font-size: 22px;
	font-weight: 500;
	font-family: "Noto Sans Japanese"; letter-spacing: -0.02em;
}
div.serviceDetail dl dt::before{
	position: absolute; top: -6px; left: -32px;
	content: "";
	width: 6px;
	height: 40px;
	background: #207F99;
}
div.serviceDetail dl dd{
	display: flex; display: -webkit-flex;
	justify-content: space-between; -webkit-justify-content: space-between;
}
div.serviceDetail dl dd > div{ width: calc(100% - 264px - 24px);}
div.serviceDetail dl dd > p{ width: 264px;}

/* ======= TB =======*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
}

/* ======= SP =======*/
@media (max-width: 767px) {
    div.serviceDetail dl{ padding: 32px 28px 28px 28px;}
    div.serviceDetail dl dt{
        margin-bottom: 16px;
        line-height: 1.3em;
        font-size: 19px;
    }
    div.serviceDetail dl dt::before{ position: absolute; top: -6px; left: -28px;}
    div.serviceDetail dl dd{ flex-direction: column; -webkit-flex-direction: column;}
    div.serviceDetail dl dd > div{ width: 100%; margin-bottom: 16px;}
    div.serviceDetail dl dd > p{ width: 100%;}
}


/*==============================*/
/* サービス詳細 */
/*==============================*/
/*-- タイトル
------------------------- */
div.serviceText h3{
	position: relative;
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3em;
    font-family: "Noto Sans Japanese"; letter-spacing: -0.01em;
}
div.serviceText h3::before{
	position: absolute; top: 16px; right: 0;
	content: "";
	width: 75%;
	height: 1px;
	background: #ccc;
}
div.serviceText h3 span{
	position: relative; top: -3px;
	font-size: 24px;
	color: #006D8B;
	letter-spacing: -0.02em;
    line-height: 1.3em;
}

/*-- 経営管理支援 --- */
#business_administration div.serviceText:nth-child(1) h3:before{ width: calc(100% - 450px - 40px);}
#business_administration div.serviceText:nth-child(2) h3:before{ width: calc(100% - 142px - 40px);}

/*-- M & A --- */
#ma div.serviceText:nth-child(1) h3:before{ width: calc(100% - 336px - 40px);}

    /* ======= SP =======*/
    @media (max-width: 767px) {
        div.serviceText h3{
            margin-bottom: 20px;
            padding-bottom: 11px;
            font-size: 22px;
            border-bottom: 1px solid #ccc;
        }
        div.serviceText h3::before{ display: none;}
        div.serviceText h3 span{ font-size: 22px;}

    }


/*-- コンテンツ
------------------------- */
div.serviceText div.serviceText_content{
	display: flex; display: -webkit-flex;
	justify-content: space-between; -webkit-justify-content: space-between;
}

div.serviceText div.serviceText_content div{ width: calc(50% - 12px);}
div.serviceText div.serviceText_content div p:not(:last-child){ margin-bottom: 16px;}

    /* ======= TB =======*/
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        div.serviceText div.serviceText_content div{ width: calc(50% - 10px);}
    }

    /* ======= SP =======*/
    @media (max-width: 767px) {
        div.serviceText div.serviceText_content{ flex-direction: column; -webkit-flex-direction: column;}

        div.serviceText div.serviceText_content div{ width: 100%;}
        div.serviceText div.serviceText_content div p:not(:last-child){ margin-bottom: 15px;}
    }




