@charset "utf-8";


/*--------------------------------------------------------------------
footer
--------------------------------------------------------------------*/
footer {
  padding-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  footer {
    padding-bottom: 120px;
  }
}

/*------------------------------------------------------------------------------------------------------------------------
 ヘッダ固定
------------------------------------------------------------------------------------------------------------------------*/
#header_fixed {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
#header_fixed.fadeinanime {
  display: block;
}
#header_fixed
, #header_fixed a img {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
#header_fixed a {
  display: block;
}
#header_fixed div img:first-child {
  padding-right: 22px;
}
#header_fixed .header_fixed_in {
  position: relative;
  padding: 5px;
  margin: auto;
  text-align: center;
  display: block;
  border-bottom: 2px solid #DDD;
  background: rgba(255, 255, 255, 0.9);
  zoom: 1;
}
@media only screen and (max-width: 768px) {
  #header_fixed {
    display: none!important;
  }
}

/*------------------------------------------------------------------------------------------------------------------------
 レイアウト
------------------------------------------------------------------------------------------------------------------------*/
#main_contents {
  width: 1000px;
  max-width: 94%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#side {
	width	: 276px;
	text-align : left;
  padding-top: 50px;
}
#main {
  width: 710px;
  max-width: 100%;
  text-align: left;
  padding-top: 50px;
}
@media only screen and (max-width: 768px) {
  #side {
    display: none;
  }
  #main {
    width: 100%;
  }
}


/*------------------------------------------------------------------------------------------------------------------------
 サイドバー
------------------------------------------------------------------------------------------------------------------------*/
#side .nav_box {
	width: 270px;
}
#side .nav_box .side_nav
, #side .nav_box .side_nav li {
	margin			: 0px;
	padding			: 0px;
	list-style		: none;
}
#side .nav_box .side_nav {
	padding			: 0px 2px 11px;
	border-bottom: 1px #ccc solid;
	border-top: 4px #20365b solid;
	-webkit-box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px 3px;
	-moz-box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px 3px;
	box-shadow: 0 1px 7px rgba(0,0,0,0.2);
}
#side .nav_box .side_nav li {
	border-bottom: 1px #e6e6e6 solid;
	position: relative;
}
#side .nav_box .side_nav li a {
  display: block;
  padding: 20px 40px 20px 12px;
  transition: all 0.5s;
  text-decoration: none;
}
#side .nav_box .side_nav li a:after {
	display			: block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f0a9';
	text-align		: left;
	text-decoration: none;
	position: absolute;
	top: 35%;
	right: 10px;
	color: #20365b;
}
#side .nav_box .side_nav li a:hover {
	background: #f7f7f7;
  text-decoration: none;
  color: #20365b;
}
/*ラベル*/
#side .nav_box .side_nav label {
    display: block;
    margin: 1.5px 0;
    padding: 20px 12px;
    color: #0081bc;
    cursor :pointer;
    transition: all 0.5s;
    font-size: 18px;
    position: relative;
}
/*アイコンを表示*/
#side .nav_box .side_nav label:after {
font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f0ab';
  position: absolute;
  color: #20365b;
  right: 10px;
}
/*ラベルホバー時*/
#side .nav_box .side_nav label:hover {
    background: #f7f7f7;
}
/*チェックは隠す*/
#side .nav_box .side_nav input {
    display: none;
}
/*中身を非表示にしておく*/
#side .nav_box .side_nav .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}
#side .nav_box .side_nav .accshow li a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f0a9';
  position: absolute;
  right: 10px;
  top: 35%;
}
/*クリックで中身表示*/
#side .nav_box .side_nav .cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #f7f7f7;
    opacity: 1;
}

/*------------------------------------------------------------------------------------------------------------------------
 下層ページ
------------------------------------------------------------------------------------------------------------------------*/
/* タイトル */
#kpage .kpage_tit {
  border-bottom: 1px #CCC solid;
  background: #fe8b18;
  background: linear-gradient(to right, rgb(255 84 79 / 100%) 0%, rgb(255 159 66 / 100%) 100%);
  border-top: 6px solid rgba(254, 139, 24, 0.5);
  background-clip: padding-box;
}
#kpage .kpage_tit .kpage_tit_in {
  width: 1000px;
  max-width: 94%;
  padding: 40px 0;
  margin: 0 auto;
  text-align: left;
}
#kpage .kpage_tit .kpage_tit_in h2 {
  line-height: 1em;
  color: #FFF;
  font-size: 1.8em;
  font-weight: bold;
  border-left: 1px solid #FFF;
  padding-left: 30px;
}
@media only screen and (max-width: 768px) {
  #kpage .kpage_tit {
    background: #009fe8;
    border-top: #8bdee1 6px solid;
  }
  #kpage .kpage_tit .kpage_tit_in {
    padding: 20px 0;
  }
  #kpage .kpage_tit .kpage_tit_in h2 {
    font-size: 2.7rem;
    line-height: 1.2;
  }
}


/* 見出し */
#kpage h3.h3std {
  font-size: 4rem;
  border-bottom: solid 3px #009fe8;
  position: relative;
  margin: 0 auto 50px;
  font-weight: bold;
}
#kpage h3.h3std:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #8bdee1;
  bottom: -3px;
  width: 10%;
}
@media only screen and (max-width: 768px) {
  #kpage h3.h3std {
    font-size: 2.7rem;
  }
}
#kpage h4.h4std {
  font-size: 3.5rem;
  margin: 0 0 40px;
  text-align: center;
  position: relative;
}
#kpage h4.h4std:before {
  position: absolute;
  content: "";
  bottom: -10px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #20365b;
  border-radius: 2px;
}
#kpage h5.h5std {
  padding: 8px 10px;
  background: #eaf4ff;
  border-left: solid 5px #009fe8;
  font-weight: bold;
  margin: 30px 0 10px;
}
#kpage h6.h6std {
  font-weight: bold;
  text-align: center;
  background: #eaf4ff;
  padding: 7px 30px;
  border-radius: 100px;
  display: inline-block;
  margin: 30px auto 10px;
}

/* コンテンツ */
#kpage .kpage_contents {
}
#kpage .txt_exa {
  color: #3264b2;
  font-weight: bold;
/*  
  background: linear-gradient(to right, rgb(255 84 79 / 80%) 0%, rgb(255 159 66 / 80%) 100%);
  background-repeat: no-repeat;
  background-position: left 90%;
  background-size: 100% 20%;*/
}
#kpage .txt_u {
  background: linear-gradient(to right, #ffe763 0%, #ffe763 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 30%;
  font-weight: bold;
}
#kpage .kpage_bg01 {
  background: #f4f9ff;
  padding: 50px 0 50px;
}
#kpage .kpage_bg02 {
  padding: 50px 0 50px;
}
#kpage .kaso_in {
  width: 1000px;
  max-width: 94%;
  margin: 0 auto 50px;
}
#kpage .kaso_in p {
  margin-bottom: 10px;
}
#kpage .kaso_in_img {
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #kpage .kaso_in_img {
    max-width: 100%;
  }
}
#kpage hr.hrstd {
  display: block;
  border-top: 2px dashed #494440;
  margin: 80px 0;
}


/* 数字付きリスト */
ol.numlist {
  counter-reset: number;
  list-style: none;
  margin: 0;
  padding: 0;
  
  border: 1px solid #eee;
  border-radius: 10px;
}
ol.numlist li {
  clear: both;
  position: relative;
  padding: 15px 15px 15px 85px;
  background: #FFF;
}
ol.numlist li:nth-child(odd) {
  background: #eee;
}
ol.numlist li:before {
  line-height: 0.8em;
  counter-increment: number;
  content: counter(number);
  color: #FFF;
  font-weight: bold;
  font-size: 1.5em;
  margin: 0 10px 10px 0;
  padding: 10px 15px 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  position: absolute;
  top: 15px;
  left: 15px;
  background: #20365b;
}
@media only screen and (max-width: 768px) {
  ol.numlist li {
    padding: 10px 10px 10px 50px;
  }
  ol.numlist li:before {
    padding: 5px 10px 10px;
    left: 5px;
  }
}

/* チェックリスト */
#kpage ul.lst_chk {
  width: 100%;
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  background: #fff;
  border-radius: 10px;
  margin: 20px auto 30px;
  padding: 10px 30px 20px;
}
#kpage ul.lst_chk li {
  background: url(../images/common/check01.webp) center left no-repeat;
  background-size: 22px;
  padding-left: 35px;
  padding-bottom: 3px;
  margin-top: 15px;
  border-bottom: 1px dashed #dedede;
}

/* 画像横 */
#kpage .imgflex {
  display: flex;
  justify-content: space-between;
}
#kpage .imgflex .fimg {
  width: 30%;
}
#kpage .imgflex .ftxt {
  width: 68%;
}
@media only screen and (max-width: 768px) {
  #kpage .imgflex {
    flex-wrap: wrap;
  }
  #kpage .imgflex .fimg {
    width: 100%;
    order: 1;
    padding-top: 20px;
  }
  #kpage .imgflex .ftxt {
    width: 100%;
    order: 2;
  }
}

/* テーブル */
#kpage table.tbl01 {
  margin: 0 auto 10px;
  border-collapse: collapse;
  width: 100%;
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  background: #fff;
  border-radius: 10px;
}
#kpage table.tbl01 th {
  padding: 10px;
  background: #cef8d6;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
  border-right: #d7d7d7 1px solid;
  border-bottom: 1px solid #ffffff;
}
#kpage table.tbl01 tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
#kpage table.tbl01 tr:first-child th:last-child {
  border-top-right-radius: 10px;
  border-right: none;
}
#kpage table.tbl01 tr:last-child th {
  border-bottom-left-radius: 10px;
}
#kpage table.tbl01 tr.coltitle th:first-child {
  border-top-left-radius: 10px;
}
#kpage table.tbl01 tr td {
  padding: 10px 10px 20px;
  border-left: #d7d7d7 1px solid;
}
#kpage table.tbl01 tr:not(:last-child) td{
  border-bottom: #d7d7d7 1px solid;
}







/*--------------------------------------------------------------------
　紹介動画ページ（一覧）
--------------------------------------------------------------------*/
#proflist {
  width: 100%;
}
#proflist .proflist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 50px;
}
#proflist .proflist .proflist_in {
  box-sizing: border-box;
  width: 33%;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 7px;
  text-align: center;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
#proflist .proflist .proflist_in p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin: 10px 0;
}
#proflist .proflist .proflist_in p span {
  font-size: .65em;
  font-weight: normal;
  display: block;
}
#proflist .proflist a {
  display: block;
  margin-top: 10px;
  padding: 8px 0;
  background: #20365b;
/*  border: #e27f4a 2px solid;*/
  color: #FFF;
  font-weight: bold;
  border-radius: 50px;
  
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#proflist .proflist a:hover {
  opacity: 0.7;
  filter: alpha(opacity=60);
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
}
#proflist i {
  margin-right: 5px;
}
@media only screen and (max-width: 768px) {
  #proflist .proflist .proflist_in {
    width: 49%;
  }
}
/*--------------------------------------------------------------------
　紹介動画ページ（個別）
--------------------------------------------------------------------*/
/* プロフィール（個別） */
#proflist .profbox {
  text-align: center;
  margin: 30px 20px;
  border-top: 4px solid #fe8b18;
  border-radius: 6px;
}
#proflist .profbox dl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background: #fffceb;
  text-align: left;
}
#proflist .profbox dt {
  padding-right: 30px;
}
#proflist .profbox dl dt img {
  border-radius: 100%;
}
#proflist .profbox iframe {
  margin: 30px 0;
}
#proflist .profbox table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
  text-align: left;
}
#proflist .profbox table th {
  display: block;
/*  width: 100%;*/
  padding: 10px;
  border: 1px solid #e5dbd3;
  background: #fffae3;
}
#proflist .profbox table td {
  display: block;
/*  width: 100%;*/
  padding: 20px 10px;
  border: 1px solid #e5dbd3;
  font-size: .9em;
}
#proflist .profbox a {
  display: block;
  margin: 20px 0 100px;
  padding: 8px 0;
  background: #20365b;
  color: #FFF;
  font-weight: bold;
  border-radius: 50px;
  text-align: center;
}





/*--------------------------------------------------------------------
 お客様の声
--------------------------------------------------------------------*/
#voice .voice_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#voice .voice_area .voice_box {
  border: 1px #CCC solid;
  box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px 3px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px 3px;
  -moz-box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px 3px;
  width: 49%;
  text-align: left;
  padding: 20px;
  margin-bottom: 30px;
}
#voice .voice_area .voice_box .voice_img {
  margin-bottom: 10px;
  width: 100%;
  position: relative;
  border: 1px #CCC solid;
  padding-bottom: 2px;
}
#voice .voice_area .voice_box .voice_img img {
  width: 100%;
  height: auto;
}
#voice .voice_area .voice_box .voice_img a .sc_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 180px;
  height: 65px;
  background: url(../images/voice/sc_icon_off.webp) 0 0 no-repeat;
}
#voice .voice_area .voice_box .voice_img a:hover .sc_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 180px;
  height: 65px;
  background: url(../images/voice/sc_icon_on.webp) 0 0 no-repeat;
}



/*--------------------------------------------------------------------
 サービスページ全般
--------------------------------------------------------------------*/
#kpage {
}
/* サービスのトップのリスト */
#kpage .kservice_fv {
  background: url(../images/service/kservice_fv.webp) no-repeat left top;
  background-size: cover;
  margin: 0 auto 80px;
  width: 1000px;
  max-width: 100%;
  height: 320px;
  padding: 0 20px;
  
  display: flex;
  align-items: center;
  justify-content: center;
}
#kpage .kservice_fv ul {
  text-align: left;
  display: inline-block;
  margin-top: 20px;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
#kpage .kservice_fv ul li {
  font-size: 24px;
  list-style: none;
}
#kpage .kservice_fv ul li span {
  border-bottom: 2px dashed #fe8b18;
}

/* こんなお悩みありませんか */
#kpage .onayami_box {
  position: relative;
  padding: 50px 5% 30px;
  background: #FFF;
  box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.1);
  width: 1000px;
  max-width: 94%;
  margin: 0 auto 50px;
}
#kpage .onayami_box h3 {
  position: absolute;
  font-weight: bold;
  line-height: 1;
  top: -0.5rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-size: 26px;
}
#kpage .onayami_box .onayami_box_bg {
  position: absolute;
  top: -25px;
  right: 20px;
  width: 45px;
}
#kpage .onayami_box ul li {
  background: url(../images/common/check01.webp) no-repeat left 5px;
  background-size: 28px;
  padding-left: 40px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  text-align: left;
  border-bottom: 1px solid #d7d7d7;
  list-style: none;
}
#kpage .onayami_box .onayami_box_img {
  position: absolute;
  bottom: 5px;
  right: 5px;
  margin: 0 auto;
  width: 180px;
  max-width: 50%;
  z-index: 20;
}
#kpage .msg {
  width: 1000px;
  max-width: 94%;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 768px) {
  #kpage .onayami_box .onayami_box_bg {
    top: auto;
    right: 20px;
    bottom: 0;
  }
}

/*--------------------------------------------------------------------
 生前対策
--------------------------------------------------------------------*/
#seizen_jirei .jirei_fuki {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#seizen_jirei .jirei_fuki .jirei_fuki_img {
  width: 60px;
}
#seizen_jirei .jirei_fuki .jirei_fuki_txt {
  display: inline-block;
  position: relative; 
  margin-left: 15px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #eaf4ff;
  flex-shrink: 999;
  line-height: 1.3;
  font-weight: bold;
}
#seizen_jirei .jirei_fuki .jirei_fuki_txt p {
  margin-bottom: 0;
}
#seizen_jirei .jirei_fuki .jirei_fuki_txt:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #eaf4ff;
}
#seizen_jirei dl.jirei_zoku {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#seizen_jirei dl.jirei_zoku dt {
  width: 10%;
  min-width: 6em;
  margin-bottom: 10px;
}
#seizen_jirei dl.jirei_zoku dd {
  line-height: 1.3;
  width: 85%;
  margin-bottom: 10px;
}
#seizen_merit .meritbox {
  counter-reset: number 0;
}
#seizen_merit .meritbox li {    
  margin-bottom: 15px;
  width: 100%;
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 20px;
}
#seizen_merit .meritbox li:before {
  position: absolute;
  content: "";
  display:inline-block;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  top: 20px;
  left: 20px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}
#seizen_merit .meritbox li .merit_icon {
  text-align: center;
  max-width: 70px;
  margin: 0 auto 20px;
}
#seizen_merit .meritbox li .merit_tit {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}




/*--------------------------------------------------------------------
 case
--------------------------------------------------------------------*/
#case .casearea {
  text-align: left;
  margin: 0 auto 30px;
}
#case .case_box01 {
  padding: 30px 40px;
  margin: 2em 0;
  border: solid 3px #8bdee1;
  border-radius: 10px;
  list-style: none;
}
#case .case_box01 li {
  border-bottom: 1px dotted #8bdee1;
  margin-bottom: 15px;
}
#case .case_box01 li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #13aef5;
  border-radius: 50%;
  position: relative;
  top: -1px;
  margin-right: 5px;
}
#case 




