/* 看板製作ページCSS */

.main-img {
	width: 100vw;
     height: 40vh; 
     position:relative;
     background-image: url(../images/signboard/content_img.jpg);
     background-size: cover;
     background-position: center;
}
.main-img h2 {
  position: absolute;
  top:60%;
  left: 50%;
  transform: translate(-50%,-60%);
  color: #000;
  font-size: 1.8rem;
  text-shadow:0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}

/* キャッチ文章 */
.text_catch {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 30px;
}
.text_catch_s {
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
}
@media screen and (max-width: 600px) {
    .text_catch {
	font-size: 1.8rem;
}
}
@media screen and (max-width: 500px) {
    .text_catch {
	font-size: 1.3rem;
}
	.text_catch_s {
	font-size: 1rem;
}
}



/*フローチャート
-----------------------*/
.flowchart {
	width: 90%;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
	align-items: center;
	margin: 0 auto;
}
.plan .flowchart h3 {
	font-size: 1.3em;
	font-weight: bold;
	color: #6182ad;
	padding-bottom: 0px;
}
.flow_icon {
	width: 20%;
}
.flow_icon img {
	width: 80%;
}
.flow_setup {
	width: 80%;
}
.bubble {
	width:90%;
	position: relative;
	background: #e7cdf6;
	border-radius: 10px;
	padding: 30px 20px;
	text-align: left;
	margin: 10px auto;
}
@media screen and (max-width: 1100px) {
	.flowchart {
	width: 100%;
}
}

@media screen and (max-width: 800px) {
	.plan .flowchart h3 {
	font-size: 1.1em;
	padding-top: 10px;
}
}

@media screen and (max-width: 600px) {
	.plan .flowchart h3 {
	font-size: 1em;
	padding-top: 0px;
}
}


/* 製作事例 */
.work {
	background-color: #e5e5e5;
}
/*ボックス横並び３個
-----------------------*/
.work .col_3 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}
.work .col_3>div {
    width: 31%;
    padding: 50px 0px 50px;
	text-align: center;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 10px;
}
.work .col_3::after {
display: block;
content:"";
width: 31%;
}


.work .col_3 img {
	width: 75%;
}
.work h3 {
	font-size: 1.2em;
	font-weight: bold;
	padding-top: 30px;
	padding-bottom: 20px;
}
.work h3 a {
	color: #223a70;
}
.work h3 a:hover {
	color: #59b9c6;
}
@media screen and (max-width: 1100px) {
	.work .col_3>div {
    padding: 30px 18px 50px;
	}
	.work .col_3>div:not(:last-child) {
    margin-right: 10px;
}
}

@media screen and (max-width: 800px) {
	.work .col_3 {
	margin-bottom: 0px;
}
	.work .col_3>div:not(:last-child) {
    margin-right: auto;
	}
    .work .col_3>div {
        width: 80%;
		margin: 0 auto 50px;

    }
}
