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

/*トップ▼*/
.userguide_bg{
	width: 100%;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 0;
	margin-bottom: 100px;
}

.userguide_bg::after{ 
	content:'';
	position: absolute;
    background: linear-gradient(90deg, rgba(144,197,252,1) 0%, rgba(170,210,252,1) 47%, rgba(214,236,255,1) 100%);
    width: 100%; 
	height: 300px;
    top:0;
    left:0;
    z-index:0;
}

.userguide_bg h2{
	position: relative;
	z-index: 1;
	color: #fff;
    margin-top: 120px;
	text-align: center;
    line-height: 1.1em;
    font-weight: 600;
}

.userguide_bg h2 span{
	font-size:50%;
　　font-family: 'Oswald', sans-seｒrif;
   font-weight: 400;
}
/*トップ▲*/



/*------ページ内リンクボタンはじめ▼-------*/
#sr_page_link {
	max-width: 1500px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px auto;
	padding: 0 20px;
	align-items: center;
    flex-wrap: wrap;
	
	/*stickyで固定*/
	position: -webkit-sticky;/*Safari*/
	position: sticky;
	/*固定したい位置*/
	top: 80px;
	z-index: 99;
	/*height: 120px;*/
    background: #fff;
	justify-content: space-between;
}

#sr_page_link li{
	width: 19%;
  	padding: 8px 5px;
	list-style: none;	
}

/*3つ目の要素を左寄せにするため空白の4つ目を作る*/
#sr_page_link::after{
  content:"";
  display: block;
  width:33%; 
}

#sr_page_link li a{
	align-items: center;
	font-size: 1.3rem;
	font-weight: 500;
	height: 60px;
	position: relative;
	display: flex;
	cursor: pointer;
	transition: all 0.2s;
	width: 100%;
	color: #5297c4;
	border-bottom: 2.5px solid #ACD6F2;
	position: relative;
}

/*矢印*/
#sr_page_link li a::after{
position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.5em;   /* arrow size */
  height: 0.5em;  /* arrow size */
  border-top: 2px solid #5297c4;  /* thickness, color */
  border-right: 2px solid #5297c4;
  -webkit-transform: rotate(45deg);
  transform: translateY(-25%) rotate(135deg);
}

#sr_page_link li a:hover{
border-bottom: 2.5px solid #FF8F00;
}

/*#sr_page_link li a::before{
   content:'▼';
   font-size:1rem;
   color: #ccc;
	position: absolute;
	right: 10px;
}*/

#sr_page_link li a.is-active::before {
        content: "";
        position: absolute;
        top:2px;
        left: 0;
        width: 100%;
        height: 100%;
		border-bottom: 2.5px solid #FF8F00;
      }

/*----画面幅960px以下-----------------------*/
@media screen and (max-width:960px) {
	#sr_page_link li{
	width: 33%;
}
	
	#sr_page_link li a{
		padding:5px 5px;
		font-size: 17px;
		height: 60px;
}
	
	#sr_page_link li a::before{
	right: 10px;
}
}

/*----画面幅520px以下-----------------------*/
@media screen and (max-width:520px) {

	#sr_page_link li{
	width: 50%;
	padding: 5px 3px;
}
	#sr_page_link li a{
		padding:5px 5px;
		font-size: 15px;
		height: 60px;
}
}

/*------ページ内リンクボタンおわり▲-------*/



/*===================================
           共通設定はじめ▼
===================================*/
.guide_all {
	max-width: 1200px;
	margin: 0 auto 80px auto;
}

.guide_all h3{
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 50px;
}

@media screen and (max-width:520px) {
.guide_all h3{
	font-size: 2rem;
}
}


.guide_all h3 span{
	color:#FFBE43;
}

/*下線吹き出し▼*/
.guide_all h3 {
    position: relative;
    padding: 0.8rem 0;
    border-bottom: 2.5px solid;
    text-align: center;
}

.guide_all h3:before,
.guide_all h3:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

.guide_all h3:before {
    border: 16px solid;
    border-color: transparent;
    border-top-color: #5297c4;
    margin-left: -16px;
}

.guide_all h3:after {
    border: 12px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -12px;
}


.guide_all p{
	margin-bottom: 30px;

}

.service_sab_p{
	text-align: center;
}

.ser_back{
	/*background: #EEF8FF;*/
}

/*===================================
           共通設定おわり▲
===================================*/


/*------------------------------------------------
               ご注文の流れはじめ▼
------------------------------------------------*/

.guide_flow{
	max-width: 1200px;
	margin : 0 auto;
	text-align:center;
}

.flow_parts{
	padding: 0 30px 0 60px;
}

.flow_parts li{
	padding-bottom: 10px;
}

.flow_parts li p{
	padding-top: 10px;
}

.red{
	color: red;
}

/*お問合せ・入力ホームボタン*/
.flow_link{
	padding: 2px 6px;
	color: #FF8F00;
	background: #fff;
	border: 1.5px solid #FF8F00;
	border-radius: 20px;
	margin-right:3px;
	display: inline-block;/*改行位置を指定*/
}

.flow_link:hover{
	color: #fff;
	background: #FF8F00;
	border: 1.5px solid #FF8F00;
	border-radius: 20px;
}


.flow_parts h4 {
  position: relative;
  background:#E6F5FF;
  padding: 2px 5px 2px 60px;
  text-align: left;
  font-size: 1.8rem;
  color: #5297c4;
  font-weight: 600;
  border-radius: 0 10px 10px 0;
}


.flow_parts h4:before {
  display: inline-block;
  line-height: 40px;
  position: absolute;
  padding: 0em;
  color: white;
 /* background: #ffa337;*/
  font-weight: 900;
  width: 80px;
  text-align: center;
  height: 80px;
  line-height: 40px;
  left: -1.35em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: solid 3px white; 
  border-radius: 50%;
}


.flow01:before{
	content: url("../images/flow_01.svg");
}

.flow02:before{
	content: url("../images/flow_02.svg");
}

.flow03:before{
	content: url("../images/flow_03.svg");
}

.flow04:before{
	content: url("../images/flow_04.svg");
}

.flow05:before{
	content: url("../images/flow_05.svg");
}

.flow06:before{
	content: url("../images/flow_06.svg");
}

.flow_parts p{
	text-align: left;
	padding-left: 50px;
}

@media screen and (max-width:960px) {
	.flow_parts{
	padding: 0 10px 0 45px;
}
	
.flow_parts h4:before {
  width: 70px;
  height: 70px;
}
	
.flow_parts p{
	text-align: left;
	padding-left: 10px;
}
}


/*------------------------------------------------
               ご注文の流れおわり▲
------------------------------------------------*/
/*------------------------------------------------
               データ作成はじめ▼
------------------------------------------------*/


#create {max-width: 1000px; margin: 0 auto; padding: 0 20px; position: relative; margin-bottom: 100px;}
#create header {text-align: center; z-index: 1; margin-bottom: 30px;}
#create header {z-index: 1; margin-bottom: 30px;}
#create h4 {display: flex; align-items: center; padding-bottom: 14px; font-size:1.4rem;font-weight: 600;} 
#create h4:before,
#create h4:after {content: ""; flex-grow: 1; border-top: 3px double #666;}
#create h4:before {margin-right: 1rem;} 
#create h4:after {margin-left: 1rem;}

#create #os, #create #mk, #create #tm, #create #up {margin-top: 60px;}

.create_first_p{text-align: center; margin-top: 50px;}

/*カラー*/
.r {color:red;}

/* 対応のos・アプリケーション */

#create .os-area {display: flex; flex-wrap: wrap; justify-content:space-between;}
#create .os-area table {border: 1px solid #666;}
#create .os-area th {text-align: center; padding: 0 10px; background: #f0f0f0;}
#create .os-area td {padding: 4px 4px 6px;}
#create .os-area img {width: 25px; margin: 0 6px;}
#create .os-area td,
#create .os-area th {
	word-break: break-all;
	border-bottom: 1px solid #666;
	letter-spacing: 0.1em; /*文字間*/
}

#create .os-area .ostable {width: 29%}
#create .os-area .aptable {width: 67%}
#create .os-area .aptable td.ap {
	width: 100px;
	text-align: center;
	border-right: 1px dashed #666;
	padding: 0;
}

@media screen and (max-width:768px) {
	#create .os-area {display: block; max-width: 500px; margin: auto; text-align: center;}
	#create .os-area table {margin-bottom: 20px;}
	#create .os-area .ostable {width: 100%}
	#create .os-area .aptable {width: 100%}
}

/* データ作成方法 */

#create .make {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px dashed #b4b4b4;
}

#create .make h5 {
	width: 28%;
	text-align: center;
	background: #f0f0f0;
	display: grid;
	place-items: center;
}

#create .make img {margin-top: 6px;}
#create .make ul {width: 70%; line-height: 1.5; text-align: justify;}
#create .make ul li {position: relative; padding-left: 20px; margin-bottom: 15px;}
#create .make ul li:before {
	content: "○";
	position: absolute;
	top: 0;
	left: 0;
	color: #666;
}

#create .make ul li.make-kahen {padding-left: 0px; font-weight:700; font-size: 1.1rem;}
#create .make ul li.make-kahen:before {content: "";}

#create .lbtn-area {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

#create .lbtn-area a {
	width: 160px;
	display: inline-block;
	vertical-align: 1px;
	line-height: 0;
	border-radius: 50px;
	padding: 12px 2px 14px 2px;
	margin-bottom: 15px;
	border: 1px solid #b4b4b4;
	/*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

#create .lbtn-area a.dl-b1:hover {background:rgba(20,50,150,0.8); color: #fff;}
#create .lbtn-area a.ht-b1:hover {background:rgba(150,50,80,0.8); color: #fff;}
#create .lbtn-area a.vb-b1:hover {background:rgba(0,100,50,0.8); color: #fff;}
#create .lbtn-area a.sv-b1:hover {background:rgba(100,60,140,0.8); color: #fff;}

/* テンプレート */

#create p.tm-p {text-align: center; margin-bottom: 18px;}
#create p.tm-kome {
	text-align: justify;
	margin-top: 20px;
	color: #999;
	line-height: 1.3;
	padding: 6px 8px 8px 8px;
	border: 1px dashed #b4b4b4;
}

#create .tm-area {display: flex; align-items: flex-end; flex-wrap: wrap; justify-content:space-between;}
#create .tm-area .tm-d {width: 47%; margin-bottom: 18px;}
#create .tm-area .tm-d .big1 {font-weight:700;}
#create .tm-area .tm-d h5 {padding-bottom: 4px; font-weight:400;}

#create .tm-area .tm-d ul li {
	position: relative;
	min-height: 47px;
	border-bottom: 1px solid #dcdcdc;
	border-right: 1px solid #dcdcdc;
	margin-bottom: 10px;
	line-height: 1.3;
	/*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

#create .tm-area .tm-d ul li.tm-ai {background: #f8f5ee;}
#create .tm-area .tm-d ul li.tm-ai:hover {background: #f08200; color: #fff;}
#create .tm-area .tm-d ul li.tm-pdf {background: #f7f3f5;}
#create .tm-area .tm-d ul li.tm-pdf:hover {background: #dc0000; color: #fff;}

#create .tm-area .tm-d ul li a {transition:all 0.2s ease-in-out;}
#create .tm-area .tm-d ul li:hover a {color: #fff;}

#create .tm-area .tm-d ul li p {padding: 3px 0 5px 52px;}
#create .tm-area .tm-d ul li img {width: 46px;}
#create .tm-area .tm-d ul li figure {position: absolute; height: 100%;}
#create .tm-area .tm-d ul li figure img.imghover {
	position: absolute;
	top: 0;
	left: 0;
	/*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

#create .tm-area .tm-d ul li:hover figure img.imghover {opacity:0; /*透過0に*/}

@media screen and (max-width:768px) {
	#create .tm-area {display: block; max-width: 360px; margin: auto;}
	#create .tm-area .tm-d {width: 100%;}
}


/*------------------------------------------------
               データ作成おわり▲
------------------------------------------------*/

/*------------------------------------------------
               ご入稿方法はじめ▼
------------------------------------------------*/

.guide_submit div{
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

#date-submit h4 {
	font-size:1.2rem; 
	font-weight: 500;
	position:relative;
	padding: 0em 0.3em 0.3em 1.5em;
}


/*丸の中矢印*/
#date-submit h4::before,#date-submit h4::after {
	position: absolute;
	content: '';
	display: inline-block;
}
#date-submit h4::after {
	top: .30em;
	left: 0em;
	width: 25px;
	height: 25px;
	background-color: #5297c4;
	border-radius: 100%;}

#date-submit h4::before{
	z-index: 2;
	top: 0.7em;
	left: 0.35em;
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(+45deg);
}





#create #up .send{font-size: 1.4rem;border-bottom: 1px solid #000;margin-left: 10px;word-break: break-all;}

#create #up .sendurl{
	padding: 15px 15px 15px 15px;
	border: 1px solid;
	margin-top: 20px;
}

.send_u{
	font-weight: 600;}

#create #up a:hover{
	color: #FF5A5D;
}

#create ul.upkome {line-height: 1.3; margin: 6px 0 20px;}
#create ul.upkome li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 48px;
}

#create ul.upkome li:before {
	position: absolute;
	content: "○";
	padding-left: 29px;
	font-size:1rem;
	top: -1.5px;
	left: 0;
}

#create ul.upkome li span.lbtn-gray {
	position: relative;
	cursor: pointer;
	display: inline-block;
	z-index: 1;
	transition:all 0s ease-in-out;
}

#create ul.upkome li span.lbtn-gray .hukidashi {
	display: none;
	position: absolute;
	font-size: 0.8rem;
	font-weight: 500;
	padding: 8px 13px 10px;
	line-height: 1.6em;
	color: #fff;
	border-radius: 8px;
	background: #666;
	width: 280px;
}

#create ul.upkome li span.lbtn-gray .hukidashi:before {
	content: "";
	position: absolute;
	top: 19.5%;
	right: 100%;
	border: 10px solid transparent;
	border-top: 15px solid #666;
	transform: rotateZ(90deg);
}

#create ul.upkome li span.lbtn-gray:hover .hukidashi{
	display: inline-block;
	top: -36px;
	left: 135px;
}

@media screen and (max-width:768px) {
	#create ul.upkome li span.lbtn-gray .hukidashi {line-height: 1.3em; width: 210px;}
	#create ul.upkome li span.lbtn-gray:hover .hukidashi{top: 32px; left: -45px;}
	#create ul.upkome li span.lbtn-gray .hukidashi:before{
		top: -24px;
		right: 45%;
		transform: rotateZ(180deg);
	}
}

/*------------------------------------------------
               ご入稿方法おわり▲
------------------------------------------------*/

/*------------------------------------------------
               納期についてはじめ▼
------------------------------------------------*/
.guide_deadline div{
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
	
}


.guide_deadline div p{
	font-size: 1.2rem;
}

.guide_deadline div p span{
	font-weight: 600;
	font-size: 120%;

}

.guide_deadline div img{
	height: 300px ;
	width: auto;
	margin: 0 auto;
}

@media screen and (max-width:520px) {
.guide_deadline div{
	display:block;
}
	
.guide_deadline div p{
	font-size: 1rem;
	text-align: center;
}
	
.guide_deadline div img{

	justify-content: center;
	display: flex;
}	
	
	
	}

/*------------------------------------------------
               納期についておわり▲
------------------------------------------------*/

/*------------------------------------------------
               参考価格ついてはじめ▼
------------------------------------------------*/

/*価格表はじめ▼*/
.guide_reference-price table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0 20px;
  width: 95%;
  table-layout: fixed;
}

.guide_reference-price table tr {
  background-color: #e6f2f5;
/*padding: .35em;*/
  border-bottom: 2px solid #fff;
}
.guide_reference-price table th,
table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}
.guide_reference-price table th {
  font-size: 1rem;
}
.guide_reference-price table thead tr{
  background-color: #5297c4;
  color:#fff;
}
.guide_reference-price table tbody th {
    background:#73B1DA;
    color: #fff;
}

.price{
  text-align: right;
  
}
.non{
  background:#fff
}
@media screen and (max-width: 520px) {
  .guide_reference-price table {
    border: 0;
  }
  .guide_reference-price table th{
   
    display: block;
    border-right: none;
  }
  .guide_reference-price table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .guide_reference-price table tr {
    display: block;
    margin-bottom: .625em;
  }
  .guide_reference-price table td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: .8em;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
  .guide_reference-price table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #167F92;
  }
  .guide_reference-price table td:last-child {
    border-bottom: 0;
  }
  .guide_reference-price table tbody th {
    color: #fff;
}
}
/*価格表おわり▲*/

/*------------------------------------------------
               参考価格ついておわり▲
------------------------------------------------*/







