/*-------------　全体設定ここから -------------*/
body{
	font-family: 'FOT-筑紫明朝 Pr6N','fot-tsukumin-pr6n', 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','游明朝体+36ポかな','YuMincho +36p Kana', sans-serif;
	font-weight: 300;
	font-style: normal;
	margin: 0;
}

a:link, a:visited{
	color:#A7C7B2;
}

a:hover{
	color:#DD4B49;
	text-decoration:underline;
	text-decoration-color: #DD4B49;
}

.centering{
	padding: 0 5%;
}

.fc_1{
	color:#465761;
}

.bgcolor{
	background:rgba(232,227,212,0.2); 
}

h1, h2, h3{
	margin: 0;
}
/*-------------　全体設定ここまで -------------*/



/*-------------　画像設定ここから -------------*/
img {
  	pointer-events: none;
}
/*-------------　画像設定ここまで -------------*/



/*-------------　タイトル設定ここから -------------*/
.title{
	background:#CEE0D3;
	margin: 0 0 5% ;
}

.t_contents{
	width:100%;
	display: flex;
}

.intitle {
	margin: 2% 0 -5% 0;	
	width:calc(100%/3);
	min-width: 250px;
	position:relative;
	z-index: 3;
}

.logo{
	width: 100%;
}

@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
	.title{
		height: 60px;
		margin-bottom: 50px;
	}
	
	.intitle{
		margin: 20px 0 -5% 0;	
	}
}

/*-------------　タイトル設定ここまで -------------*/



/*------------- メニュー設定ここから -------------*/
.re_menu{
	width:calc(100%/3 + 100%/3);
	min-width: 200px;
}

.menu{
	width: 100%;
	height: 100%;
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0;
	justify-content: flex-end;
	align-items: flex-end;
}

.menu li {
	padding:0 3%;
}

.menu li a{
	color: white;
	text-decoration: none;
}

a.li_btn:hover{
	color:#DD4B49;
	text-decoration:underline;
	text-decoration-color: #DD4B49;
}

.menu-btn{
	display: none;
}

/*-----　スクロールハンバーガーメニュー　-----*/


#hummenu {
  list-style: none;
  display:inline-block;
  position: absolute;
  width: calc(100%/3);
	min-width: 200px;
  height: auto;
  top: 0;
  right:5%;
  margin-top: 60px;
  padding: 30px 0 10px 0;
  clear: both;
  background:rgba(206,224,211,0.95);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
	z-index: 2;
}

/* Hamburger menu button */
.menu-btn:checked ~ #hummenu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */

#hummenu  a{
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
}

#hummenu a:hover {
  color: #DD4B49;
	text-decoration: none;
}

#hummenu li {
  border-top: 1px solid rgb(75, 75, 75);
  border-color: #fff;
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ #hummenu a,
.menu-btn:checked ~ #hummenu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: absolute;
  cursor: pointer;
	top:10px;
 right:40px;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(255, 255, 255, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */


#fixed-humicon {
  position: fixed;
  top: -1000px;  
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: #000;
  background: rgba(0,0,0,0);
  box-sizing: border-box;
  transition: .5s; /* アニメーションタイミング */
  z-index: 1;
}
#fixed-humicon.is-show {
  top: 20px;
}

.is-show > #hummenu{
  margin-top:-20px;
}

.is-show > .menu-icon{
	background : rgba(206,224,211,0.95) ;
	border-radius:10%;
	z-index: 3;
}

@media screen and (max-width: 959px) {
#fixed-humicon {
	position: fixed;
	top: 0px;  
	width: 100%;
	height: 70px;
	line-height: 70px;
	text-align: center;
	color: #000;
	background: rgba(0,0,0,0);
	box-sizing: border-box;
	transition: .5s; /* アニメーションタイミング */
	z-index: 1;
}
	
/* Nav items */
	#hummenu{
		display: block;
	}
	
.menu {
	list-style: none;
	display:inline-block;
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
	margin-top: 60px;
	padding: 30px 0 10px 0;
	clear: both;
	background:rgba(206,224,211,0.95);
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	transform: scale(1, 0);
	transform-origin: top;
	z-index: 2;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
}

.menu a:hover{
  color: #DD4B49;
	text-decoration: none;
}

.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  border-color: #fff;
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: absolute;
  cursor: pointer;
	top:10px;
 right:40px;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(255, 255, 255, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
}

/*------------- メニュー設定ここまで -------------*/



/*------------- プロフィール設定ここから-------------*/
.prof{
	background: #CEE0D3;
	margin: 3% 0 0;
	display: flex;
	justify-content: center;
}

.p1{
	max-width: 300px;
	width: calc(100vw/3);
	min-width:100px;
	padding: 2%;
}

.p1 img{
	width:100%;
	border-radius:50%;
}

.p2{
	max-width: 500px;
	width: calc(100vw/3 + 100vw/3);
	padding:2% 1%;
}

.p2 h1{
	font-size: 20px;
	margin:0;
}

.p2 h2,h3{
	font-size: 13px;
}
/*------------- プロフィール設定ここまで -------------*/



/*------------- 料金表設定ここから -------------*/
.price{
	padding: 3% auto;
}

.price h1{
	margin:0;
	padding-top:2%;
	text-align: center;
}

.price h2{
	display: none;
	margin: 0;
	text-align: center;
	font-size: 12px;
}

.price h3{
	margin: 0;
	text-align: center;
	font-size: 15px;
}

.pla{
	display: flex;
	justify-content: center;
}

.pl{
	width: calc(100vw/3);
	min-width:260px;
	padding: 2%;
}

.pl1{
	position: relative;
	width: 100%;
	line-height: 1;
}

.pl1 h1{
	position: absolute;
	font-size: 30px;
	right: 0;
	bottom: 20px;
	background: rgba(255,255,255,0.7);
	padding:5%;
}

.pl1 span{
	font-size: 16px;
}

.pl1 img{
	width: 100%;
}

.h_text{
	width: 100%;
	height: 99.8%;
	color: #000;
	text-shadow: 1px 1px 15px #fff,1px -1px 15px #fff,-1px -1px 15px #fff,-1px 1px 15px #fff;
	font-size: 25px;
	font-weight: 500;
	margin: 0;
	position: absolute;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;

	/*
	background: rgba(0,0,0,.4);
	*/
	background: linear-gradient(to bottom, rgba(217,231,221,.7),rgba(244,237,228,.7));
	
	transition:all 0.2s ease;
}

.pl1:hover .h_text{
	opacity: 1;
	transition:all 0.2s ease;
}

.pl1:hover img , .pl1:hover h1{
	filter: blur(1px);
}


@media screen and (max-width: 959px){
	.pla{
		flex-wrap: wrap;
	}
	
	.price h2{
		display: block;
	}
	
	.price h3{
		display: none;
	}
}

/*------------- 料金表設定ここまで -------------*/



/*------------- 割引・割増設定ここから -------------*/
.d_all{
	display: flex;
	justify-content: center;
}

.d_text{
	border: solid;
	max-width: 616px;
	width: 50%;
	min-width: 300px;
	margin: 1% 2%;
	padding: 0 1% 1%;
	position: relative;
	background: #fff;
}

.d_text h1{
	font-size: 25px;
}

.d_text h2{
	font-size: 15px;
}

.d_text h3{
	font-size: 10px;
	color: #DD4B49;
}

.d_text span{
	color:dodgerblue;
}

.d_label{
	padding: 5px 10px;
	color: white;
	background: #DD4B49;
	/*
	background:linear-gradient(to right,rgba(221,75,73,1.00),rgba(224,204,179,1.00));
	*/
	border-radius: 3%;
	position: absolute;
	top: -3px;
	right: 30px;
}

.smp{
	display: none;
}

@media screen and (max-width: 1260px){
	.d_all{
		flex-wrap: wrap;
	}
	
	.d_text{
		width: 100%;
	}
}


@media screen and (max-width: 960px){
	
	.d_text{
		min-width: 300px;
	}
	
	.d_text h1{
		font-size: 23px;
	}
	
	.d_label{
		right: 10px;
	}
}

@media screen and (max-width: 520px){
	
	.d_text{
		width: 90%;
	}
	
	.d_label{
		right: 5px;
		width: 70px;
		padding: 5px;
		text-align: center;
		font-size: 15px;
	}
	
	.smp{
		display: block;
	}
}

/*------------- 割引・割増設定ここまで -------------*/



/*------------- 依頼の流れ設定ここから -------------*/
.r_flow{
	padding-top: 20px;
	padding-bottom: 20px;
}

.h1{
	padding: 20px 0;
}

.r_flow h1,.r_flow h2,.r_flow h3{
	text-align: center;
}

.rf_all{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.rf_step{
	width: 290px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
}

.stepnum{
	background: #A7C7B2;
	padding-bottom: 5px;
}

.rf_step_end{
	width: 250px;
}

.steptext{
	background: #fff;
	padding: 0 8px;
	height: 110px;
	display: table-cell;
	vertical-align: middle;
}

.st_bottom{
	display: none;
	margin: 10px auto 0;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #DFCBB2;
}

.stepnext{
	margin: 0 10px;
	width: 0;
	height: 0;
	border-left: 20px solid #DFCBB2;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

@media screen and (max-width: 960px){
	.rf_step_end{
		margin-right: 40px;
	}
}

@media screen and (max-width: 520px){
	.rf_step{
		width: 250px;
		margin: 5px 0;
	}
	
	.rf_step_end{
		margin: 0;
	}
	
	.stepnext{
		display: none;
	}
	
	.st_bottom{
		display: block;
	}
}

/*------------- 依頼の流れ設定ここまで -------------*/



/*------------- スライドイメージ設定ここから -------------*/
.slider {
	width:90%;
    margin:0 auto;
	padding: 0 5px;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:12px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
	border:none;
    background:#DFCBB2;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#DD4B49;/*ドットボタンの現在地表示の色*/
}
/*------------- スライドイメージ設定ここまで -------------*/