@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');

@media screen and (min-width: 581px){   
	.pc		{ display: block; }
	.mo		{ display: none; }
	br.pc 	{ display: block; }
	br.sp 	{ display: none; }
}
@media screen and (max-width: 580px){   
	.pc		{ display: none; }
	.mo		{ display: block; }
	br.pc	{ display: none; }
	br.sp	{ display: block; }
}
/* General
------------------------------------------------------------ */
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
    position: relative;
	overflow: auto;
	font-size: 70%;
}

	
body {
  	font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;	
	overflow: hidden;
    background-color:#F7F7F7;
}

.anchor{
	display: block;
	padding-top: 60px;
	margin-top: -60px;
}

@media (max-width: 580px) {
	.anchor{
		display: block;
		padding-top: 40px;
		margin-top: -40px;
	}
}

/* Layout
------------------------------------------------------------ */
.container-fluid {
  	width: 100%;
  	padding: 0;
  	margin-right: auto;
  	margin-left: auto;
}

.no-gutters {
	margin:0;
	padding:0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
	margin:0;
	padding:0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: static !important;
  /* width: 100%; */
  /* padding-right: 15px; */
  /* padding-left: 15px; */
}

div.wrap {
	width:90%;
	margin: 0 auto 2%;
	padding: 0;
    text-align: center;
}

section {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

@media screen and ( max-width: 580px ) {
	.container-fluid {
		width: 100%;
		padding: 0;
		margin-right: auto;
		margin-left: auto;
	}

	div.wrap{
		width:100%;
		margin: 0 auto 2%;
	}
}

/* ------------------------------------------------------------
    要素位置調整
------------------------------------------------------------ */
/* 中央寄せ */
.center { text-align: center; margin-right: auto; margin-left: auto; }
/* 左寄せ */
.left { text-align: left; }
/* 右寄せ */
.right { text-align: right; }

/* ------------------------------------------------------------
    padding 設定
------------------------------------------------------------ */
/* 上パディング */
.pt_10 { padding-top: 10px; }
.pt_20 { padding-top: 20px; }
.pt_30 { padding-top: 30px; }
.pt_40 { padding-top: 40px; }
.pt_50 { padding-top: 50px; }

/* 下パディング */
.pb_10 { padding-bottom: 10px; }
.pb_20 { padding-bottom: 20px; }
.pb_30 { padding-bottom: 30px }
.pb_40 { padding-bottom: 40px; }
.pb_50 { padding-bottom: 50px; }

/* 左パディング */
.pl_10 { padding-left: 10px; }
.pl_20 { padding-left: 20px; }
.pl_30 { padding-left: 30px; }
.pl_40 { padding-left: 40px; }
.pl_50 { padding-left: 50px; }

/* 右パディング */
.pr_10 { padding-right: 10px; }
.pr_20 { padding-right: 20px; }
.pr_30 { padding-right: 30px; }
.pr_40 { padding-right: 40px; }
.pr_50 { padding-right: 50px; }

/* ------------------------------------------------------------
    margin 設定
------------------------------------------------------------ */
/* 上マージン */
.mt_10 { margin-top: 10px; }
.mt_20 { margin-top: 20px; }
.mt_30 { margin-top: 30px; }
.mt_40 { margin-top: 40px; }
.mt_50 { margin-top: 50px; }

/* 下マージン */
.mb_10 { margin-bottom: 10px; }
.mb_20 { margin-bottom: 20px; }
.mb_30 { margin-bottom: 30px }
.mb_40 { margin-bottom: 40px; }
.mb_50 { margin-bottom: 50px; }
.mb_100 { margin-bottom: 100px; }

/* 左マージン */
.ml_10 { margin-left: 10px; }
.ml_20 { margin-left: 20px; }
.ml_30 { margin-left: 30px; }
.ml_40 { margin-left: 40px; }
.ml_50 { margin-left: 50px; }

/* 右マージン */
.mr_10 { margin-right: 10px; }
.mr_20 { margin-right: 20px; }
.mr_30 { margin-right: 30px; }
.mr_40 { margin-right: 40px; }
.mr_50 { margin-right: 50px; }

/* マイナスマージン */
.minus_10 { margin-top: -10px; }
.minus_20 { margin-top: -20px; }
.minus_30 { margin-top: -30px; }
.minus_40 { margin-top: -40px; }
.minus_50 { margin-top: -50px; }
.minus_60 { margin-top: -60px; }
.minus_70 { margin-top: -70px; }

/* ------------------------------------------------------------
    幅指定
------------------------------------------------------------ */
.wd-10 { width: 10%; margin-left: auto; margin-right: auto; }
.wd-15 { width: 15%; margin-left: auto; margin-right: auto; }
.wd-20 { width: 20%; margin-left: auto; margin-right: auto; }
.wd-25 { width: 25%; margin-left: auto; margin-right: auto; }
.wd-30 { width: 30%; margin-left: auto; margin-right: auto; }
.wd-35 { width: 35%; margin-left: auto; margin-right: auto; }
.wd-40 { width: 40%; margin-left: auto; margin-right: auto; }
.wd-45 { width: 45%; margin-left: auto; margin-right: auto; }
.wd-50 { width: 50%; margin-left: auto; margin-right: auto; }
.wd-55 { width: 55%; margin-left: auto; margin-right: auto; }
.wd-58 { width: 58%; margin-left: auto; margin-right: auto; }
.wd-60 { width: 60%; margin-left: auto; margin-right: auto; }
.wd-65 { width: 65%; margin-left: auto; margin-right: auto; }
.wd-70 { width: 70%; margin-left: auto; margin-right: auto; }
.wd-75 { width: 75%; margin-left: auto; margin-right: auto; }
.wd-80 { width: 80%; margin-left: auto; margin-right: auto; }
.wd-85 { width: 85%; margin-left: auto; margin-right: auto; }
.wd-90 { width: 90%; margin-left: auto; margin-right: auto; }
.wd-95 { width: 95%; margin-left: auto; margin-right: auto; }
.wd-100 { width: 100%; margin-left: auto; margin-right: auto; }


/* ------------------------------------------------------------
    余白設定
------------------------------------------------------------ */
.space_10 { width: 100%; height: 10px; }
.space_20 { width: 100%; height: 20px; }
.space_30 { width: 100%; height: 30px; }
.space_40 { width: 100%; height: 40px; }
.space_50 { width: 100%; height: 50px; }
.space_60 { width: 100%; height: 60px; }
.space_70 { width: 100%; height: 70px; }
.space_80 { width: 100%; height: 80px; }
.space_90 { width: 100%; height: 90px; }
.space_100 { width: 100%; height: 100px; }

/* ------------------------------------------------------------
    カラー設定
------------------------------------------------------------ */
.font_083231 {
	color: #083231;
}

/* ------------------------------------------------------------
    レスポンシブ画像
------------------------------------------------------------ */

.image_box_100 { width: 100%; margin: 0 auto; }
.image_box_95 { width: 95%; margin: 0 auto; }
.image_box_90 { width: 90%; margin: 0 auto; }
.image_box_85 { width: 85%; margin: 0 auto; }
.image_box_80 { width: 80%; margin: 0 auto; }
.image_box_75 { width: 75%; margin: 0 auto; }
.image_box_70 { width: 70%; margin: 0 auto; }
.image_box_65 { width: 65%; margin: 0 auto; }
.image_box_60 { width: 60%; margin: 0 auto; }
.image_box_55 { width: 55%; margin: 0 auto; }
.image_box_50 { width: 50%; margin: 0 auto; }
.image_box_45 { width: 45%; margin: 0 auto; }
.image_box_40 { width: 40%; margin: 0 auto; }
.image_box_35 { width: 35%; margin: 0 auto; }
.image_box_30 { width: 30%; margin: 0 auto; }
.image_box_25 { width: 25%; margin: 0 auto; }
.image_box_20 { width: 20%; margin: 0 auto; }
.image_box_15 { width: 15%; margin: 0 auto; }
.image_box_10 { width: 10%; margin: 0 auto; }

.image_box_100 img,.image_box_95 img,.image_box_90 img,.image_box_85 img,.image_box_80 img,.image_box_75 img,.image_box_70 img,.image_box_65 img,.image_box_60 img,.image_box_55 img,.image_box_50 img,.image_box_45 img,.image_box_40 img,.image_box_35 img,.image_box_30 img,.image_box_25 img,.image_box_20 img,.image_box_15 img,.image_box_10 img,.image_box_100 picture,.image_box_95 picture,.image_box_90 picture,.image_box_85 picture,.image_box_80 picture,.image_box_75 picture,.image_box_70 picture,.image_box_65 picture,.image_box_60 picture,.image_box_55 picture,.image_box_50 picture,.image_box_45 picture,.image_box_40 picture,.image_box_35 picture,.image_box_30 picture,.image_box_25 picture,.image_box_20 picture,.image_box_15 picture,.image_box_10 picture { max-width: 100%; height: auto; padding: 0; vertical-align: top; }


h1 img,h2 img,h3 img,h4 img,p img { max-width: 100%; height: auto; }


/* ------------------------------------------------------------
    テキスト関連
------------------------------------------------------------ */

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 150%;
}
span.neon_underline {
	background: linear-gradient(transparent 70%, #EFEA3A 70%);
}

p {
	font-size: 1.5vw;
	line-height: 140%;
}

@media screen and (max-width:580px) {
	p {
		font-size: 1.2rem;
		line-height: 160%;
	}
}

/* ------------------------------------------------------------
    Header
------------------------------------------------------------ */
header.site-header {
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    z-index: 100;
    text-align: center;
    padding: 0;
}

.header_box {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	background-color: #64C1B5;
}

.header_logo_box {
	width: 35%;
	padding: 0.5%;
}

.header_info_box {
	width: 62%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.h-info_box_tel {
	width: 40%;
	margin: 0;
	padding: 0;
}

.h-info_box_contact {
	width: 30%;
	margin: 0;
	padding: 0;
}

.header_logo_box img,
.h-info_box_tel img,
.h-info_box_contact img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width:580px) {
	.header_logo_box {
		width: 45%;
		padding: 0;
	}

	.header_info_box {
		width: 55%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		padding: 0;
	}

	.h-info_box_tel {
		width: 55%;
		margin: 0;
		padding: 0;
	}
	
	.h-info_box_contact {
		width: 45%;
		margin: 0;
		padding: 0;
	}
}

/* ------------------------------------------------------------
    main_visual（メインビジュアル）
------------------------------------------------------------ */
.main_visual {
	position: relative;
	width: 100%;
	height: 0;
	margin-top: 5.5%;
	padding-top: 53.125%;
	background-image: url('../image/main_visual_back.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 100;
}

.m_v_contents {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(0);
	width: 100%;
}


@media screen and (max-width:580px) {
	.main_visual {
		position: relative;
		width: 100%;
		height: 0;
		margin-top: 10%;
		padding-top: 138.3333333%;
		background-image: url('../image/main_visual_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		z-index: 100;
	}
}


/* ------------------------------------------------------------
    お墓参りに関するお悩みはございませんか？
------------------------------------------------------------ */
.worry_box {
	position: relative;
	margin: 0 auto;
	width: 86%;
    height: 0;
    padding-top: 44.2708333%;
    background: url('../image/worry_box_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

h3.worry_h3 {
	font-family: 'Noto Serif JP', serif;
	position: absolute;
	top: 60%;
	left: 50%;
	width: 86%;
	transform: translate(-50%,-60%);
	font-size: 2.3vw;
	font-weight: 500;
	color: #083231;
	text-align: center;
}

@media screen and (max-width:580px) {
	.worry_box {
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 0;
		padding-top: 74.1666667%;
		background: url('../image/worry_box_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}

	h3.worry_h3 {
		position: absolute;
		top: 65%;
		left: 50%;
		width: 86%;
		transform: translate(-50%,-65%);
		font-size: 4.2vw;
		font-weight: 500;
	}
}

/* ------------------------------------------------------------
    お客様にお選び頂いている理由
------------------------------------------------------------ */

.choice_ti_h2 {
	position: relative;
	margin: 0 auto;
	width: 100%;
    height: 0;
    padding-top: 21.875%;
    background: url('../image/choice_ti_h2_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.choice_ti_h2 h2 {
	position: absolute;
	top: 70%;
	left: 50%;
	width: 70%;
	transform: translate(-50%,-60%);
	font-size: 2.8vw;
	font-weight: 700;
	color: #1F5358;
	text-align: center;
}

.choice_box {
	width: 80%;
	margin: 30px auto;
	padding: 0 0 2% 0;
	border: 2px solid #11A196;
}

h3.choice_h3 {
	width: 60%;
	margin: 15px auto;
	padding: 1%;
	font-size: 2.2vw;
	color: #FFFFFF;
	background-color: #11A196;
}

@media screen and (max-width:580px) {
	.choice_ti_h2 {
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 0;
		padding-top: 28.3333333%;
		background: url('../image/choice_ti_h2_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}

	.choice_ti_h2 h2 {
		position: absolute;
		top: 65%;
		left: 50%;
		width: 86%;
		transform: translate(-50%,-60%);
		font-size: 4.2vw;
	}

	.choice_box {
		width: 90%;
	}

	h3.choice_h3 {
		width: 80%;
		margin: 15px auto;
		padding: 1%;
		font-size: 3.6vw;
	}
}

/* ------------------------------------------------------------
    お墓参り代行サービスのメリット
------------------------------------------------------------ */

.service_merit_ti_h2 {
	position: relative;
	margin: 0 auto;
	width: 100%;
    height: 0;
    padding-top: 15.625%;
    background: url('../image/service_merit_ti_h2_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.service_merit_ti_h2 h2 {
	position: absolute;
	top: 55%;
	left: 50%;
	width: 70%;
	transform: translate(-50%,-55%);
	font-size: 2.8vw;
	font-weight: 700;
	color: #1F5358;
	text-align: center;
}

.service_merit_box {
	width: 90%;
	position: relative;
	margin: 20px auto;
    height: 0;
    padding-top: 40.46875%;
    background: url('../image/service_merit_box_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.service_merit_box_inner {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}

.service_merit_box_inner_inner {
	width: 32%;
	margin: 0 auto;
	padding: 0 0 2% 0;
	border: 2px solid #238563;
	background-color: #F7F7F7;
}

h3.service_merit_box_inner_h3 {
	width: 86%;
	margin: 10px auto;
	font-size: 1.7vw;
	font-weight: 700;
	color: #083231;
	line-height: 140%;
	text-align: center;
}

h4.service_merit_box_inner_h4 {
	width: 92%;
	margin: 0 auto;
	font-size: 1.2vw;
	font-weight: 600;
	color: #005C56;
	line-height: 130%;
	text-align: left;
}

@media screen and (max-width:580px) {
	.service_merit_ti_h2 {
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 0;
		padding-top: 23.3333333%;
		background: url('../image/service_merit_ti_h2_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}

	.service_merit_ti_h2 h2 {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 86%;
		transform: translate(-50%,-60%);
		font-size: 4.2vw;
	}

	.service_merit_box_mo {
		display: flex;
		flex-direction:column;
		justify-content: space-between;
		width: 100%;
		height: auto;
		margin: 2% auto;
		padding: 20px 0 0 0;
		background-color: #EDE997;
	}

	.service_merit_box_inner_inner {
		width: 86%;
		margin: 0 auto 20px;
	}

	h3.service_merit_box_inner_h3 {
		font-size: 4.2vw;
	}

	h4.service_merit_box_inner_h4 {
		font-size: 1.2rem;
	}
}

/* ------------------------------------------------------------
    お申込み～作業の流れ
------------------------------------------------------------ */

.h2_ti_flow {
	position: relative;
	margin: 0 auto;
	width: 100%;
    height: 0;
    padding-top: 8.33333333%;
    background: url('../image/h2_ti_flow_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.h2_ti_flow h2 {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #FFFFFF;
	font-size: 2.6vw;
	font-weight: 700;
}

h3.sub_ti {
	margin: 20px auto;
	font-size: 2.2vw;
	font-weight: 700;
}

.flow_box_1 {
	position: relative;
	width: 84%;
	margin: 10% auto 0;
	padding: 2% 1%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border: 2px solid #005A54;
}

.flow_box_2,
.flow_box_3,
.flow_box_4,
.flow_box_5 {
	position: relative;
	width: 84%;
	margin: 0 auto;
	padding: 2% 1%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border: 2px solid #005A54;
}

.flow_box_1::before {
	position: absolute;
	top: -24%;
	left: 2%;
	content:""; 
	background-image: url('../image/step1.png'); 
	display: inline-block;
	width: 6%; 
	height: 24%;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.flow_box_2::before {
	position: absolute;
	top: -24%;
	left: 2%;
	content:""; 
	background-image: url('../image/step2.png'); 
	display: inline-block;
	width: 6%; 
	height: 24%;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.flow_box_3::before {
	position: absolute;
	top: -24%;
	left: 2%;
	content:""; 
	background-image: url('../image/step3.png'); 
	display: inline-block;
	width: 6%; 
	height: 24%;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.flow_box_4::before {
	position: absolute;
	top: -24%;
	left: 2%;
	content:""; 
	background-image: url('../image/step4.png'); 
	display: inline-block;
	width: 6%; 
	height: 24%;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.flow_box_5::before {
	position: absolute;
	top: -24%;
	left: 2%;
	content:""; 
	background-image: url('../image/step5.png'); 
	display: inline-block;
	width: 6%; 
	height: 24%;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.flow_box_pho {
	width: 35%;
	margin: 0;
	padding: 0;
}

.flow_box_pho img {
	max-width: 100%;
	height: auto;
}

.flow_box_txt {
	width: 64%;
	margin: 0;
	padding: 0;
	vertical-align: top;
	text-align: left;
}

h3.flow_h3 {
	margin-bottom: 1%;
	font-size: 2.0vw;
	color: #005A54;
	font-weight: 900;
}

@media screen and (max-width:580px) {
	.h2_ti_flow {
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 0;
		padding-top: 16.6666667%;
		background: url('../image/h2_ti_flow_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}

	.h2_ti_flow h2 {
		font-size: 5.2vw;
		line-height: 150%;
	}

	h3.sub_ti {
		margin: 20px auto;
		font-size: 4.6vw;
		font-weight: 700;
	}

	.flow_box_1 {
		width: 86%;
		flex-direction: column;
		margin: 18% auto 0;
	}

	.flow_box_2,
	.flow_box_3,
	.flow_box_4,
	.flow_box_5 {
		width: 86%;
		flex-direction: column;
		margin: 0 auto;
	}

	.flow_box_1::before,
	.flow_box_2::before,
	.flow_box_3::before,
	.flow_box_4::before,
	.flow_box_5::before {
		position: absolute;
		top: -16%;
		left: 2%;
		width: 16%; 
		height: 16%;
	}

	.flow_box_pho,
	.flow_box_txt {
		width: 100%;
	}

	.flow_box_txt {
		padding-left: 2%;
		padding-right: 2%;
	}

	h3.flow_h3 {
		font-size: 1.7rem;
		margin-top: 1.5%;
		margin-bottom: 1.5%;
		text-align: center;
	}
}


/* ------------------------------------------------------------
    よくあるご質問
------------------------------------------------------------ */
section.qa {
	width: 100%;
	margin: 30px auto;
	padding: 50px 30px 0;
	background-color: #E5F2F2;
}

.h2_ti_qa {
	position: relative;
	margin: 0 auto;
	width: 100%;
    height: 0;
    padding-top: 8.33333333%;
    background: url('../image/h2_ti_flow_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.h2_ti_qa h2 {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #FFFFFF;
	font-size: 2.6vw;
	font-weight: 700;
}

.qanda_box {
	width: 100%;
	margin: 3% auto;
	padding: 2% 0;
}

.qanda_qabox {
	width: 96%;
	margin: 20px auto;
	padding: 15px;
	text-align: left;
}

.qanda_question_box {
	position: relative;
	padding: 0;
}

p.qanda_question {
	margin-left: 40px;
	font-size: 1.5vw;
	font-weight: 600;
	line-height: 160%;
}

.qanda_question_box::before {
	position: absolute;
    top: -2.3rem;
    left: -0.6rem;
    content: "Q";
    margin: 15px;
    font-family: 'STIX Two Math', serif;
    font-size: 2.4vw;
    color: #CD4E58;
}

.qanda_answer_box {
	position: relative;
	margin-left: 10%;
	padding: 15px 10px 10px 10px;
}

p.qanda_answer {
	font-size: 1.5vw;
	font-weight: 500;
	line-height: 160%;
	vertical-align: top;
}

.qanda_answer_box::before {
	position: absolute;
    top: 0.2rem;
    left: -1.8rem;
    content: "A";
    font-family: 'STIX Two Math', serif;
    font-size: 2.7vw;
    color: #4599B7;
}

ul.qa_ul {
	width: 100%;
	margin: 0;
	padding: 0;
}

li.qa_li {
	list-style-position: outside;
	margin-left: 3%;
	font-size: 1.4vw;
	font-weight: 500;
	line-height: 160%;
}

.qa_line {
	margin: 20px auto;
	width: 80%;
	height: 5px;
	border-bottom: 2px dotted #17998F;
}

@media screen and (max-width:580px) {
	.h2_ti_qa{
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 0;
		padding-top: 16.6666667%;
		background: url('../image/h2_ti_flow_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}

	.h2_ti_qa h2 {
		font-size: 5.2vw;
		line-height: 150%;
	}

	.qanda_qabox {
		width: 100%;
		margin: 15px auto;
		padding: 10px;
		text-align: left;
	}
	.qanda_question_box {
		margin-left: 10px;
	}

	p.qanda_question {
		margin-left: 10px;
		font-size: 1.3rem;
	}
	
	.qanda_question_box::before {
		position: absolute;
		top: -2.2rem;
    	left: -3.2rem;
		font-size: 2.4rem;
	}

	p.qanda_answer {
		font-size: 1.3rem;
	}
	
	.qanda_answer_box::before {
		position: absolute;
		top: 0.6rem;
    	left: -1.8rem;
		font-size: 2.4rem;
	}

	li.qa_li {
		font-size: 1.1rem;
	}
}


/* ------------------------------------------------------------
    お客様の声
------------------------------------------------------------ */
.customer_ti_h2 {
	position: relative;
	margin: 0 auto;
	width: 100%;
    height: 0;
    padding-top: 16.6666667%;
    background: url('../image/customer_ti_h2_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.customer_ti_h2 h2 {
	position: absolute;
	top: 76%;
	left: 50%;
	width: 70%;
	transform: translate(-50%,-76%);
	font-size: 2.8vw;
	font-weight: 700;
	color: #FFFFFF;
	text-align: center;
}

.customer_voice_box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 86%;
	margin: 3% auto;
	padding: 0;
}

.customer_voice_box_inner_1 {
	width: 20%;
	margin: 0 auto;
	padding: 0;
}

.customer_voice_box_inner img {
	max-width: 100%;
	height: auto;
}

.customer_voice_box_inner_2 {
	width: 76%;
	margin: 0 auto;
}

h4.customer_name {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 2.0vw;
	color: #005A54;
	font-weight: 800;
	text-align: left;
}

p.customer_p {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.6vw;
	font-weight: 600;
	color: #015760;
	text-align: left;
	line-height: 140%;
}

@media screen and (max-width:580px) {
	.customer_ti_h2 {
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 0;
		padding-top: 35%;
		background: url('../image/customer_ti_h2_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
	
	.customer_ti_h2 h2 {
		position: absolute;
		top: 68%;
		left: 50%;
		width: 86%;
		transform: translate(-50%,-65%);
		font-size: 4.7vw;
	}
	
	.customer_voice_box {
		width: 80%;
		margin: 2% auto;
	}
	
	.customer_voice_box_inner_1,
	.customer_voice_box_inner_2 {
		width: 100%;
	}

	p.customer_p {
		font-size: 1.2rem;
	}
}


/* ------------------------------------------------------------
    対応可能エリア
------------------------------------------------------------ */
.h2_ti_area {
	position: relative;
	margin: 0 auto;
	width: 100%;
    height: 0;
    padding-top: 8.33333333%;
    background: url('../image/h2_ti_flow_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.h2_ti_area h2 {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #FFFFFF;
	font-size: 2.6vw;
	font-weight: 700;
}

p.area_p {
	margin: 3% auto;
	font-size: 1.6vw;
	font-weight: 600;
}

.area_map_box {
	width: 90%;
	margin: 3% auto;
	padding: 5%;
	border: 3px solid #14726A;
	background-color: #DBEBDC;
}

.h3_area {
	position: relative;
	margin: 0 auto;
	width: 100%;
    height: 0;
    padding-top: 13.0208333%;
    background: url('../image/h3_area_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.h3_area h3 {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #FFFFFF;
	font-size: 2.6vw;
	font-weight: 700;
}

.area_detail {
	width: 80%;
	margin: 3% auto;
	padding: 0;
}


@media screen and (max-width:580px) {
	.h2_ti_area {
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 0;
		padding-top: 16.6666667%;
		background: url('../image/h2_ti_flow_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}

	.h2_ti_area h2 {
		font-size: 5.2vw;
		line-height: 150%;
	}

	p.area_p {
		margin: 3% auto;
		width: 80%;
		font-size: 1.2rem;
		font-weight: 600;
		text-align: left;
	}

	.area_map_box {
		padding: 3%;
	}

	.h3_area {
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 0;
		padding-top: 16.6666667%;
		background: url('../image/h3_area_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}

	.h3_area h3 {
		font-size: 4.6vw;
		font-weight: 700;
	}
}


/* ------------------------------------------------------------
    お問い合わせ
------------------------------------------------------------ */
.h2_ti_contact {
	position: relative;
	margin: 0 auto;
	width: 100%;
    height: 0;
    padding-top: 12.5%;
    background: url('../image/h2_ti_contact_back.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.h2_ti_contact h2 {
	width: 100%;
	position: absolute;
	top: 42%;
	left: 50%;
	transform: translate(-50%, -42%);
	color: #FFFFFF;
	font-size: 2.6vw;
	font-weight: 700;
}

p.contact_p {
	width: 80%;
	margin: 20px auto 0;
	font-size: 1.6vw;
	font-weight: 500;
	line-height: 140%;
	text-align: center;
}

span.hissu {
	display: inline-block;
	margin-left: 10px;
	padding: 1px 7px 1px 7px;
	font-size: 100%;
	font-weight: 600;
	color: #FF0000;
	border: 1px solid #FF0000;
	background-color: #FFFFFF;
}

.button {
	display       : inline-block;
	font-size     : 14pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;     /* カーソル   */
	padding       : 16px 32px;   /* 余白       */
	background    : #2785B9;     /* 背景色     */
	color         : #FFFFFF;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	box-shadow    : 2px 2px 5px #666666;  /* 影の設定 */
	border        : 2px solid #2785B9;    /* 枠の指定 */
}
.button:hover {
	box-shadow    : none;        /* カーソル時の影消去 */
	color         : #2785B9;     /* 背景色     */
	background    : #FFFFFF;     /* 文字色     */
}

@media screen and (max-width:580px) {
	.h2_ti_contact {
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 0;
		padding-top: 13.3333333%;
		background: url('../image/h2_ti_contact_back_mo.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}

	.h2_ti_contact h2 {
		position: absolute;
		top: 42%;
		left: 50%;
		transform: translate(-50%, -42%);
		font-size: 5.2vw;
		line-height: 150%;
	}

	p.contact_p {
		font-size: 1.2rem;
		text-align: left;
	}
}


/* ------------------------------------------------------------
    about us
------------------------------------------------------------ */
h3.about_us_h3 {
	margin: 0 auto;
	padding: 0;
}
table.about_us_table {
	width: 80%;
	margin: -10px auto 20px;
}
table.about_us_table,
table.about_us_table th,
table.about_us_table td {
	border-collapse: collapse;
	border: 1px solid #198276;
	line-height: 1.5;
}
table.about_us_table th {
	width: 25%;
	padding: 15px;
	color: #FFFFFF;
	background-color: #11877A;
	text-align: left;
}
table.about_us_table td {
	width: 75%;
	padding: 15px;
	background-color: #F1F1F0;
	text-align: left;
}

@media screen and (max-width:580px) {
	table.about_us_table {
		width: 90%;
		margin: 15px auto 20px;
	}
	table.about_us_table th,
	table.about_us_table td {
		display: block;
		width: 100%;
		text-align: center;
	}
}

/* ------------------------------------------------------------
    footer 街並み
------------------------------------------------------------ */
section.cityscape {
	margin-bottom: 10%;
}




/* Footer-bar
------------------------------------------------------------ */

#heada{
    width:100%;
 	background-color:#fff;
    margin-bottom: 0;
  	text-align: center;
  	overflow: hidden; 
    position: fixed;
    top:0px;
    right: 0;
    height:78px;
    box-shadow: -3px -3px 3px rgba(0, 0, 0, 0.5);
    vertical-align: middle;
    z-index: 100;
}


.bottom{
  	margin-bottom: 0;
  	text-align: center;
  	overflow: hidden; 
    position: fixed;
    bottom:-200px;
    right: 0;
    width:100%;
    box-shadow: -3px -3px 3px rgba(0, 0, 0, 0.5);
    vertical-align: middle;
    z-index: 100;
}

.footerbar{
    	width:100%;
    	padding-top:0;
}

.footerbar img{
        max-width:100%;
}

.footer_info_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
}

.finfo_box_inner1 {
	width: 50%;
	margin: 0;
}

.finfo_box_inner2 {
	width: 50%;
	margin: 0;
}


.finfo_box_inner1 img,
.finfo_box_inner2 img {
	max-width: 100%;
	height: auto;
	vertical-align:top;
}

@media (max-width: 769px) and (min-width: 481px) {

#bottomb{
    	opacity:0;
}
    
.footerbarm{
    	width:100%;
    	padding:0;
    	overflow: hidden;
    	position: fixed;
    	bottom:0;
    	right: 0;
    	box-shadow: -3px -3px 3px rgba(0, 0, 0, 0.5);
    	background-color:#fff;
    	z-index: 100;
    	text-align:center;
}  

.footerbarm img{
        max-width:100%;
}
    
span.m2{
    	display: none !important;    
}  
}

@media (max-width: 480px) {

#bottomb{
    	opacity:0;
}
    
.footerbarm{
    	width:100%;
    	padding:0;
    	overflow: hidden;
    	position: fixed;
    	bottom:0;
    	right: 0;
    	box-shadow: -3px -3px 3px rgba(0, 0, 0, 0.5);
    	background-color:#fff;
    	z-index: 100;
    	text-align:center;
}  


.footerbarm img{
        max-width:100%;
}
    
span.m1{
    	display: none !important;    
}  
span.m2{
    	display: block !important;    
} 
}

/* Copyright
------------------------------------------------------------ */
.copyright {
    width:100%;
  	padding-top: 7px;
  	padding-bottom: 7px;
	background-color: #1D2B53;
	color:#fff;
    font-size: 0.8rem;
}

@media screen and (max-width: 769px) {
	.copyright {
		width:100%;
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 0.8rem;
	}
}



/* totop
------------------------------------------------------------ */
.page_top {
	color: #fff;
	background-color: fff;
	text-decoration: none;
	position: fixed;
	bottom: 14rem;
	right: 1rem;
	display: none;
	font-size: 2.6rem;
	width: 50px;
	height: 80px;
	line-height: 80px;
	border-radius: 0x;
	text-align: center;
	cursor: pointer;
	z-index: 77777;
	background: url(../image/totop.png) no-repeat top center;
}

.page_top:hover {
	color: #fff !important;
	background-color: #fff;
	text-decoration: none;
	width: 50px;
	height: 80px;
	line-height: 80px;
	opacity: 1;
	background: url(../image/totop2.png) no-repeat top center;
}

@media screen and (max-width: 1080px) and (min-width: 770px) {
	.page_top {
		color: #fff;
		background-color: fff;
		text-decoration: none;
		position: fixed;
		bottom: 12rem;
		right: 1rem;
		display: none;
		font-size: 2.6rem;
		width: 50px;
		height: 80px;
		line-height: 80px;
		border-radius: 0;
		text-align: center;
		cursor: pointer;
		z-index: 77777;
		background: url(../image/totop.png) no-repeat top center;
	}

	.page_top:hover {
		color: #fff !important;
		background-color: #fff;
		text-decoration: none;
		width: 50px;
		height: 80px;
		line-height: 80px;
		opacity: 1;
		background: url(../image/totop2.png) no-repeat top center;
	}
}
@media screen and (max-width: 769px) and (min-width: 481px) {
	.page_top {
		color: #fff;
		background-color: fff;
		text-decoration: none;
		position: fixed;
		bottom: 9rem;
		right: 0;
		display: none;
		font-size: 2.6rem;
		width: 50px;
		height: 80px;
		line-height: 80px;
		border-radius: 0;
		text-align: center;
		cursor: pointer;
		z-index: 77777;
		background: url(../image/totop.png) no-repeat top center;
	}

	.page_top:hover {
		color: #fff !important;
		background-color: #fff;
		text-decoration: none;
		width: 50px;
		height: 80px;
		line-height: 80px;
		opacity: 1;
		background: url(../image/totop2.png) no-repeat top center;
	}
}
@media screen and (max-width: 480px) {
	.page_top {
		color: #fff;
		background-color: fff;
		text-decoration: none;
		position: fixed;
		bottom: 8rem;
		right: 0;
		display: none;
		font-size: 2.6rem;
		width: 40px;
		height: 60px;
		line-height: 60px;
		border-radius: 0;
		text-align: center;
		cursor: pointer;
		z-index: 777777;
		background: url(../image/totop_mo.png) no-repeat top center;
	}

	.page_top:hover {
		color: #fff !important;
		background-color: #fff;
		text-decoration: none;
		width: 40px;
		height: 60px;
		line-height: 60px;
		opacity: 1;
		background: url(../image/totop2_mo.png) no-repeat top center;
	}
}

/* アニメーション */

.wp1, .wp2, .wp3, .wp4, .wp5, .wp6 {
    visibility: hidden
}
.bounceInLeft, .bounceInRight, .fadeInUp, .fadeInUpDelay, .fadeInDown, .fadeInUpD, .fadeInLeft, .fadeInRight, .bounceInDown {
    visibility: visible
}

.delay-01s {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-03s {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delay-07s {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.fadeIn {  
	opacity: 1;
				animation:fadeIn 1s normal  running;
				animation-iteration-count: 1;
	}

	@keyframes fadein {
		0% {
			opacity:0;
		}
		100% {
			opacity:1;
		}
}