@charset "utf-8";
/* CSS 共用*/

/*
Common
---------------------------------------------*/
body{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 180%;
	color:#333;
}

footer{	margin-bottom:60px; border-top: dotted 2px #ddd;}

/*
Contents
---------------------------------------------*/
.contents{
	margin-left: 10px;
	margin-right: 10px;
	position: relative;
}

hr{	border-top: 1px solid #CCCCCC; }

img {
	display:block;
	width:100%;
	height:auto;
}
.div_click:hover{ cursor: pointer; }


/* flex-box */
.flex {
	display: -ms-flex;
	display: flex;
	-ms-flex-wrap: wrap; /*IE10*/
	    flex-wrap: wrap;
	-ms-flex-pack: justify; /*IE10*/
    justify-content: space-between;
	   -ms-flex-align: center;
	      align-items: center;
}


/* width値にpadding値を含める */
.box_sizing{
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/* 揃え */
.center {text-align:center;}
.right  {text-align:right; }


/*
Font
---------------------------------------------*/
.small { font-size:small;}

.red {color:#f00;}

/*
Comment caption
---------------------------------------------*/
.cap {
	padding-left: 1em;
	text-indent: -1em;
}


/*
Margin
---------------------------------------------*/
.mb_s{ margin-bottom:20px;}
.mb_m{ margin-bottom:40px;}
.mb_l{ margin-bottom:60px;}


/*
切り替えフラグ
---------------------------------------------*/
.sp { display:block; }
.pc { display:none;  }


/*
Pankuzu
---------------------------------------------*/
#pankuzu { display: none;}


/*
Midashi
---------------------------------------------*/
.h2__midashi {
	border-left: solid 4px #999;
    padding: 10px .5em;
    font-size: 1.5rem;
    margin: 1.5rem 0;
}

/*
Main visual
---------------------------------------------*/
#main_visual .contents{
	width:100%;
	max-width:1330px;
	margin-left:auto;
	margin-right:auto;
	position: relative;
}
#main_visual img {
    width: 100%;
}


/*
静岡霊苑とは
---------------------------------------------*/
#reien_what{
	background-color:#f4f4f4;
	padding:30px 0 40px;
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
#reien_what p{ display:inline;}


/*
Select Link
---------------------------------------------*/
#select_point__link .flex li {
	width: 32.9%;
	border:solid 1px #ddd;
	border-right:none;
}
#select_point__link .flex li:last-child { border-right:solid 1px #ddd;}
#select_point__link .flex li a {
	display:block;
	width:100%;
	padding:2em 0;
	text-align:center;
	text-decoration:none;
	color:#333;
	-webkit-transition: .2s ease-in-out;
	    -ms-transition: .2s ease-in-out;
	        transition: .2s ease-in-out;
}
#select_point__link .flex li a:hover { background-color:#ededed;}


/*
Select Point
---------------------------------------------*/
.reien__midashi {
	padding:60px 0 40px;
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size:1.8em;
	text-align:center;
}

/**/
#select_point .flex {
    -ms-flex-pack: center;
    justify-content: center;
}
#select_point li     { margin-bottom:60px;}
#select_point li img { margin-bottom:20px;}
#select_point li p   { margin-bottom:20px;}

/**/
.btn__link {
	display: block;
	width:70%;
	margin:auto;
	padding: 15px 0;
	background-color: #fff;
	border:solid 1px #999;
	text-decoration: none;
	text-align:center;
	color: #333;
    -ms-border-radius: 10px;
		border-radius: 10px; 
	-webkit-transition: .2s ease-in-out;
	    -ms-transition: .2s ease-in-out;
	        transition: .2s ease-in-out;
	cursor: pointer;
	position: relative;
}
.btn__link:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-top  : solid 2px #ccc;
	border-right: solid 2px #ccc;
	-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 1em;
}
.btn__link:hover { background-color:#f1f2f3;}


/*
愛昇殿 Link
---------------------------------------------*/
#aishoden__link{
	padding: 50px 0;
	background-color:#f4f4f4;
}
#aishoden__link .contents{
	background-color:#fff;
	padding:30px 10px 30px;
}
#aishoden__link .flex {
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
}
#aishoden__link dl dt {	display:none;}
#aishoden__link .midashi{
	margin-bottom:10px;
	font-size:x-large;
}
#aishoden__link dl dd .flex{
	-ms-flex-pack: start;
    justify-content: flex-start;
}
#aishoden__link .flex li {
	text-align: center;
    padding: 0 8px;
    background-color: #f7f0d5;
    margin-right: .5em;
}
#aishoden__link .flex li:last-child { margin-right: 0;}


/*
新着情報
---------------------------------------------*/
#news {	margin-bottom:60px;}
#news ul { border-top:solid 1px #999;}
#news ul li {
	display:block;
	border-bottom:solid 1px #999;
}
#news dl{ width:90%;}
#news dl dt{
	width:100%;
	color:#666;
	font-size:small;
}
#news dl dd{ width:100%;}
#news a {
	display:block;
	width:100%;
	padding:10px 0;
	text-decoration:none;
	color:#333;
	cursor:pointer;
	position:relative;
	-webkit-transition: .2s ease-in-out;
	    -ms-transition: .2s ease-in-out;
	        transition: .2s ease-in-out;
}
#news a:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-top  : solid 2px #ccc;
	border-right: solid 2px #ccc;
	-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 1em;
}
#news a:hover {	background-color:#f1f1f1;}


/*
外部 Link
---------------------------------------------*/
#external__link ul li {
	width: 100%;
    border: solid 1px #999;
	margin-bottom:20px;
}
#external__link ul li dl{
    -ms-flex-pack: start;
    justify-content: flex-start;
}
#external__link ul li dl dt { width: 5em;}
#external__link ul li dl dd { margin-left: 20px;}
#external__link ul li a {
	display:block;
	width:100%;
	padding:10px;
	text-decoration:none;
	color:#333;
	cursor:pointer;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	-webkit-transition: .2s ease-in-out;
	    -ms-transition: .2s ease-in-out;
	        transition: .2s ease-in-out;
}
#external__link ul li a:hover {	background-color:#f1f2f3;}


/*
交通案内：top
---------------------------------------------*/
#reien__access { margin-bottom:60px;}
#reien__access iframe{
	width:100%;
	height:250px;
	margin-bottom:10px;
}
#reien__access .flex li{ width:100%;}


/*共用
---------------------------------------------*/
/*
霊苑のポイント
---------------------------------------------*/
#reien_point { padding:3em 0;}
#reien_point p {
	text-align:left;
	line-height: 1.8em;
}
#reien_point p#reien_point__midashi {
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1em;
}


/*
霊苑のポイントリスト
---------------------------------------------*/
#reien_point__list .flex{
	-ms-flex-pack: center;
    justify-content: center;
}
#reien_point__list .flex li{ margin-bottom:40px;}
#reien_point__list .flex li img { margin-bottom:10px;}


/*
aside Link
---------------------------------------------*/
#aside__link {
	padding: 50px 0 10px;
	background-color:#f4f4f4;
}
#aside__link .contents{
	background-color:#fff;
	padding:30px 10px 30px;
	margin-bottom:50px;
}
#aside__link .flex {
	-ms-flex-pack: center;
    justify-content: center;
}
#aside__link .flex dt  { margin-bottom:20px;}
#aside__link .flex dd p{ margin-bottom:20px;}

.aside__link-midashi { font-size:x-large;}


/*
フロートボックス
---------------------------------------------*/
.pic-left {	padding-bottom:8em;}
.pic-left img{ position:relative;}
.pic-left .float-right{
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	bottom:0;
	display:block;
	background-color:#f4f4f4;
	width:90%;
	padding:10px;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
.pic__midashi {
	font-size:large;
	text-align:center;
	padding:10px 0;
}


/*
墓地区画
---------------------------------------------*/
#reien__area_list .flex li{
	width: 48%;
	margin-bottom: 1em;
	position:relative;
}
#reien__area_list .flex li span{
	position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 2.5em;
    padding: .5em;
    text-align: center;
    background-color: #fff;
	font-size:small;
	border-bottom: solid 1px #ddd;
    border-right: solid 1px #ddd;
}


/*
墓地面積・使用料
---------------------------------------------*/
#reien__area { margin-bottom:60px;}

.h3_midashi {
	font-size: x-large;
    padding: 20px 5px;
    border-bottom: solid 1px #999;
    margin-bottom: 20px;
}

/**/
#reien__area table { width:100%;margin-bottom:20px;}
#reien__area table th{
	width: 16%;
    padding: .5em 5px;
    vertical-align: middle;
    line-height: 1.5em;
    text-align: center;
    font-size: .6em;
}
#reien__area table td{
	width: 16%;
    padding: 1em 5px;
    text-align: center;
    font-size: .6em;
    line-height: 1.5em;
}
#reien__area table th span,
#reien__area table td span{ display:block;}

#reien__area table tr:nth-child(odd){ background-color:#f4f4f4;}
#reien__area table tr:nth-child(1)  { background-color:#fff;}
#reien__area table tr:nth-child(8)  { background-color:#f9ffe1;}
#reien__area table tr:nth-child(9)  { background-color:#e6f2b1;}

#reien__area table tr:nth-child(1) th,#reien__area table tr:nth-child(1) td { border-bottom:solid 2px #999;}

#reien__area table td:nth-child(4),
#reien__area table td:nth-child(5),
#reien__area table td:nth-child(6){ text-align:right;}


/*
墓地区画:各種
---------------------------------------------*/
#reien__area-boseki dt,
#reien__area-boseki dd{
	width:100%;
}
#reien__area-boseki dt{	order:2;}
#reien__area-boseki dd{
	order:1;
	margin-bottom: 20px;
}

#reien__area-boseki dt ul.flex,
#reien__area-boseki2 ul.flex,
#reien__area-boseki3 ul.flex{
	width: 100%;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

#reien__area-boseki dt ul.flex li,
#reien__area-boseki2 ul.flex li,
#reien__area-boseki3 ul.flex li{
	max-width: 9em;
    text-align: center;
    font-size: medium;
    margin: 0 0.5em;
}


/*
永代供養・トップ
---------------------------------------------*/
/*画像・下段空き調整*/
#eitaikuyou .pic-left { padding-bottom:10em;}

/*フロートコンテンツ*/
#eitaikuyou .pic-left .float-right { padding:30px 10px;}

/*永代供養コピー*/
#eitaikuyou_copy_midashi {
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size:xx-large;
	margin-bottom:.5em;
}
#eitaikuyou_copy_price {
	font-size:x-large;
	color:#cc0033;
	margin-bottom:.5em;
}
#eitaikuyou_copy_price span {
	display:block;
	font-size:medium;
	color:#333;
}
#eitaikuyou_copy_point {
	background-color: #cc0033;
    padding: 10px;
    color: #fff;
    font-size: .9em;
    margin-bottom: 10px;
}
#eitaikuyou_copy .cap { font-size:small;}


/*
よくある質問・faq.html
---------------------------------------------*/
#faq { margin:0 0 4em;}
#faq ul li{
	border-bottom: solid 1px #8db41a;
	padding:2em 0;
}
.Q {
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    font-weight: bold;
    font-size: 1.3rem;
    margin-left: 2em;
    line-height: 1.5em;
    position: relative;
}
.Q:after,.A:after {
	content: '';
    position: absolute;
    display: block;
    width : 30px;
    height: 31px;
    background: url(../images/faq/faq_q.png) no-repeat left top;
    background-size: 30px auto;
    top :    0em;
    left: -1.8em;
}
.A {
	margin-left: 2.7em;
    padding-top:   1em;
    position: relative;
}
.A:after {
    background-image: url(../images/faq/faq_a.png);
    left: -2.4em;
	top :    1em;
}


/*
交通案内・access.html
---------------------------------------------*/
#access { margin: 0 0 4em;}
#access img{ width:100%;}
#access .h4_midashi {
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}
#access .h5_midashi {
	font-weight: bold;
    margin-bottom: 10px;
}

/*
無料説明会
---------------------------------------------*/
#reien__area #schedule table{ width:100%;}
#reien__area #schedule table th{
	padding:20px 0px;
	width:16%;
	background-color:#e3ef9c;
	font-size: small;
    border-bottom: solid 3px #fff;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
#reien__area #schedule table td{
	padding:10px;
	text-align:left;
	width:75%;
	background-color:#fffde1;
	font-size: small;
    border-bottom: solid 3px #fff;
	border-left: solid 3px #fff;
    vertical-align: middle;
}

/*
お客様の声：目次ページ  voicde.html
---------------------------------------------*/
#voice_index li { margin-bottom:20px;}
#voice_index li a{
	background-color:#fffde1;
	display:block;
	width:100%;
	padding:30px 10px;
	text-decoration:none;
	color:#333;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	-webkit-transition: .2s ease-in-out;
	    -ms-transition: .2s ease-in-out;
	        transition: .2s ease-in-out;
	cursor:pointer;
}
#voice_index li a:hover{ background-color:#e8e6d1;}

/*
お客様の声：目次ページ  voicde.html
---------------------------------------------*/
/*文章の省略*/
.ellipsis {
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}

/*
お客様の声 voice01.html～
---------------------------------------------*/
.voice { margin-bottom:40px;}

/*お客様の声：個人評価*/
.voice__view {
    padding-bottom: 20px;
    margin-bottom: 20px;
	border-bottom: dotted 3px #006b00;
}
.voice__view .flex{	margin-bottom:10px;}
.voice__view .flex li{
	padding: 0;
    border: none;
    margin: 0;
}
.voice__view .flex dt { width:35%;}
.voice__view .flex dd { width:65%;}

/*お客様情報（年齢／性別）*/
.voice__guest {
	font-size: large;
    margin-bottom: 10px;
}
.voice__guest span {
	background-color:#940a00;
	color:#fff;
	padding:0 10px;
	font-size:0.9em;
    -ms-border-radius: 3px;
	    border-radius: 3px;  
}
/*お客様評価*/
/*お客様評価 ＞ 評価項目*/
.voice__view .voice__view_right .flex {
	-ms-flex-pack:start;
    justify-content:flex-start;
}
.voice__view .voice__view_right .flex .voice__view_sougou { width:30%;}
.voice__view .voice__view_right .flex .voice__view_sougou_star { width:40%;}

/*お客様評価：交通、環境、設備・施設、管理状況*/
.voice__view_kakuhyouka { font-size:.78rem}

/*各項目：個人の感想*/
.voice ul li {
	padding:15px 0 30px;
	border-bottom:solid 1px #006b00;
	margin-bottom:20px;
}

/*お客様の声：タイトル*/
.voice__h3_midashi {
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.8em;
    margin-bottom: 20px;
}

/*見出し：各項目*/
.voice__h4_midashi {
	font-size: 1.4em;
    font-weight: bold;
    padding: 10px 2.5em 10px;
    margin-bottom: 10px;
}

/*アイコン：各項目*/
.voice ul li:nth-child(1) .voice__h4_midashi,
.voice ul li:nth-child(2) .voice__h4_midashi,
.voice ul li:nth-child(3) .voice__h4_midashi,
.voice ul li:nth-child(4) .voice__h4_midashi,
.voice ul li:nth-child(5) .voice__h4_midashi { position:relative;}

.voice ul li:nth-child(1) .voice__h4_midashi:before,
.voice ul li:nth-child(2) .voice__h4_midashi:before,
.voice ul li:nth-child(3) .voice__h4_midashi:before,
.voice ul li:nth-child(4) .voice__h4_midashi:before,
.voice ul li:nth-child(5) .voice__h4_midashi:before {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	content:'';
	display:block;
	width:2em;
	height:2em;
	background-image:url(../images/nav_icon07.png);
	background-repeat:no-repeat;
	background-position:top left;
	background-size:contain;
}
.voice ul li:nth-child(2) .voice__h4_midashi:before { background-image:url(../images/nav_icon08.png);}
.voice ul li:nth-child(3) .voice__h4_midashi:before { background-image:url(../images/nav_icon05.png);}
.voice ul li:nth-child(4) .voice__h4_midashi:before { background-image:url(../images/nav_icon01.png);}
.voice ul li:nth-child(5) .voice__h4_midashi:before { background-image:url(../images/nav_icon09.png);}

/*お客様一覧に戻る*/
.back_to_list {	text-align:right;}
.back_to_list a {
	color:#333;
	cursor:pointer;
}

/*
静岡霊苑 TVCM
---------------------------------------------*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

#pc------------------------------------------------------------------------------------------------------{}
@media only screen and (min-width: 980px) {
/*
切り替えフラグ
---------------------------------------------*/
.sp { display:none; }
.pc { display:block;}


/*
Contents
---------------------------------------------*/
.contents{
	margin-left:auto;
	margin-right:auto;
	width:940px;
}


/*
footer
---------------------------------------------*/
footer{
	margin-bottom:0;
}


/*
Pankuzu
---------------------------------------------*/
#pankuzu {
    display: inherit;
    font-size: small;
	color:#666;
    padding-top   : 2em;
    padding-right : 0px;
    padding-bottom: 0px;
    padding-left  : 0px;
	border-bottom: 1px dotted #CCC;
	text-shadow: white 1px 1px 0px, white -1px 1px 0px, white 1px -1px 0px, white -1px -1px 0px;
	margin-top: 0px;
	margin-bottom: 20px;
}
#pankuzu a{ color:#666 }


/*
Bottun
---------------------------------------------*/
.btn__link {
	width: 240px;
    padding: 10px 0;
    font-size: 14px;
}


/*
Main visual
---------------------------------------------*/
#main_visual { margin-bottom:0;}
#main_visual img { width: 100%;}


/*
静岡霊苑とは
---------------------------------------------*/
#reien_what{
    padding: 60px 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.8em;
    text-align: center;
}
#reien_what p{ display:block;}


/*
Select Link
---------------------------------------------*/
#select_point__link { display:none;}


/*
Select Point
---------------------------------------------*/
#select_point {}

#select_point .contents {
	max-width:1300px;
	width:100%;
}
/*見出し*/
.reien__midashi {
	padding:80px 0 40px;
	font-size:36px;
}

/**/
#select_point .flex {
    -ms-flex-pack: start;
    justify-content: flex-start;
}
#select_point li {
	width:33%;
	border-left:solid 1px #ccc;
	padding:10px 25px 30px;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
#select_point li:last-child { border-right:solid 1px #ccc;}
#select_point li p { margin-bottom:40px;}
#select_point li .btn__link {
    width: 220px;
    font-size: 14px;
    padding: 10px 0;
}


/*
愛昇殿 Link
---------------------------------------------*/
#aishoden__link{ padding: 90px 0;}
#aishoden__link .contents { padding: 20px 20px 20px;}
#aishoden__link .flex {
	-ms-flex-pack: justify;
    justify-content: space-between;
}
#aishoden__link .flex li {
    padding: 0 15px;
    margin-right: 5px;
}
#aishoden__link .midashi {
    font-size: xx-large;
}
#aishoden__link dl dt {
	display:block;
	width:400px;
	order:2;
}
#aishoden__link dl dd {
	width:500px;
	order:1;
}
#aishoden__link dl dd .btn__link { margin-left: 0;}
#aishoden__link dl dd p span { display:block;}


/*
新着情報
---------------------------------------------*/
#news dl.flex{
	width:940px;
	-ms-flex-pack:start;
    justify-content:flex-start;
	padding-left:10px;
	padding-right:10px;
	-webkit-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

#news dl dt{
	width:150px;
	color:#666;
	font-size:14px;
}
#news dl dd{
	width:770px;
	font-size:16px;
	color:#336699;
}
#news a { padding:15px 0;}
#news a:after { display:none;}


/*
外部 Link
---------------------------------------------*/
#external__link ul li {
	width:300px;
	margin-bottom: 0;
}
#external__link ul li dl dt { width: 60px;}


/*
交通案内：top
---------------------------------------------*/
#reien__access iframe{ height:480px;}
#reien__access .flex li:nth-child(1) { width:770px;}
#reien__access .flex li:nth-child(2) { width:160px;}
#reien__access .flex li .btn__link { width:100%;}


/*共用
---------------------------------------------*/
/*
霊苑のポイント
---------------------------------------------*/
#reien_point { padding: 40px 0 100px;}
#reien_point p {
	text-align:center;
	font-size:18px;
	line-height: 1.8em;
}
#reien_point p span { display:block;}

#reien_point p#reien_point__midashi {
    font-size: 40px;
	font-weight:bold;
    margin-bottom: 1em;
}


/*
霊苑のポイントリスト
---------------------------------------------*/
#reien_point__list .flex{
	-ms-flex-pack: justify; /*IE10*/
    justify-content: space-between;
}
#reien_point__list .flex li{
	width:280px;
	margin-bottom:0;
}
#reien_point__list .flex li p{
	display:block;
	height:100px;
}


/*
aside Link
---------------------------------------------*/
#aside__link { padding: 90px 0 10px;}
#aside__link .contents {
	padding: 20px 20px 20px;
	margin-bottom:80px;
}
#aside__link .flex {
	-ms-flex-pack: justify; /*IE10*/
    justify-content: space-between;
}
#aside__link .flex dt{
	margin-bottom:0px;
	width:300px;
	order:2;
}
#aside__link .flex dd{ order:1;}
.aside__link-midashi { font-size:30px;}
#aside__link .flex dd .btn__link { margin:0;}


/*
フロートボックス
---------------------------------------------*/
.pic-left { padding-bottom: 0;}
.pic-left img { width: 615px;}

.pic-left .float-right {
    top: 10em;
    bottom: initial;
    left: initial;
    right: 0;
    display: block;
    width: 360px;
    height: 220px;
    padding: 20px;
}
.pic__midashi {	font-size:24px;}


/*
墓地区画
---------------------------------------------*/
#reien__area_list .flex li{
	width: 260px;
    margin-bottom: 30px;
}
#reien__area_list .flex li span{
	width: 50px;
    padding: 15px 10px;
	font-size:24px;
}


/*
墓地面積・使用料
---------------------------------------------*/
#reien__area table th,
#reien__area table td,
#reien__area table tr:nth-child(1) th,
#reien__area table tr:nth-child(1) td{
	font-size: large;
    padding: 10px 10px;
}

#reien__area table th span,
#reien__area table td span{ display:inline;}

.h3_midashi { margin-bottom: 40px;}


/*
墓地区画:各種
---------------------------------------------*/
#reien__area-boseki .flex{
	-ms-flex-pack:start;
    justify-content:flex-start;
}
#reien__area-boseki dt ul.flex{
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#reien__area-boseki dt{width:430px;}
#reien__area-boseki dd{width:500px;}

#reien__area-boseki dt ul.flex li,
#reien__area-boseki2 ul.flex li,
#reien__area-boseki3 ul.flex li {
    max-width: 160px;
    font-size: 18px;
    margin: 0 40px 0 0;
}


/*
永代供養・トップ
---------------------------------------------*/
/*画像・下段空き調整*/
#eitaikuyou .pic-left {
	background-color:#bfc1b6;
	padding-bottom:0;
}
#eitaikuyou .pic-left img { width:auto;}

/*フロートコンテンツ*/
#eitaikuyou .pic-left .float-right {
	background-color: #f4f4f4;
    width: 460px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    height: 270px;
	padding:30px 20px;
}

/*永代供養コピー*/
#eitaikuyou_copy_midashi {
	font-size:36px;
	margin-bottom:.5em;
}
#eitaikuyou_copy_price {
	font-size:28px;
	margin-bottom:.5em;
}
#eitaikuyou_copy_price span {
	display:inline;
	font-size:18px;
	padding-left:10px;
}
#eitaikuyou_copy_point {
    padding: 10px 0;
    font-size: 14px;
	text-align:center;
}
#eitaikuyou_copy .cap{ font-size:medium;}


/*
よくある質問・faq.html
---------------------------------------------*/
#faq { margin:0 0 100px;}
#faq ul li{ padding: 3em 2em 5em;}

.Q {
    font-size: 1.5rem;
	margin-bottom:30px;
    border-bottom: dotted 2px #DDD;
}
.Q:after,.A:after {
    width: 40px;
    height: 41px;
    background-size: 40px auto;
    top: -0.2em;
    left: -2.5em;
}
.A { margin-left:5em;}
.A:after {
    left: -3.5em;
    top :    5px;
}


/*
交通案内・access.html
---------------------------------------------*/
#access { margin: 0 0 100px;}
#access img{ width:526px;}
#access dl {
	-ms-flex-pack: start; /*IE10*/
    justify-content: flex-start;
	   -ms-flex-align: flex-start;
	      align-items: flex-start;
}
#access dl dt {	margin-right:30px;}


/*
無料説明会
---------------------------------------------*/
#reien__area #schedule table th{
	padding: 20px 10px;
    width: 120px;
    font-size: 18px;
    border-bottom: solid 5px #fff;
	
}
#reien__area #schedule table td{
	padding: 10px 20px;
    width: 820px;
    font-size: 18px;
    border-bottom: solid 5px #fff;
    border-left: solid 5px #fff;
}


/*
お客様の声：目次ページ  voicde.html
---------------------------------------------*/
#voice_index li { margin-bottom:60px;}
#voice_index li a{ padding:20px 10px 30px;}
/*文章の省略*/
.ellipsis {
    display: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*
お客様の声 voice01.html～
---------------------------------------------*/
.voice {
	padding:0;
	margin-bottom:60px;
}
.voice__view .flex{
	-ms-flex-pack:start;
    justify-content:flex-start;
	margin-bottom: 0;
}
.voice__view .flex li {
    padding: 0;
    border: none;
    margin: 0;
}

/*お客様評価*/
/*お客様評価 ＞ お客様イメージ画像*/
.voice__view .voice__view_left { width:360px;}
/*お客様評価 ＞ 評価項目*/
.voice__view .voice__view_right{ max-width: 590px;}
.voice__view .voice__view_right .flex .voice__view_sougou {	width:120px;}
.voice__view .voice__view_right .flex .voice__view_sougou_star {
	width: 130px;
	margin-left: 0;
}
/*お客様評価 ＞ 交通、環境、設備・施設、管理状況*/
.voice__view_kakuhyouka {font-size:medium;}

.voice__view .flex dt{ width:100px;}
.voice__view .flex dd{
	margin-left:40px;
	max-width:200px;
}

/*お客様の声：タイトル*/
.voice__h3_midashi { font-size:1.5em;}

/*お客様一覧に戻る*/
.back_to_list a:hover { text-decoration:none;}


}