@charset "utf-8";
body {
color: #4d4d4d;
position: relative;
}

a {
text-decoration: inherit;
color: inherit;
line-height: inherit;
}

@media print, screen and (min-width: 769px) {
	.pc-only{
		display: block;
	}
	.sp-only{
		display: none !important;
	}
}
@media print, screen and (max-width: 768px) {
	.pc-only{
		display: none !important;
	}
	.sp-only{
		display: block;
	}
}

.wrapper {
max-width: 1100px;
padding-left: 5%;
padding-right: 5%;
margin-left: auto;
margin-right: auto;
}
.wrapperL {
max-width: 1320px;
padding-left: 2%;
padding-right: 2%;
}
@media screen and (max-width:680px) {
.wrapperL {
padding-left: 5%;
padding-right: 5%;
}
}


.text-left{
    text-align : left !important;
}
.text-center{
    text-align : center !important;
}
.text-right{
    text-align : right !important;
}
.text-small{
    font-size : .8em !important;
}



nav ,
#spNavBtn {
display: none;
}
#spNav {
position: fixed;
z-index: 999;
top:0;
left: 0;
width: 100%;
height: 100vh;
background-color: #fff;
visibility: hidden;
opacity: 0;
transition:.2s;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#spNav>div {
visibility: hidden;
opacity: 0;
transition:.2s;
transition-delay: 0;
overflow-y: auto;
width: 100%;
margin: auto;
padding: 80px 5%;
box-sizing: border-box;
}
#spNavLogo {
width: 100%;
max-width: 160px;
margin: auto;
margin-bottom: 30px;
}
#spNav ul {
max-width: 300px;
margin: auto;
}
#spNav li a {
text-align: center;
display: block;
font-size: 18px;
font-weight: 500;
padding: 10px;
margin-top: 10px;
}
#spNavMail a {
width: 380px;
margin: auto;
box-sizing: border-box;
margin-top: 40px;
/*background: rgb(69,144,232);
background: linear-gradient(45deg, rgba(69,144,232,1) 0%, rgba(30,156,215,1) 50%, rgba(0,117,190,1) 100%);*/
background: rgb(59,125,203);
background: linear-gradient(45deg, rgba(59,125,203,1) 0%, rgba(32,154,210,1) 50%, rgba(0,100,162,1) 100%);
color: #fff;
display: flex;
justify-content: center;
padding: 10px 20px;
border-radius: 3px;
}
#spNavMail a span {
font-weight: bold;
line-height: 1.8;
}
#spNavMail a span+span {
position: relative;
padding-left: 1em;
}
#spNavMail a span+span::before {
position: absolute;
content: "/";
font-size: 0.9em;
left: 0.3em;
top: 0;
font-weight: bold;
}
@media screen and (max-width:480px) {
#spNavMail a {
width: 260px;
flex-direction: column;
align-items: center;
justify-content: center;
}
#spNavMail a span+span {
padding-left: 0;
}
#spNavMail a span+span::before {
display: none;
}
}



@media screen and (min-width:1361px) {
nav {
display: block;
position: fixed;
z-index: 999;
top: 20px;
right: 20px;
background-color: #fff;
height: 60px;
border-radius: 30px;
box-shadow: 2px 3px 4px rgba(0,0,0,.2);
overflow: hidden;
}
nav ul {
display: flex;
}
nav ul li {
width: 168px;
}
nav ul li+li {
position: relative;
}
nav ul li+li::before {
position: absolute;
content: "";
width: 1px;
height: 28px;
background-color: #4d4d4d;
left: -0.5px;
top :16px;
}
nav ul li a {
display: block;
text-align: center;
line-height: 60px;
color: #4590e8;
font-size: 16px;
font-weight: 500;
transition: background-color .2s;
}
nav ul li a:hover {
background-color: #f8f8fe;
}
}
@media screen and (max-width:1360px) {
#spNavBtn {
position: fixed;
z-index: 1000;
top: 20px;
right: 20px;
width: 60px;
height: 60px;
border-radius: 30px;
background-color: #fff;
border: 1px solid transparent;
box-sizing: border-box;
box-shadow: 2px 3px 4px rgba(0,0,0,.2);
cursor: pointer;
overflow: hidden;
color: #4590e8;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#spNavBtn div {
width: 25px;
height: 25px;
}
#spNavBtn div span {
display: block;
width: 100%;
margin: 0 auto 8px;
height: 3px;
/*background: rgb(69,144,232);
background: linear-gradient(45deg, rgba(69,144,232,1) 0%, rgba(30,156,215,1) 50%, rgba(0,117,190,1) 100%);*/
background: rgb(59,125,203);
background: linear-gradient(45deg, rgba(59,125,203,1) 0%, rgba(32,154,210,1) 50%, rgba(0,100,162,1) 100%);
transition: all 0.2s ease-in-out;
}
#spNavBtn div span:last-child {
margin-bottom: 0;
}
#spNavBtn.on {
background-color: transparent;
box-shadow: 0 0 4px rgba(0,0,0,0);
}
#spNavBtn.on div span {
/*background: #fff;*/
}
#spNavBtn.on div span.top {
transform: translateY(11px) rotate(-45deg);
}
#spNavBtn.on div span.middle {
opacity: 0;
}
#spNavBtn.on div span.bottom {
transform: translateY(-11px) rotate(45deg);
}
#spNav.on {
visibility: visible;
opacity: 1;
}
#spNav.on>div {
visibility: visible;
opacity: 1;
transition:.4s;
transition-delay: 0.5s;
}
}
@media screen and (max-width:414px) {
#spNavBtn {
top: 10px;
right: 10px;
width: 54px;
height: 54px;
border-radius: 27px;
}
}




#toPageTop {
position: fixed;
z-index: 998;
bottom: 10px;
right: 20px;
width: 60px;
height: 60px;
background-color: #fff;
border-radius: 30px;
border: 1px solid transparent;
box-sizing: border-box;
/*background: rgb(69,144,232);
background: linear-gradient(45deg, rgba(69,144,232,1) 0%, rgba(30,156,215,1) 50%, rgba(0,117,190,1) 100%);*/
background: rgb(59,125,203);
background: linear-gradient(45deg, rgba(59,125,203,1) 0%, rgba(32,154,210,1) 50%, rgba(0,100,162,1) 100%);
box-shadow: 2px 3px 4px rgba(0,0,0,.2);
cursor: pointer;
overflow: hidden;
color: #4590e8;
}
#toPageTop div {
position: relative;
height: 100%;
width: 100%;
text-align: center;
background-color: #fff;
}
#toPageTop div::after {
content: "↑";
line-height: 58px;
font-size: 14px;
font-weight: 400;
}
@media screen and (max-width:1100px) {
#toPageTop {
right: 10px;
}
}


.subheader {
font-size: 14px;
font-weight: 500;
line-height: 1.2;
color: #4590e8;
margin-bottom: 30px;
}
.subheader::after {
display: block;
content: "";
width: 30px;
height: 1px;
background-color: #4590e8;
margin-top: 30px;
}











#fv {
height: 100vh;
min-height: 740px;
display: flex;
}
#fvL,
#fvR {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#fvL {
width: 50%;
background-color: #fff;
}
#fvR {
width: 50%;
min-width: 720px;
/*background: rgb(69,144,232);
background: linear-gradient(45deg, rgba(69,144,232,1) 0%, rgba(30,156,215,1) 50%, rgba(0,117,190,1) 100%);*/
background: rgb(59,125,203);
background: linear-gradient(45deg, rgba(59,125,203,1) 0%, rgba(32,154,210,1) 50%, rgba(0,100,162,1) 100%);
color: #fff;
font-size: 17px;
position: relative;
}
#fvR::before {
position: absolute;
content: "";
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: url("images/bg.jpg");
background-size: cover;
background-position: left center;
opacity: 0.10;
}
#fvLInner,
#fvRInner {
}
#fvLInner {
width: 50%;
max-width: 380px;
min-width: 280px;
padding-left: 20px;
}
#fvRInner {
padding: 10px 0;
position: relative;
z-index: 2;
}
#fvRInner p {
font-size: 17px;
line-height: 2.7;
width: 100%;
font-weight: 500;
}
h1 img {
display: block;
width: 100%;
height: auto;
}
h1>span {
display: block;
margin-top: 3.1em;
font-size: 26px;
font-weight: 500;
color: #4d4d4d;
}
h1>span span {
display: inline-block;
margin-right: 0.5em;
font-size: 0.66em;
font-weight: 500;
}

@media screen and (max-width:1600px) {
#fvR {
padding: 0 1.5%;
}
#fvRInner p {
font-size: 16px;
}
h1>span {
font-size: 24px;
}
}
@media screen and (max-width:1300px) {
#fvR {
min-width: 680px;
}
#fvRInner p {
font-size: 15px;
}
h1>span {
font-size: 22px;
}
}
@media screen and (max-width:1100px) {
#fv {
flex-direction: column;
height: auto;
}
#fvL,
#fvR {
min-width: 320px;
padding: 7% 5%;
width: 100%;
box-sizing: border-box;
}
#fvL {
padding-top: 100px;
}
#fvLInner {
width: 100%;
max-width: 580px;
padding-bottom: 30px;
}
h1 img {
width: 60%;
min-width: 260px;
}
h1>span {
font-size: 20px;
margin-top: 2.5em;
}
}
@media screen and (max-width:680px) {
#fvL {
padding: 11% 5%;
/*padding-top: 70px;*/
padding-top: 100px;
}
#fvLInner {
padding-bottom: 10px;
}
h1 img {
width: 40%;
min-width: 230px;
}
h1>span {
font-size: 18px;
margin-top: 2em;
}
#fvRInner p {
line-height: 2.2;
text-align: justify;
text-justify: inter-ideograph;
}
#fvRInner p br {
display: none;
}
}



#news {
background-color: #f0f6fd;
padding: 100px 0;
}
#news.newsarchive {
padding-top: 140px;
}
#news h2 {
font-size: 18px;
line-height: 1.2;
font-weight: 700;
text-align: center;
}
#news ul {
margin: 50px 0;
border-top: 1px dotted #b3b3b3;
font-size: 14px;
line-height: 1.5;
}
#news ul li {
border-bottom: 1px dotted #b3b3b3;
}
#news ul li a {
display: flex;
justify-content: space-between;
padding: 32px;
padding-bottom: 28px;
}
.newsdate {
padding-right: 40px;
color: #808080;
}
.newstxt {
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media screen and (min-width:1025px) {
.newsdate {
width: 170px;
box-sizing: border-box;
}
#news ul li a::after {
content: "→";
width: 110px;
text-align: right;
color: #808080;
transition: transform .2s;
}

#news ul li a.nolink::after {
display:none;
}


#news ul li a:hover::after {
transform: translateX(10px);
}
}
#news ul li a:hover .newstxt {
text-decoration: underline;
}

#news ul li a.nolink:hover .newstxt {
text-decoration: none;
}

@media screen and (max-width:680px) {
#news {
padding: 80px 0;
}
#news.newsarchive {
padding-top: 110px;
}
#news ul li a {
flex-direction: column;
padding: 20px 0;
}
.newsdate {
margin-bottom: 10px;
}
.newstxt {
white-space: normal;
text-align: justify;
text-justify: inter-ideograph;
}
#news ul li a:hover .newstxt {
text-decoration: none;
}
}
.nwesbtn {
width: 220px;
height: 60px;
padding: 0 50px;
line-height: 60px;
display: flex;
justify-content: space-between;
font-size: 16px;
color: #4590e8;
font-weight: 500;
box-sizing: border-box;
background-color: #fff;
box-shadow: 2px 3px 4px rgba(0,0,0,.2),0 0 0 rgba(0,0,0,0) inset;
margin: auto;
transition: .2s;
border-radius: 3px;
}
.newsarchive .nwesbtn {
width: 270px;
}
.nwesbtn::after {
content: "→";
color: #4590e8;
font-weight: 400;
}
.nwesbtn:hover {
box-shadow: 0 0 0 rgba(0,0,0,0),2px 2px 4px rgba(0,0,0,.2) inset;
transform: translateY(1px);
}


#message {
	padding-top: 120px;
}
#message .message-top-box {
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 102px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	background: url(images/message_line01.jpg) no-repeat center bottom / 100% 1rem;
}
#message .message-top-box .title-box {
	margin-left: 3.6%;
	padding-bottom: 1.4%;
	width: 46.6%;
}
#message .message-top-box .title-box h1 {
	margin-bottom: 57px;
}
#message .message-top-box .title-box h1 img {
	width: 100%;
}
#message .message-top-box .title-box p {
	font-size: 13.5px;
	font-weight: 500;
}
#message .message-top-box .title-box p span {
	margin-left: 3px;
	font-size: 24.5px;
	font-weight: 500;
	line-height: 1;
}
#message .message-top-box .text-box {
	width: 41.6%;
}
#message .message-top-box .text-box p {
	color: #595757;
	font-weight: 500;
	font-size: min(1.19vw,15.5px);
	line-height: 2.2;
}
#message .message-intro-box {
	margin-left: auto;
	margin-right: auto;
	padding-top: 72px;
	max-width: 1226px;
}
#message .message-intro-box h2 {
	margin-bottom: 86px;
	font-size: 24.5px;
	font-weight: 900;
	text-align: center;
}
#message .message-intro-box .img-box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#message .message-intro-box .img-box:not(:last-child) {
	margin-bottom: 96px;
}
#message .message-intro-box .img-box .photo-box {
	width: 184px;
}
#message .message-intro-box .img-box .photo-box img {
	width: 100%;
}
#message .message-intro-box .img-box .photo-box .txt {
	margin-top: 5px;
	display: block;
	color: #595757;
	font-size: 14px;
	font-weight: 500;
}
#message .message-intro-box .img-box .photo-box .txt .name {
	margin-top: 1px;
	display: block;
	font-size: 24px;
	font-weight: 900;
}
#message .message-intro-box .img-box .text-box {
	margin-top: -8px;
	width: calc(100% - 237px);
}
#message .message-intro-box .img-box .text-box p {
	color: #595757;
	font-weight: 500;
	font-size: 15.5px;
	line-height: 2.1;
}
@media screen and (max-width:1025px) {
	#message {
		padding-top: 95px;
	}
	#message .message-top-box {
		padding-bottom: 45px;
		max-width: 600px;
		display: block;
		background-size: 100% 0.5rem;
		box-sizing: border-box;
	}
	#message .message-top-box .title-box {
		margin: 0 0 25px;
		padding-bottom: 0;
		width: auto;
	}
	#message .message-top-box .title-box h1 {
		margin-bottom: 20px;
		width: 91%;
	}
	#message .message-top-box .title-box p {
		font-size: 13px;
	}
	#message .message-top-box .title-box p span {
		font-size: 21px;
	}
	#message .message-top-box .text-box {
		width: auto;
	}
	#message .message-top-box .text-box p {
		font-size: 14px;
	}
	#message .message-intro-box {
		padding-top: 40px;
		max-width: 600px;
		box-sizing: border-box;
	}
	#message .message-intro-box h2 {
		margin-bottom: 30px;
		font-size: 20px;
	}
	#message .message-intro-box .img-box {
		display: block;
	}
	#message .message-intro-box .img-box:not(:last-child) {
		margin-bottom: 40px;
	}
	#message .message-intro-box .img-box .photo-box {
		width: auto;
	}
	#message .message-intro-box .img-box .text-box {
		margin-top: 15px;
		width: auto;
	}
	#message .message-intro-box .img-box .text-box p {
		font-size: 14px;
	}
}


#about {
padding-bottom:40px;
}
#about .wrapper {
display: flex;
justify-content: space-between;
}
#aboutL {
width: 49%;
}
#aboutL h2 {
font-size: 50px;
font-weight: bold;
line-height: 1.2;
margin-bottom: 50px;
}
#aboutL p {
font-size: 22px;
font-weight: bold;
line-height: 1.7;
}
#aboutR {
width: 49%;
}
#aboutR ul {
margin: -40px 0;
}
#aboutR li {
display: flex;
align-items: center;
justify-content: space-between;
padding: 40px 0 40px 4%;
}
#aboutR li+li {
border-top: 1px solid #DAE9FA;
}
#aboutR li img {
display: block;
width: 90px;
}
#aboutR li>div {
flex: 1;
padding-left: 8%;
}
#aboutR li h3 {
font-size: 22px;
line-height: 1.2;
font-weight: bold;
margin-bottom: 15px;
color: #4590e8;
}
#aboutR li p {
font-size: 15px;
line-height: 1.4;
font-weight: 500;
}
@media screen and (max-width:1023px) {
#about .wrapper {
flex-direction: column;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
#aboutL,
#aboutR{
width: 100%;
}
#aboutL {
margin-bottom: 70px;
}
#aboutL h2 {
margin-bottom: 30px;
}
#aboutL p {
font-size: 20px;
}
#aboutL p br {
display: none;
}
}
@media screen and (max-width:680px) {
#aboutL {
margin-bottom: 50px;
}
#aboutL h2 {
font-size: 42px;
}
#aboutL p {
font-size: 18px;
}
}
@media screen and (max-width:414px) {
#aboutL h2 {
font-size: 36px;
}
#aboutL p br {
display: block;
}
#aboutR ul {
margin: -30px 0;
}
#aboutR li {
padding: 30px 0;
}
#aboutR li img {
width: 70px;
}
#aboutR li>div {
padding-left: 4%;
}
}









.section-header{
    text-align : center;
    font-size : 21px;
    line-height : 2em;
    margin-left : auto;
    margin-right : auto;
    position : relative;
    padding-top : 115px;
    font-weight : bold;
}
.section-header::before{
    content : "";
    position : absolute;
    left : 0;
    right : 0;
    top : 0;
    height : 5px;
    background : linear-gradient(to right,rgb(69,144,232) 0,rgb(30,156,215) 56.7416%,rgb(0,117,190) 100%);
}
.section-header__title{
    font-size: 40px;
    margin-bottom : 1em;
    letter-spacing : .25em;
    font-weight : bold;
    line-height:1.3;
}
.section-header__text{
    font-weight : bold;
}
@media screen and (max-width:680px) {
    .section-header{
        font-size :16px;
    }
    .section-header__title{
        font-size: 34px;
    }
}




#business{
    overflow: hidden;
    margin-top : 70px;
}
#business-solution{
    overflow: hidden;
}
#business-solution section{
    margin-top : 110px;
    position : relative;
}

#business-solution .business-solution__title{
    font-size: 34px;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 40px;
}
#business-solution .business-solution__title-sub{
    font-size : 19px;
    font-weight : bold;
    margin-bottom : .5em;
}
#business-solution .business-solution__text{
    font-size : 15px;
    line-height : 1.6em;
}

#business-solution .solution-typeA,
#business-solution .solution-typeB{
    display : flex;
    justify-content: space-between;
    align-items : start;
    flex-wrap : wrap;
}

#business-solution .solution-typeA > *{
    width : 45%;
}
#business-solution .solution-typeB > *{
    width : 32%;
}
@media screen and (max-width:1025px) {
    #business-solution .wrapperL {
        max-width: 600px;
    }
    #business-solution .solution-typeA,
    #business-solution .solution-typeB{
        flex-direction: column;
    }
    #business-solution .solution-typeA > *,
    #business-solution .solution-typeB > *{
        width : 100%;
        margin-bottom : 10vw;
    }
}

#business-solution .solution-typeA img,
#business-solution .solution-typeB img{
    max-width : 100%;
    vertical-align : bottom;
}

#business-solution .solution-typeA-columns{
    display : flex;
    justify-content: space-between;
    align-items : center;
    flex-wrap : wrap;
}
#business-solution .solution-typeA-columns > *{
    width : 49%;
    margin-bottom : 2%;
}
#business-solution #solution-01{
    position : relative;
}
#business-solution #solution-01::before{
    position : absolute;
    content : "";
    top : -75px;
    background : #f0f6fd;
    right : -9999px;
    bottom : -126px;
    left : 16.6666%;
    z-index : -1;
}
@media screen and (max-width:1025px) {
    #business-solution #solution-01::before{
        bottom : 0px;
    }
}
#business-solution .contents-image{
    margin-bottom : 10px;
}
#business-solution .business-works{
	padding-bottom:80px;
}

#business-solution .business-works__header{
    position : relative;
    text-align : center;
    font-size : 15px;
    margin-top : 55px;
}
#business-solution .business-works__header > p{
    font-weight : bold;
}
#business-solution .business-works__header__bigTxt{
    font-size : 22px;
    font-weight : bold;
}
#business-solution .business-works__header__att{
    text-align : right;
    right : 0;
    top : 50%;
    position : absolute;
    margin-top : 0;
    font-size : 15px;
    font-weight : normal !important;
}
#business-solution .business-works__header::before,
#business-solution .business-works__header::after{
    /*position : absolute;
    height : 1px;
    max-width : 483px;
    min-width : 380px;
    content : "";
    background : #4d4d4d;
    top : 50%;*/
}
@media screen and (max-width:1025px) {
    #business-solution .business-works__header__att{
        position : relative;
        margin-top : .5em;
        text-align : center;
    }
    #business-solution .business-works__header::before,
    #business-solution .business-works__header::after{
        max-width : 50px;
        min-width : 50px;
    }
}
@media screen and (max-width:680px) {
    #business-solution .business-works__header::before,
    #business-solution .business-works__header::after{
        content : none;
    }
}
#business-solution .business-works__header::before{
    left : 0;
}
#business-solution .business-works__header::after{
    right : 0;
}
#business-solution .business-works__lists{
    display : flex;
    flex-wrap : wrap;
    justify-content: center;
    max-width : 854px;
    margin-left : auto;
    margin-right : auto;
    margin-top : 50px;
    align-items: center;
}
#business-solution .business-works__lists::after {
    content: '';
    width: 100%;
    order: 0;
}
#business-solution .business-works__lists::before {
    content: '';
    width: 100%;
    order: 2;
}
#business-solution .business-works__lists > *{
    width : 25%;
    text-align : center;
    margin-bottom : 40px;
    box-sizing : border-box;
}
#business-solution .business-works__lists > *.w50--left,
#business-solution .business-works__lists > *.w50--right{
    width : 50%;
    padding-left : 25%;
}
#business-solution .business-works__lists > *.w50--right{
    padding-left : 0;
    padding-right : 25%;
}
#business-solution .business-works__lists > *.w10{
    width : 10%;
}
#business-solution .business-works__lists > *.w20{
    width : 20%;
}
#business-solution .business-works__lists > *.w30{
    width : 30%;
}
#business-solution .business-works__lists > *.w40{
    width : 40%;
}
#business-solution .business-works__lists > *.w100{
    width : 100%;
}
#business-solution .business-works__lists > * img{
    max-width : 100%;
}
@media screen and (max-width:1025px) {
    #business-solution .business-works__lists > *{
        padding : 0 4%;
    }
}
@media screen and (max-width:680px) {
    #business-solution .business-works__lists > *{
        padding : 0 3%;
        box-sizing : border-box;
    }
}

#business-solution .business-works .addTxt{
    font-size : 18px;
    margin-left : auto;
    margin-right : 0;
    max-width : 461px;
    text-align : center;
}

#business-solution #solution-02{
    position : relative;
    padding-top : 175px;
}
#business-solution #solution-02::before{
    position : absolute;
    content : "";
    top : 75px;
    background : #f0f6fd;
    left : -9999px;
	bottom : 0;
    right : 16.6666%;
    z-index : -1;
}
@media screen and (max-width:1025px) {
    #business-solution #solution-02{
        position : relative;
        padding-top : 0;
    }
    #business-solution #solution-02::before{
        top : -75px;
    }
}
#business-solution .business-dx{
    display : flex;
    justify-content: start;
    font-size : 15px;
    line-height : 2.3em;
    margin-bottom : 43px;
}

#business-solution .business-dx__title{
    font-size : 17px;
    font-weight : bold;
}
#business-solution .business-dx > *{
    max-width : 600px;
}
#business-solution .business-dx > *:first-child{
    min-width : 243px;
    margin-right : 43px;
}
#business-solution .business-dx > *:nth-child(1){
    text-align : right;
}
#business-solution .business-dx.first > *:nth-child(1){
    text-align : left;
}
@media screen and (max-width:680px) {
    #business-solution .business-dx{
        flex-direction: column;
    }
    #business-solution .business-dx.first{
        flex-direction: column-reverse;
    }
    #business-solution .business-dx > *:nth-child(1){
        margin-right : 0;
        text-align : center;
    }
    #business-solution .business-dx.first > *:nth-child(2){
        text-align : center;
    }
    #business-solution .business-dx.first > *:nth-child(2) > img{
        max-width : 50%;
    }

    #business-solution .business-dx > *:nth-child(1){
        margin-right : auto;
        margin-left : auto;
    }

}
#business-solution #solution-03{
    position : relative;
    /*padding-top : 175px;*/
}
#business-solution #solution-03::before{
    position : absolute;
    content : "";
    /*top : 75px;*/
    top : -75px;
    background : #f0f6fd;
    right: -9999px;
    bottom : -126px;
    left : 16.6666%;
    z-index : -1;
}



#leadership{
    overflow: hidden;
    margin-top : 85px;
}
@media screen and (max-width:1025px) {
    #leadership{
        margin-top : 85px;
    }
}
@media screen and (max-width:680px) {
    #leadership{
        margin-top : 85px;
    }
}
#leadership .leaders{
    display : flex;
    justify-content: space-between;
    flex-wrap : wrap;
    margin : 75px auto 105px auto;
}

#leadership .leaders > * {
    width : 30%;
    font-size : 15px;
    line-height : 1.6em;
    margin-bottom : 80px;
    display : flex;
    flex-direction: column;
}
#leadership .leaders-photo{
    margin-bottom : 40px;
    text-align : center;
    aspect-ratio: 1 / 1.02;
}
#leadership .leaders-op{
    font-size : 17px;
    font-weight : bold;
    margin-bottom : .3em;
}
#leadership .leaders-op---line3{
    min-height : calc(1.4em * 3);
    display : flex;
    align-items: end;

}
#leadership .leaders-op---line4{
    min-height : calc(1.4em * 4);
    display : flex;
    align-items: end;

}
@media screen and (max-width:1222px) {
    #leadership .leaders-op---line3 {
        min-height: calc(1.4em * 4);
    }
    #leadership .leaders-op---line4 {
        min-height: calc(1.4em * 5);
    }
}
@media screen and (max-width:1025px) {
    #leadership .wrapperL {
        max-width: 600px;
    }
    #leadership .leaders{
        flex-direction: column;
        margin : 75px auto 30px auto;
    }
    #leadership .leaders > * {
        width : 100%;
    }
    #leadership .leaders-photo{
        aspect-ratio: auto;
    }
    #leadership .leaders-op---line3 {
        min-height : auto;
    }
    #leadership .leaders-op---line4 {
        min-height : auto;
    }
}

#leadership .leaders-photo img{
    max-width : 100%;
}
#leadership .leaders-wrap{
    display : flex;
    flex-direction: column;
}

#leadership .leaders-name{
    font-size : 22px;
    font-weight : bold;
    margin-bottom : .5em;
}
#leadership .leaders-detail{
}


#leadership .members {
	margin: 0 auto;
}
#leadership .members .members-content {
	padding-top: 38px;
	padding-bottom: 100px;
	border-top: 1px solid #000;
}
#leadership .members h3 {
	margin-bottom: 52px;
	font-size: 29px;
	font-weight: 900;
	text-align: center;
}
#leadership .members ul {
	display: flex;
	flex-wrap: wrap;
	gap: 58px 5.066666%;
}
#leadership .members li {
	width: 21.2%;
}
#leadership .members li .pho {
	margin-bottom: 18px;
}
#leadership .members li .pho img {
	width: 100%;
}
#leadership .members li .txt-box p {
	margin-bottom: 9px;
	font-size: min(16.5px,1.11vw);
	font-weight: 700;
	line-height: 1.2;
}
#leadership .members li .txt-box .job {
	margin-bottom: 13px;
	color: #0b308e;
	font-size: 15px;
}
#leadership .members li .txt-box .job.cor01 {
	color: #e4004f;
}
#leadership .members li .txt-box .job.cor02 {
	color: #f29600;
}
#leadership .members li .txt-box .job.cor03 {
	color: #6fb92c;
}
#leadership .members li .txt-box .name {
	margin-bottom: 0;
	font-size: 25px;
}
@media screen and (max-width:1025px) {
	#leadership .members .members-content {
		padding-top: 30px;
		padding-bottom: 80px;
	}
	#leadership .members h3 {
		margin-bottom: 30px;
		font-size: 20px;
	}
	#leadership .members ul {
		gap: 20px 0;
		justify-content: space-between;
	}
	#leadership .members li {
		width: 47%;
	}
	#leadership .members li .pho {
		margin-bottom: 10px;
	}
	#leadership .members li .txt-box p {
		font-size: min(3.2vw,13px);
	}
	#leadership .members li .txt-box .job {
		margin-bottom: 8px;
		font-size: 14px;
	}
	#leadership .members li .txt-box .name {
		font-size: 17px;
	}
}


@media screen and (max-width:1026px) {
	.top-space{
		margin-top: 0;
	}
}
@media screen and (min-width:1026px) {
	.top-space{
		margin-top: 32vw;
	}
}


#solution {
overflow: hidden;
}

#solution section {
padding: 100px 0;
display: flex;
justify-content: space-between;
position: relative;
align-items: center;
}




.solutionImg ,
.solutionTxt {
width: 50%;
box-sizing: border-box;
}
.solutionImg img {
display: block;
width: 100%;
height: auto;
}
.solutionImg p {
font-size: 12px;
line-height: 1.6;
display: table;
margin-left: auto;
margin-top: 4px;
margin-right: -1em;
white-space: nowrap;
}
.solutionTxt .solutionTxtInner {
max-width: 460px;
}
.solutionTxt h3 {

}
.solutionTxt p {
font-size: 17px;
line-height: 1.8;
font-weight: 400;
margin-bottom: 10px;
text-align: justify;
text-justify: inter-ideograph;
}

#solution01 .solutionTxt ,
#solution03 .solutionTxt {
padding: 0 0 0 6.818%;
}
#solution02 .solutionTxt {
padding: 0 6.818% 0 0;
}
#solution01 .solutionTxt .solutionTxtInner ,
#solution03 .solutionTxt .solutionTxtInner {
margin-right: auto;
}
#solution02 .solutionTxt .solutionTxtInner {
margin-left: auto;
}

#solution section#solution01::before {
position: absolute;
z-index: -1;
content: "";
background-color: #f0f6fd;
top:-300px;
left: 15%;
right: -999999px;
bottom: 0;
}
#solution section#solution03::before {
position: absolute;
z-index: -1;
content: "";
background-color: #f0f6fd;
top:-0;
right: -150px;
left: -999999px;
bottom: 0;
}
.solutionTxtInner ul {
margin-bottom: 20px;
margin-top: -10px;
}
.solutionTxtInner li {
display: flex;
align-items: center;
justify-content: space-between;
padding: 30px 0;
}
.solutionTxtInner li+li {
border-top: 1px solid #DAE9FA;
}
.solutionTxtInner li .mark {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 60px;
font-size: 18px;
line-height: 1.2;
font-weight: bold;
color: #4590e8;
}
.solutionTxtInner li .txt {
flex: 1;
font-size: 15px;
line-height: 1.4;
font-weight: 400;
}
.addTxt , .addTxt2{
padding: 18px 20px;
border: 1px solid #4590e8;
border-radius: 4px;
font-size: 14px;
line-height: 1.4;
background-color: #fff;
color: #4590e8;
font-weight: 500;
}
#solution02 .solutionTxt .addTxt ,
#solution03 .solutionTxt .addTxt {
font-size: 18px;
text-align: center;
}

.addTxt2{
position:relative;
margin: 2.5rem auto;
text-align: center;
}


.addTxt2 a{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

@media screen and (max-width:1024px) {
.addTxt2{
padding: 18px 0px;
}
}



@media screen and (max-width:1200px) {
#solution01 .solutionTxt ,
#solution03 .solutionTxt {
padding: 0 0 0 4%;
}
#solution02 .solutionTxt {
padding: 0 4% 0 0;
}
}
@media screen and (max-width:1080px) {
#solution section {
padding: 80px 0;
flex-direction: column !important;
max-width: 600px;
margin: auto;
}
.solutionImg ,
.solutionTxt {
width: 100%;
}
.solutionTxt {
padding: 0 !important;
padding-top: 40px !important;
}
.solutionTxt .solutionTxtInner {
max-width: 100%;
}
#solution section#solution01::before {
left: -20%;
}
#solution section#solution03 {
padding-bottom: 100px;
}
}
@media screen and (max-width:680px) {
#solution h2 {
padding-top: 80px;
}
#solution section {
padding: 60px 0;
}
.solutionTxt h3 {
font-size: 32px;
margin-bottom: 30px;
}
.solutionTxt p {
font-size: 16px;
}
#solution section#solution03 {
padding-bottom: 80px;
}
}
@media screen and (max-width:480px) {
.solutionImg p {
font-size: 10px;
}
.solutionTxt h3 {
font-size: 28px;
}
.solutionTxt p {
font-size: 15px;
}
}
@media screen and (max-width:413px) {
#solution h2 span {
font-size: 24px;
}
.solutionTxt h3 {
font-size: 26px;
text-align: justify;
text-justify: inter-ideograph;
}
.solutionTxt h3 br {
display: none;
}
.solutionTxtInner li .mark {
width: 20px;
padding-right: 20px;
padding-left: 10px;
}
}








#company {
background-color: #4e6473;
padding: 100px 0;
color: #fff;
}
#company h2 {
font-size: 28px;
line-height: 1.2;
font-weight: 700;
text-align: center;
letter-spacing: 3px;
}
#company p {
font-size: 17px;
line-height: 1.8;
font-weight: 500;
text-align: center;
margin: auto;
margin-top: 50px;
width: 90%;
max-width: 900px;
}
#company p span {
display: inline-block;
}
#company table {
width: 100%;
max-width: 550px;
margin: auto;
margin-top: 38px;
font-size: 15px;
line-height: 1.5;
}
#company table th ,
#company table td {
padding: 22px 10px;
border-bottom: 1px solid #58819a;
}
#company table tr:last-child th ,
#company table tr:last-child td {
border-bottom: none;
}
#company table tr:first-child th ,
#company table tr:first-child td {
border-top: 1px solid #58819a;
}
#company table th {
white-space: nowrap;
padding-right: 20px;
}
#company table td {
width: 1%;
white-space: nowrap;
}
#company table td span {
display: inline-block;
margin-right: 1em;
}
@media screen and (max-width:680px) {
#company {
padding: 80px 0;
}
}
@media screen and (max-width:580px) {
#company p {
text-align: justify;
text-justify: inter-ideograph;
width: 100%;
font-size: 14px;
margin-top: 40px;
}
#company p span {
display: inline;
}
#company table {
margin-top: 30px;
}
#company table th {
padding-left: 0;
}
#company table td {
padding-right: 0;
width: auto;
white-space: normal;
}
}




#philosophy {
	margin: 0 auto;
	padding-top: 50px;
}
#philosophy .photo img {
	width: 100%;
}
@media screen and (max-width:1025px) {
	#philosophy {
		max-width: 600px;
	}
}




footer .footer-greeting{
    background : #fff;
    font-size : 48px;
    text-align : center;
    padding-top : 113px;
    padding-bottom : 122px;
    font-weight : bold;
    color : #4d4d4d;
    margin-right : auto;
    margin-left : auto;
}

footer .footer-greeting--blue {
    color : #4590e8;
    font-weight : bold;
}
footer .footer-greeting--sub{
    font-size : 25px;
    font-weight : bold;
    margin-top : 50px;
}
@media screen and (max-width:680px) {
    footer .footer-greeting{
        font-size : 30px;
        padding-top : 70px;
        padding-bottom : 70px;
    }
    footer .footer-greeting--sub{
        font-size : 20px;
    }
}
footer .footer-navi{
    padding: 50px 0;
    color: #fff;
    /*background: rgb(69,144,232);
    background: linear-gradient(45deg, rgba(69,144,232,1) 0%, rgba(30,156,215,1) 50%, rgba(0,117,190,1) 100%);*/
    background: rgb(59,125,203);
    background: linear-gradient(45deg, rgba(59,125,203,1) 0%, rgba(32,154,210,1) 50%, rgba(0,100,162,1) 100%);
}
footer .footer-navi .wrapper,
footer .footer-navi .wrapperL{
display: flex;
align-items: center;
justify-content: space-between;
    margin-left : auto;
    margin-right : auto;
}
#footerlogo {
width: 108px;
padding-bottom: 10px;
}
#footerlogo img {
display: block;
width: 100%;
}
#footernav {
flex: 1;
}
#footernav ul {
display: flex;
margin-left: 60px;
}
#footernav ul li+li {
margin-left: 40px;
}
#footermail {
width:400px;
margin:10px auto 0 auto;
}
#footermail a {
background-color: #fff;
color: #4590e8;
display: flex;
justify-content: center;
padding: 10px 20px;
border-radius: 3px;
transition: .2s;
box-shadow: 2px 3px 4px rgba(0,0,0,.2),0 0 0 rgba(0,0,0,0) inset;
}
#footermail a:hover {
box-shadow: 0 0 0 rgba(0,0,0,0),2px 2px 4px rgba(0,0,0,.3) inset;
transform: translateY(1px);
}
#footermail a span {
font-weight: bold;
line-height: 1.8;
}
#footermail a span+span {
position: relative;
padding-left: 1em;
}
#footermail a span+span::before {
position: absolute;
content: "/";
font-size: 0.9em;
left: 0.3em;
top: 0;
font-weight: bold;
}
@media screen and (min-width:1050px) and (max-width:1140px) {
#footermail a {
align-items: center;
justify-content: center;
}
}
@media screen and (max-width:1050px) {
footer .footer-navi {
padding: 80px 0;
}
footer .footer-navi .wrapper,
footer .footer-navi .wrapperL{
flex-direction: column;
align-items: center;
justify-content: center;
}
#footernav {
width: 100%;
max-width: 780px;
margin: 50px auto;
}
#footernav ul {
width: 100%;
margin-left: 0;
justify-content: space-between;
}
#footernav ul li+li {
margin-left:0;
}
}
@media screen and (max-width:820px) {
#footernav {
margin: 20px auto 30px;
}
#footernav ul {
flex-direction: column;
align-items: center;
justify-content: center;
}
#footernav ul li {
margin: 10px 0;
}
#footermail {
width: 260px;
}
#footermail a {
flex-direction: column;
align-items: center;
justify-content: center;
}
#footermail a span+span {
padding-left: 0;
}
#footermail a span+span::before {
display: none;
}
}



/*共通ﾎﾊﾞｰ*/
.a_hover:hover {
	opacity:0.7;
	transition:all 0.3s;
}
/*ﾛｺﾞ*/
.log_fixed {
	position:fixed;
	display:block;
	width:160px;
	top:25px;
	left:20px;
	z-index:1;
}
/*SP*/
@media screen and (max-width:1390px) {
	/*ﾛｺﾞ*/
	.log_fixed {
		width:120px;
		top:35px;
		left:20px;
	}
}
/*SP*/
@media screen and (max-width:680px) {
	/*ﾛｺﾞ*/
	.log_fixed {
		width:80px;
		top:30px;
		left:10px;
	}
}
/*SalesPlusとは*/
#about .section-header::before {
	background:none;
}
#about .about-dentsu-retail-ai {
	max-width:600px;
	margin-bottom:30px;
}
/*ｽﾗｲﾄﾞ*/
#about .slide {
	margin-top:60px;
}
/*SP*/
@media screen and (max-width:1024px) {
	/*SalesPlusとは*/
	#about .about-dentsu-retail-ai {
		width:100%;
	}
	/*ｽﾗｲﾄﾞ*/
	#about .slide img {
		width:100%;
	}
}
/*Activity report*/
#activity {
	margin-top:30px !important;
}
#activity .section-header::before {
	background:none;
}
#activity .solution-typeB {
	margin-top:30px;
}
#activity .solution-typeB > * {
	margin-bottom:20px;
}
#activity .activity-category1 {
	display:inline-block;
	margin:10px 10px 10px 0;
	padding:0 12px 2px 12px;
	background:#2581bb;
	border-radius:30px;
	color:#ffffff;
}
#activity .activity-category2 {
	display:inline-block;
	margin:10px 10px 10px 0;
	padding:0 12px 2px 12px;
	background:#e4004f;
	border-radius:30px;
	color:#ffffff;
}
#activity .activity-category3 {
	display:inline-block;
	margin:10px 10px 10px 0;
	padding:0 12px 2px 12px;
	background:#6fb92c;
	border-radius:30px;
	color:#ffffff;
}
/*求人情報ﾊﾞﾅｰ*/
.recruit-banner {
	display:block;
	max-width:800px;
	margin:60px auto 0 auto;
}
.recruit-banner img {
	width:100%;
}
/*SP*/
@media screen and (max-width:1024px) {
	/*Activity report*/
	#activity .solution-typeB > * {
		margin-bottom:10vw;
	}
	/*求人情報ﾊﾞﾅｰ*/
	.recruit-banner {
		width:100%;
	}
}
/*ﾌｯﾀｰ*/
.footer-width {
	width:1000px;
}
/*SP*/
@media screen and (max-width:1050px) {
	/*ﾌｯﾀｰ*/
	.footer-width {
		box-sizing:border-box;
		width:100%;
	}
}