/* WEB製作ページCSS */

.main-img {
	width: 100vw;
     height: 40vh; 
     position:relative;
     background-image: url(../images/web/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;
	margin-bottom: 130px;
}
@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;
}
}

/* サークル */
.circle_box {
	display: flex;
	justify-content:space-around;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 100px;
}

.circle{
   width:250px;
   height:250px;
   border-radius:50%;
   background:#ccc;
	margin-top: 30px;

   /*display:flexで中央配置*/
   display:flex;
   align-items:center;
   justify-content:center;
}
.circle p {
	font-weight: bold;
	text-align: center;
	font-size: 1.2em;
}

.kaiketu {
	margin: 50px auto;
	padding: 20px;
	text-align: center;
	background-color: #b0c4de;
	border-radius:15px;
	font-size: 2em;
	font-weight: bold;
	width: 85%;
}
@media screen and (max-width: 600px) {
    .kaiketu {
	font-size: 1.5em;
}
}

/* WEB制作の特徴 */
/*ボックス横並び２個
---------------------------------------------------------------------------*/
.col_2f {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin-bottom: 80px;
}
.imgbox_f {
	width: 50%;
	height: 100%;
	text-align: center;
	padding: 20px 0;
	overflow: hidden;
}
.imgbox_f img {
	width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
    .imgbox_f {
        width: 100%;
		padding: 10px 0;
    }
}

/*ボックス横並び２個 SPボックスリバース
---------------------------------------------------------------------------*/
.col_2f_reverse {
    width: 100%;
    display: flex;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

@media screen and (max-width: 800px) {
	.col_2f_reverse {
	flex-wrap: wrap-reverse;
}
}

.features img {
	width: 75%;
}
@media screen and (max-width: 1000px) {
	.features img {
	width: 85%;
		padding-top: 10px;
}
}

.layer1 {
	display:table;
	text-align:center;
	width: 47%;
	margin: 20px auto;
	padding: 50px 30px;
	background:#f4f4f4;
}
.layer1 div{
	display:table-cell;
	vertical-align:middle;
	font-size: 1.3em;
}
.layer1_h3 {
	font-size: 1.3em;
	font-weight: bold;
}
@media screen and (max-width: 1000px) {
	.layer1_h3 {
	font-size: 1.2em;
}
}

@media screen and (max-width: 800px) {
	.layer1 {
	width: 85%;
	margin: 0px auto;	
}
	.layer1_h3 {
	font-size: 1.2em;
}
}

@media screen and (max-width: 600px) {
	.layer1_h3 {
	font-size: 1em;
}
}

@media screen and (max-width: 500px) {
	.layer1 p {
	font-size: 0.8em;
}
}


/* 特徴ボックスパターン2 */

/*=========================================
 * Effect 2
=========================================*/
.effect2 {
	position: relative;
}
.effect2:before, .effect2:after {
	z-index: -1;
	position: absolute;
	content: "";
	bottom: 15px;
	left: 10px;
	width: 50%;
	top: 80%;
	max-width:300px;
	background: #777;
	-webkit-box-shadow: 0 15px 10px #777;
	-moz-box-shadow: 0 15px 10px #777;
	box-shadow: 0 15px 10px #777;
	-webkit-transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
}
.effect2:after
{
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	right: 10px;
	left: auto;
}



/* 製作プラン例 */
.plan {
	padding-bottom: 50px;
}

/*ボックス横並び３個
-----------------------*/
.plan .col_3 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
	margin-bottom: 50px;
}
.plan .col_3>div {
    width: 32%;
    padding: 30px 20px 50px;
	border: solid 1px #000;
	text-align: center;
	box-sizing: border-box;
}

.plan .col_3 .rank {
	font-size: 1.5em;
}
.plan .col_3 .rank img {
	width: 45%;
}
.plan h3 {
	font-size: 1.5em;
	font-weight: bold;
	padding-top: 30px;
	padding-bottom: 20px;
}
@media screen and (max-width: 1100px) {
	.plan .col_3>div {
    padding: 30px 20px 50px;
	}
	.plan .col_3>div:not(:last-child) {
    margin-right: 10px;
}
}

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

/*フローチャート
-----------------------*/
.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: #cde0fa;
	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;

    }
}
