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

/*-------------------------
font-family: 'Lato', sans-serif;（通常の半角英数）
font-family: 'Courgette', cursive;(セクションタイトルで使用)
---------------------------*/
/*DNP ShueiMGoStd L（秀英丸ゴシック）
font-family: dnp-shuei-mgothic-std, sans-serif;
font-weight: 400;
font-style: normal;
--------------------*/
/*DNP ShueiMGoStd B（秀英丸ゴシック）
font-family: dnp-shuei-mgothic-std, sans-serif;
font-weight: 600;
font-style: normal;
--------------------*/
/*フォントオーサム
font-family: "Font Awesome 5 Free";
font-weight:bold;
-----------------------*/

html{
	font-size: 62.5%;/*16px ×　62.5%=10px=1rem*/
}
body{
	/*font-family:'Lato', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;*/
	font-family: 'Lato', 'dnp-shuei-mgothic-std', sans-serif;
	font-weight: 400;
	font-feature-settings: "palt";
	font-style: normal;
	font-size: 1.6rem;/*16px*/
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width:100%;
    margin: 0 auto;      /*サイトをセンタリング*/
	/*background-color: #f6f6f6;*/
	/*background-color: #c0e5f2;*/
	background-color: #e1f4ff;
	position: relative;/*読み込まれたら左から右へカーテン*/
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
p, span{
	font-weight: 500;
}
a{
	color: #333;
    text-decoration: none;
    transition: all .2s;
	cursor : pointer;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
*{
	box-sizing: border-box;
}
.inner{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
.pa-left-right50{
	padding-left: 50px;
	padding-right: 50px;
}
/*==================================================
背景色が伸びて出現
===================================*/
/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #26a6d1;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #26a6d1;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
/*----------------------

    	header

----------------------*/
header{
	width: 100%;
	height: 160px;
}
.header{
	position: relative;
	height: 100%;
}
h1{
	top: 47px;
    width: 150px;
    margin: 0 auto;
    transition: all .3s;
	text-align: center;
	position: relative;
}
h1 img{
	width: 50px;
	height: auto;
	margin-bottom: 13px;
	transition: 1.0s ;
}
h1 img:hover{
	transform: rotate( 360deg ) ;
}
h1 p{
	font-size: 1.4rem;
}
nav{
	position: absolute;
	top:65px;
	width: 100%;
}

nav li:nth-child(3) {
    margin: 0 10em 0 0;
}
.g-nav{
	display: flex;
	justify-content:space-between;
	margin:0 0 50px 0;
    list-style: none;
	flex-wrap: wrap;
}
/*メニューの下の丸とホバー
------------------------*/
.gnavi li{
	margin-bottom:20px;
}
.g-nav li a{
	display: block;
    padding:10px 30px;
	position: relative; /*円の基点とするためrelativeを指定*/
}
.g-nav li a::hover{
  color:#26a6d1;
}
.g-nav li a::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線になる丸の形状*/
    width: 100%;
    height: 5px;
    border-radius: 50%;
    background:#26a6d1;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0.04, 1);/*X方向0.04、Y方向1*/
    transform-origin:center bottom;/*中央下部基点*/
}
/* fadeDown */
nav .fadeDown{
	animation-name: fadeDownAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@media screen and (max-width:900px){
	nav{
		top: 100px;
	}
	nav li:nth-child(3) {
		margin: 0 ;
	}
	h1 {
    	top: 20px;
	}
}
/*scrollバー　アニメーション
--------------------------*/
.header-left{
	position: absolute;
	width: 50px;
	height: 80vh;
}
/*現在地とhoverの設定*/
.g-nav li.current a::after,
.g-nav li a:hover::after {
    height: 1px;/*縦幅を変化*/
    border-radius: 0;/*丸みをなくす*/    
    transform: scale(0.8, 1);/*X方向0.8、Y方向1にスケール拡大*/
}
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:80px;
	left:30px;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }
/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
	position: absolute;
	left:-20px;
	bottom:10px;
    /*テキストの形状*/
	color: #808080;
	font-size: 1rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
/* 矢印の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #808080;
    transform: skewX(-31deg);
}
.scrolldown:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:1px;
	height: 50px;
	background:#808080;
}

/*----------------------------
	メインビジュアル
----------------------------*/
.main-visual{
	display: flex;
	padding-left: 50px;
	padding-right: 50px;
}
.main-visual-left{
	width: 30%;
	display: flex;
    align-items: center;
	justify-content: center;
}
.main-visual-box{
	text-align: left;
}
.main-visual-box-1{
	font-size: 2rem;
	line-height: 1.9;
	white-space: nowrap;
}
.main-visual-box span{
	display: inline-block;
	width: 50px;
	height: 2px;
	background-color: #333;
}
.main-visual-box-2{
	margin-top: 20px;
	white-space: nowrap;
	font-family: 'Lato', sans-serif;
	font-size: 1.2rem;
}
.main-visual-right{
	width: 70%;
	padding-right: 50px;
}
.main-visual-right img{
	width: 100%;
}
section{
	padding-right: 50px;
	padding-left: 50px;
}
/*-----------------------------

		top-about

------------------------------*/
.top-about{
	padding-top: 130px;
	padding-bottom: 100px;
	background-color: #fff;
	margin-top: -50px;
}
.section-title{
	text-align: center;
	margin-bottom: 47px;
}
h3{
	font-family: 'Courgette', cursive;
	font-size: 3rem;
	margin-bottom: -10px;
}
.section-title span{
	display: inline-block;
	width: 30px;
	height: 3px;
	background-color: #26a6d1;
}
.top-about-box{
	display: flex;
	max-width: 950px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 47px;
}
.top-about-left{
	width: 40%;
	margin-right: 70px;
	position: relative;
}
.top-about-left img{
	width: 120px;
}
.top-about-left p{
	font-size: 3.4rem;
	line-height: 1.6;
	position: absolute;
	top:80px;
	left:50px;
	/*font-style: italic;*/
	letter-spacing: 0.08em;
}
.top-about-right{
	width: calc(60% - 70px);
	padding-top: 30px;
	line-height: 2.2;
}
/*----------------------
	moreボタン
-----------------------*/
.more-btn{
	text-align: right;
}
.more-btn a{
	width: 48px;
	position: relative;
	margin-left: 10px;
}
/*.more-btn a {
    background-color: #333;
	border:1px solid #333;
    padding: 6px 15px 6px 20px;
    color: #fff;
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.more-btn a .fa-angle-right{
	margin-left: 1em;
}
.more-btn a:hover{
	background-color: #fff;
	border:1px solid #333;
	color: #333;
}
.more-btn a:hover {
  color: #333;
}*/
.more-btn a {
    position: relative;
    color: #26a6d1;
    padding-left:55px;
}
.more-btn a:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 45px;
	height: 2px;
	background-color: #26a6d1;
}






/* fadeLeft */
.fadeLeft{
animation-name: fadeLeftAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}
/* fadeDown */
.fadeDown{
animation-name: fadeDownAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05{  
	animation-delay: 0.5s;
}
.delay-time1{  
	animation-delay: 1s;
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeDownTrigger,
.fadeInTrigger{
    opacity: 0;
}
/*-----------------------------

		top-service

------------------------------*/
.top-service{
	padding-top: 80px;
	padding-bottom: 115px;
	
}
.top-service-list{
	display: flex;
	margin-bottom: 47px;
}
.top-service-item{
	margin-right: 50px;
	width: calc(33.333% - 100px / 3);
	padding: 30px;
	border: 1px solid #858585;
	border-radius: 8px;
	text-align: center;
	background-color: #fff;
}
.top-service-item img{
	width: 15%;
	margin-top: 15px;
	margin-bottom: 10px;
}
.top-service-item-title{
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 30px;
}
.top-service-item-text{
	text-align: justify;
}
.top-service-item:last-of-type{
	margin-right: 0;
}
/* fadeIn */

.fadeIn{
animation-name:fadeInAnime;
animation-duration:1.2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger{
    opacity: 0;
}
/*-----------------------------

		top-works

------------------------------*/
.top-works{
	padding-top: 80px;
	padding-bottom: 115px;
	background-color: #fff;
}
.top-works-list{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 47px;
}
.top-works-item{
	margin-right: 30px;
	margin-bottom: 40px;
	width: calc(25% - 90px / 4);
}
.top-works-title {
    line-height: 1.4;
}
/*最後の行のmargin-bottomを0にする*/
.top-works-item:nth-child(4n+1):nth-last-child(-n+4),/* ４列リストの左から1つ目にある要素 */
.top-works-item:nth-child(4n+2):nth-last-child(-n+3),/* ４列リストの左から2つ目にある要素 */
.top-works-item:nth-child(4n+3):nth-last-child(-n+2),/* ４列リストの左から3つ目ある要素 */
.top-works-item:nth-child(4n+4):nth-last-child(-n+1)/* ４列リストの左から4つ目にある要素 */
{
	margin-bottom: 0;
}
.top-works-img{
	position: relative;
	margin-bottom: 10px;
}
.top-works-img img{
	width: 100%;
}
.top-works-img span{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2px 10px;
	font-size: 1.2rem;
	color: #fff;
}
.category-1{
	background-color: #32c1cd;
}
.category-2{
	background-color: #6166b3;
}
.category-3{
	background-color: #39a2db;
}
.category-4{
	background-color: #E8AA42;
}
.category-4 ul li a {
    color: #fff;
}
.top-works-item:nth-child(4n){
	margin-right: 0;
}
/* flipLeft */
.flipLeft{
animation-name: flipLeftAnime;
animation-duration:1.2s;
animation-fill-mode:forwards;
perspective-origin: left center;
opacity:0;
}

@keyframes flipLeftAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.flipLeftTrigger{
    opacity: 0;
}
/*-----------------------------

		footer

------------------------------*/
.footer{
	width: 100%;
}
.top-contact{
	width: 100%;
	text-align: center;
	padding-top: 120px;
}
.top-contact a{
	max-width: 800px;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #fff;
	border: 2px solid #333;
	display: inline-block;
	margin: 0 auto;
	position: relative;
	margin-bottom: 55px;
	font-size: 1.8rem;
	z-index: 1;
}
.top-contact a:after{
	content: "\f061";
	position: absolute;
	right: 30px;
	font-weight: bold;
	font-family: "Font Awesome 5 Free";
}
.top-contact a:before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #333;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .5s;
}
.top-contact a:hover{
	color: #fff;
}
.top-contact a:hover:before{
	transform-origin: 0% 50%;
	transform: scaleX(1);
}
		
.fa-pencil-alt{
	margin-right: 1em;
}
.copyright{
	font-size: 1.0rem;
	width: 50px;
	height: 100vh;
	text-align: center;
	position: fixed;
	top:0;
	right: 0;
	/*background-color: #f6f6f6;*/
    z-index: 4;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	color: #808080;
}
.footer-logo{
	width: 150px;
    margin: 0 auto;
    transition: all .3s;
    text-align: center;
	margin-bottom: 55px;
}
.footer-logo img{
	width: 50px;
    height: auto;
    margin-bottom: 13px;
    transition: 1.0s;
}

.site-map-box{
	padding: 40px 0;
	width: 100%;
	background-color: #fff;
	text-align: center;
}
.site-map span{
	margin-right: 30px;
}
small{
	line-height: 50px;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    
}
/*---------------------------/
    backボタン　画面右に固定          
/---------------------------*/
.pagetop a {
	position: fixed;
	right: 3px;
    bottom: 130px;
    width: 40px;
    font-size: 1.6rem;
    z-index: 10;
	text-align: center;
	color: #fff;
	padding: 4px 12px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	line-height: 1;
	background-color: #32c1cd;
	opacity: 0.8;
}
.pagetop a:before {
	content: '';
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 12px solid #32c1cd;
	position: absolute;
	left:0;
	top:-12px;
}
.pagetop a:after {
	content: '';
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 12px solid #32c1cd;
	position: absolute;
	left:0;
	bottom:-12px;
}
.pagetop a:hover{
	opacity: 0.6;
}
/*-------------------

	about.html

-------------------*/
.page-visual{
	padding-left: 50px;
    padding-right: 50px;
	position: relative;
	margin-bottom: 50px;
}
.main-img{
	width: 100%;
}
.main-img img{
	width: 100%;
}
.page-title{
	text-align: center;
	padding-top: 25px;
	font-size: 2.6rem;
	font-family: 'Courgette', cursive;
	line-height: 1;
}
h4 {
    display: inline-block;
}
.pankuzu-background{
	background-color: #32c1cd;
	width: 25%;
	height: 70%;
	position: absolute;
	bottom:0;
	left:0;
	z-index: -1;
}
.pankuzu-background:after{
	content:'';
	width: 0;
	height: 0;
	border-top: 100px solid transparent;
	border-bottom: 100px solid transparent;
	/*border-left: 100px solid #eebd89;*/
	border-left: 100px solid #32c1cd;
	position: absolute;
	right: -100px;
	bottom: 0;
}
.pankuzu{
	display:flex;
	align-items:flex-end;
	width: 100%;
	height: 100%;
	padding-left:10px;
	padding-bottom: 10px;
    line-height: 1;
	font-size: 1.2rem;
}
.pankuzu li{
	margin-right: 6px;
	font-size: 1.2rem;
	white-space: nowrap;
}
.pankuzu-item2:before{
	content:'\f105';
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	/*margin-right: 8px;*/
}

.about{
	padding: 80px 0 120px;
	background-color: #fff;
	position: relative;
	background-image: url("../images/dot.png");
	background-repeat: repeat;
	background-size: 16px; 
}
.svg-1{
	width: 180px;
	height: auto;
	position: absolute;
	top:12%;
	left:5%;
}
.svg-2{
	width: 180px;
	height: auto;
	position: absolute;
	top:20%;
	right:7%;
}
.svg-3{
	width: 180px;
	height: auto;
	position: absolute;
	top:45%;
	left:5%;
}
.svg-4{
	width: 180px;
	height: auto;
	position: absolute;
	top:65%;
	right:5%;
}
.svg-5{
	width: 180px;
	height: auto;
	position: absolute;
	top:80%;
	left:7%;
}
@media screen and (max-width:1260px){
	.svg-1, .svg-2, .svg-3, .svg-4, .svg-5{
		display: none;
	}
}
.about-inner{
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	padding: 0 50px;
}
.about-text{
	line-height: 2;
	text-align: justify;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.representative{
	padding-top: 30px;
	text-align: right;
}
.representative span{
	font-weight: bold;
}
.office-title{
	display: flex;
	align-items: center;
	margin-bottom: 47px;
}
.office-title:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #707070;
    margin-top: 16px;
    margin-left: 16px;
}
.office-title img{
	width: 68px;
	margin-right: 20px;
}
.office-title p{
	font-size: 2rem;
	color: #26a6d1;
	text-align: justify;
	padding-top: 15px;
}
.office dl{
	display: flex;
	flex-wrap: wrap;
}
.office dt{
	width: 30%;
	padding-right: 5%;
}
.office dd{
	width: 70%;
}
.office dl dt, .office dl dd{
	border-bottom: 1px solid #707070;
	padding: 15px 0;
}
/*----------------------
		
		service.html
	
-----------------------*/
.service-1, .service-2, .service-3, .service-4{
	padding-bottom: 80px;
}
.service-title-over{
	border-top: solid 2px #fff;
	position: relative;
	padding-top: 36px;
	color:#26a6d1;
}
.service-title{
	padding: 8px 0 5px 0;
	margin-bottom: 47px;
}
.service-title span{
	font-size: 2.2rem;
	line-height: 1;
}

/*.service-title p {
	border-top: solid 2px #fff;
	position: relative;
	font-size: 2.2rem;
	padding-top: 36px;
	color:#26a6d1;
}*/
.service-title-over:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #26a6d1;
  top: -3px;
  width: 50px;
}
/*.service-title p:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #26a6d1;
  top: -3px;
  width: 50px;
}*/
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #26a6d1;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}


.explanatory{
	margin-bottom: 47px;
}
.explanatory p{
	position: relative;
    padding-left: 50px;
	font-size: 1.4rem;
}
.explanatory-1:before{
	content:'';
	width: 40px;
	height: 100%;
	background-color: #32c1cd;
	position: absolute;
	left: 0;
}
.explanatory-2:before{
	content:'';
	width: 40px;
	height: 100%;
	background-color: #d4d4d4;
	position: absolute;
	left: 0;
}
.explanatory-1 {
	margin-bottom: 10px;
}
.flow-item{
	padding: 0 10px;
	height: 30px;
	display: inline-block;
	margin-bottom: 20px;
}
.yukis{
	background-color: #32c1cd;
	position: relative;
	margin-right: 25px;
}
.user{
	background-color: #d4d4d4;
	position: relative;
	margin-right: 25px;
}
.yukis:after{
	content:'';
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #32c1cd;
	position: absolute;
	right: -15px;
	bottom: 0;
}
.yukis:last-of-type:after{
	border-top: none;
	border-bottom: none;
	border-left: none;
}
.user:after{
	content:'';
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #d4d4d4;
	position: absolute;
	right: -15px;
	bottom: 0;
}
/*--service-4　ご依頼方法--*/
.method p{
	margin-bottom: 35px;
}
.method ul{
	list-style: disc;
}
.method ul li{
	margin-left: 1.5em;
}
/*--service-5 料金の目安--*/
.service-5{
	padding-top: 80px;
    padding-bottom: 115px;
    background-color: #fff;
}
.service-5-text{
	margin-bottom: 50px;
}
.price-list{
	display: flex;
	flex-wrap: wrap;
}
.price-item{
	margin-right: 50px;
	width: calc(50% - 50px / 2);
	margin-bottom: 40px;
}
.price-item:nth-child(2n){
	margin-right: 0;
}
.price-item:nth-child(5), .price-item:nth-child(6){
	margin-bottom: 0;
}
.price-item ul{
	list-style: disc;
}
.price-item ul li{
	margin-left: 1.5em;
}
.price-title{
	padding-bottom: 5px;
	border-bottom: 2px solid #707070;
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 1.8rem;
}
.fa-check{
	color: #26a6d1;
	margin-right: 10px;
	font-size: 2rem;
}
/*-------------------

	works.html

--------------------*/
.works{
	padding-top: 50px;
	padding-bottom: 100px;
	background-color: #fff;
	margin-top: 50px;
}
.category-list{
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	padding: 10px 0;
	border-top:1px solid #707070;
	border-bottom:1px solid #707070;
}
.category-list li{
	margin-right: 30px;
	color: #707070;
}
.category-list li .fa-chevron-down {
    margin-right: 0.5em;
}
.archive-pagination {
    text-align: center;
	padding-top: 50px;
}
/*---ページナビ------*/
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    background-color: #32c1cd;
}
.wp-pagenavi a, .wp-pagenavi span {
    padding: 10px 15px;
    margin: 2px;
    font-size: 1.6rem;
    margin-right: 10px;
    border: 1px solid #ececec;
}

/*---------------------------/

    single.php
	個別ページ

/---------------------------*/
.works-case {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 80px;
}
.works-case-title {
    font-size: 1.8rem;
}
.works-container{
	display: flex;
}
.works-content{
	width: 65%;
	margin-right: 50px;
}
.works-data{
	width: calc(100% - 65% - 50px);
}
.works-single-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
	font-weight: bold;
	border-bottom: 2px solid #333;
	padding: 0 5px 5px;
}
.works-single-content {
    margin-bottom: 10px;
	margin-top: 30px;
}
/*--共有ボタンの上にpaddingを付ける-----*/
.sharedaddy {
    padding-top: 20px;
}
.works-data dl{
	display: flex;
	flex-wrap: wrap;
	padding: 0 5px;
	font-size: 1.4rem;
	line-height: 1.6;
}
.works-data dl dt{
	width: 45%;
	margin-right: 10%;
	margin-bottom: 15px;
	color: #a3a2a2;
	font-size: 1.4rem;
}
.works-data dl dd{
	width: 45%;
	margin-bottom: 15px;
}
.url{
	padding: 20px 5px;
	border-top:1px solid #a3a2a2;
	border-bottom:1px solid #a3a2a2;
}
.single-pagination{
	font-size: 1.4rem;
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
.single-pagination li a{
	display: inline-block;
	padding: 5px 20px;
	box-sizing: border-box;
	background-color: #333333;
	color: #fff;
}
span.single-back a {
    display: inline-block;
    padding: 5px 20px;
    box-sizing: border-box;
    background-color: #333333;
    color: #fff;
}
span.single-back a:before{
	content: "←";
	color: #fff;
	margin-right: 1em;
}
span.single-next a {
    display: inline-block;
    padding: 5px 20px;
    box-sizing: border-box;
    background-color: #333333;
    color: #fff;
}
span.single-next a:after{
	content: "→";
	color: #fff;
	margin-left: 1em;
}
.single-back:hover{
	opacity: 0.7;
}
.single-next:hover{
	opacity: 0.7;
}
.works-single-category{
	padding: 3px 15px;
    background-color: #32c1cd;
    color: #fff;
    font-size: 1.3rem;
	margin-bottom: 10px;
}
.works-single-category a{
	color: #fff;
}
/*-------------------------

	contact.html

-------------------------*/
/*　コンタクトフォーム
----------------------*/
.contact{
	background-color: #fff;
	padding-top: 80px;
}
.contact-inner{
	max-width: 1000px;
	margin: 0 auto;
}
.contact-lead{
	margin-bottom: 80px;
	position: relative;
	border-bottom: 1px solid #333;
}
.contact-lead p{
	font-size: 2rem;
	font-weight: 500;
	padding: 0 30px;
    background-color:#fff;
    white-space: nowrap;
	position: absolute;
	top:-19px;
	left:50%;
	transform: translateX(-50%);
}
.contact-box div{
	width:calc(100% - 40px / 2);
	text-align: center;
}
.contact-box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #f2ede9;
	height: 200px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    padding: 0 30px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin-bottom: 90px;
}
.contact-box div:first-of-type{
	margin-right: 40px;
}
.contact-box div:first-of-type p{
	font-weight: bold;
	font-size: 1.8rem;
}
.contact-box div .time{
	margin-bottom: 0;
}
.form-item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    margin-bottom: 30px;
}
.form-item dd{
	width: 100%;
}
.form-item:last-of-type{
	margin-bottom: 0;
}
.form-title{
	width: 250px;
    margin-right: 30px;
    padding: 10px 0;
    text-align: left;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.form-parts{
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 6px 4px;
	border: solid 1px #dadada;
	/*border-radius: 3px;*/
	line-height: 2.5;
	-webkit-box-shadow: none;
	        box-shadow: none;
	width: 100%;
	background-color: #f8f9fa;
}
.btn-submit {
    border: none;
    letter-spacing: 0.5em;
}
.btnWrap {
    padding-bottom: 50px;
}
.btn {
    width: 240px;
	background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    display: inline-block;
    border: 1px solid #333;
	text-decoration: none;
	cursor:pointer;
	border-radius: 3px;
}
.form-footer{
	padding: 64px 0 80px;
	margin-left: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.btn:hover{
	opacity: 0.9;
}
.require{
	margin-left:15px;
	padding: 2px 5px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	color: #df4b19;
	font-size: 1.1rem;
	font-weight: bold;
	vertical-align: 1px;
}

form p{
	text-align: center;
	margin-bottom: 0;
}
.contact-form-input {
    color: #666;
    border: 1px solid #ccc;
    height: 28px;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
	margin-top: 5px;
}
.contact-form-input {
    padding: 3px 6px;
}
.form-item dd{
	width: 100%;
}
.form-item:last-of-type{
	margin-bottom: 0;
}
.form-title{
	width: 300px;
    margin-right: 30px;
    padding: 10px 0;
    text-align: left;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
input{
	font-size:1.6rem;
	font-family: 'dnp-shuei-mgothic-std', sans-serif;
}
textarea{
	font-size: 1.6rem;
	font-family: 'dnp-shuei-mgothic-std', sans-serif;
	margin-top: 5px;
}
.cform th {
	font-size: 1.6rem;
	width: 260px; /*変なところで改行される場合はここの数字を変更します。*/
	text-align: left;
	padding: 10px 0 10px 15px;
	font-weight: normal;
	vertical-align: middle;  /* 中央揃え */
}

.cform td {
	font-size: 1.6rem;;
	line-height: 150%;
	/*padding: 10px 5px;*/
	vertical-align: middle;  /* 中央揃え */
}

.cform {
	width: 100%;
	margin: auto;
}

.cform [type=submit] {
	display: inline-block;
	font-size: 2rem;
	padding: 10px 30px;
	text-decoration: none;
	background: #ff8f00;
	color: #FFF;
	border-bottom: solid 4px #B17C00;
	border-radius: 3px;
}

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
	width: 100%;
}

.required-srt {
	font-size: 8pt;
	padding: 4px 5px;
	background: #df4b19;
	color: #fff;
	margin-left: 10px;
	vertical-align: middle;
}

.submit-btn input {
	background: #333333;
	width: calc(100% - 240px);
	max-width: 550px;
	min-width: 220px;
	margin: 30px auto;
	display: block;
	border: 1px #333 solid;
	text-align: center;
	padding: 5px;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.submit-btn input:hover {
	background: #fff;
	color: #333;
}
.mw_wp_form .error {
    text-align: left;
}
/*---------------------------/

    thanks.html         

/---------------------------*/
.thanks-box{
 text-align: center;
	
}
.thanks-lead1{
	line-height: 3;
	display: inline-block;
	padding: 30px 50px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border: 1px solid #303030;
	margin: 0 auto;
	margin-bottom: 70px;
}

/*-----------------

	404ページ

-----------------*/
.page404{
	padding-bottom: 80px;
}
.error-404{
	background: repeat url("../images/white-wall.jpg");
	padding-bottom: 80px;
}
.error{
	text-align: center;
}
.text-404{
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 20px;
}
.text-404-return{
	padding: 10px 30px;
	border: 1px solid #333;
	display: inline-block;
}
/*___blog______________*/
.blog-title {
    font-size: 1.8rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}
.blog-widget ul {
    margin-bottom: 30px;
}
.blog-right{
	width: calc(100% - 65% - 50px);
	padding-top: 84px;
}
.blog-single-category{
	background-color: #E8AA42;
	padding: 3px 15px;
    font-size: 1.3rem;
	margin-bottom: 10px;
}
.blog-single-category a{
	color: #fff;
}
.blog-single-content {
    margin-bottom: 10px;
	margin-top: 30px;
}
.blog-single-content h2 {
    padding: 0 0 0 10px;
    border-bottom: 1px solid #E8AA42;
    border-left: 8px solid #E8AA42;
    margin: 25px 0;
	font-size: 2.2rem;
	font-weight: 500;
}
.blog-single-content h3 {
    padding: 5px 10px;
    margin: 25px 0;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Lato', 'dnp-shuei-mgothic-std', sans-serif;
    background-color: #ede6d5;
}
/*プラグインを使ってもくじを設定した時の調整*/
.blog-single-content nav {
    position: inherit;
    top: 0;
	margin-top:15px;
}
/*もくじの行間*/
.ez-toc-link.ez-toc-heading-1 {
    line-height: 2;
}
/*もくじの外枠を100%にする*/
div#ez-toc-container {
    padding-right: 20px;
    width: 100%;
}
.blog-single-date{
	font-size: 1.4rem;
	color: #6c6c6c;
}























