/**/@charset "utf-8";
/* CSS Document */
/*--------------------------------------------------

  共通設定

--------------------------------------------------*/
body {
  /*標準の文章の設定など*/
  color: #32322d; 
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 1.75;
  font-feature-settings: "palt" 1;
}

/*border-box(paddingとborderをwidthに含める設定)*/
* {
  box-sizing: border-box;
}

ul {
	margin: 0;
	padding: 0;
}

li {
  list-style-type: none;
}

p {
	padding: 0;
	margin: 0;
}
@media only screen and (max-width: 768px) {
	p {
		font-size: 14px;
	}
}

h2,h3,h4,h5 {margin: 0;}

/*imgにmax-width: 100%;(はみ出し防止)*/
img {
	display: block;
	max-width: 100%;
	vertical-align: bottom;
}
@media screen and (max-width: 768px) {
	img {
		width: 100%;
	}
}
body a {
    transition: 1s;
}

body a:hover {
    opacity: 0.6;
}

.sp_only,.tb_only {
	display: none;
}
@media (max-width: 1080px) {
	.tb_only {
		display: block;
	}
}
@media (max-width: 768px) {
	.sp_only {
		display: block;
	}
	
	.pc_only {
		display: none;
	}
}

/*スムーススクロール*/
html {
    scroll-behavior: smooth;
	scroll-padding-top: 10px;
}
@media (max-width: 1024px) {
		html {
		scroll-padding-top: -500px;
	}
}

/*他ページからのページ内リンクの調整 必要あれば*/
html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 150px;/*headerの高さ*/
}
@media screen and (max-width: 780px) {
	:target {
	  scroll-margin-top: 100px;/*headerの高さ*/
	}	
}

/*ディスプレイごとの表示・非表示*/
.sp_only {
	display: none;
}
@media screen and (max-width: 780px) {
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
}

/*メニュー展開時に背景をスクロールさせないため*/
body.active {
  height: 100%;
  overflow: hidden;
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3C6482;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transition: 1s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #page-top button {
    width: 50px;
    height: 50px;
  }
}

#page-top button:hover {
	opacity: 0.6;
}

.Arrow-Top {
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  margin-top: 8px;
  transition: 1s;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
  margin: 0;
}
@media only screen and (max-width: 1024px) {
	#page-top {
	  bottom: 100px;
	}
}
@media only screen and (max-width: 767px) {
	#page-top {
	  bottom: 70px;
	}
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*--------------------------------------------------

  header

--------------------------------------------------*/

.header .menu_toggle .nav_wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

button, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: 0 0;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: 0;
}

.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    /*padding: 33px 0 0;
    height: 160px;*/
    -webkit-transition: .2s;
    transition: .2s;
	background: #fff;
}
@media (max-width: 1024px){
	.header {
		/*padding: 20px 0;*/
		height: 52px;
		background: unset;
	}
}

.header .header_inner {
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*max-width: 1262px;
	padding: 0 21px 0 19px;*/
    margin: 0 auto;
}
@media (max-width: 1024px){
	.header .header_inner {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 0;
		position: relative;
	}
}


.header .header_inner h1{
    font-size: 36px;
	margin: 0;
}
@media only screen and (max-width: 1359px) {
	/*.header .header_inner h1{
		width: 8%;
	}*/
}
@media (max-width: 1024px){
	.header .header_inner h1{
		font-size: 16px;
		z-index: 105;
		margin-top: 9px;
		width: unset;
		padding-left: 20px;
	}
}
@-moz-document url-prefix(){
    @media only screen and (max-width: 1359px) {
	  .header .header_inner h1 {
		max-width: 15%;
		width: 100%;
	  }
	}
}

.header .header_inner h1 a{
	color: #3C6482;
    text-decoration: none;
	display: flex;
	align-items: flex-start;
    gap: 12px;
	letter-spacing: -0.00105em;
}

@media only screen and (max-width: 1024px) {
.header .header_inner h1 a{

		font-size: 18px;
	}
}

.logo_link {
    display: flex;
    justify-content: space-between;
	align-items: center;
	padding: 10px 40px 13.5px;
}
.logo_link .menu_btm {
    display: flex;
    gap: 20px;
}
@media only screen and (max-width: 1024px) {
	.logo_link {
    display: flex;
    justify-content: space-between;
	padding: 0;
	
}
	
	.logo_link .menu_btm.pc_only {
		display: none;
	}
	
	.menu_btm.sp_only {
		position: fixed;
    	bottom: 0;
		left:0;
		display: flex;
		gap: 0;
		width: 100%;
		z-index: 103;
	}
	
	.menu_btm.sp_only li{
		flex-basis: 50%;
	}
}

/* 20250124 add START */
.logo_link .menu_btm a.btm {
    max-width: 192px!important;
}
.menu_btm a.btm::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("../img/icon_link-out.svg")no-repeat;
    background-size: contain;
}
@media only screen and (min-width: 1025px) {
    .site_nav .contact_sp { display: none; }
}
@media only screen and (max-width: 1024px) {
    .menu_btm a.btm {
        position: relative;
        font-size: clamp(16px, 7.176px + 1.838vw, 26px)!important;
    }
    .menu_btm a.btm img {
        width: clamp(18px, 3.000px + 3.125vw, 35px);
        max-width: 100%!important;
        height: auto!important;
    }
    .menu_btm a.btm::after {
        position: absolute;
        right: 2.5vw;
        top: 3vw;
        width: clamp(10px, 2.5vw, 15px);
        height: clamp(10px, 2.5vw, 15px);
    }
    /* SPメニュー内ボタン */
    .site_nav .contact_sp {
        margin-top: 8vh;
    }
    .site_nav .contact_sp .btm {
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: normal;
        color: #fff;
        border-radius: 5px!important;
    }
    .site_nav .contact_sp .btm img {
        width: 20px;
        max-width: 100%;
        height: auto;
    }
    .site_nav .contact_sp .btm::after {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        background: url("../img/icon_link-out.svg")no-repeat;
        background-size: contain;
    }
}
/* 20250124 add END */

.logo_txt {
	font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
	letter-spacing: -0.00105em;
	display: inherit;
}
@media only screen and (max-width: 1024px) {
	.logo_txt {
		font-size: 13px;
		padding-top: 5px;
	}
}

.header.is-open .menu {
    opacity: 1;
    pointer-events: all;
	padding-left: 20px;
    padding-right: 20px;
}


.header .menu {
    display: flex;
    align-items: center;
	justify-content: center;
	gap: 32px;
	padding: 10px 0;
	border-top: 2px solid #63839B;
}
@media only screen and (max-width: 1024px) {
	.header .menu {
		border-top: unset;
	}
}
@media (max-width: 1024px){
.header .menu {
    pointer-events: none;
    position: fixed;
    opacity: 0;
    top: 0;
    right: 0;
    width: 100%;
	min-height: 100vh;
    padding: 123px 0 0;
    overflow-y: auto;
    background-color: #fff;
    z-index: 102;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
   /* flex-direction: column;*/
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
	height: 100%;
  	overflow: auto;
	gap: 40px;
}
	
	.header .menu .site_nav {
		margin: 0 auto;
		width: 100%;
	}
}

.header .menu_toggle .nav_wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.header .menu_toggle .nav_wrap span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #32322d;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.header .menu_toggle .nav_wrap span:nth-child(1) {
    top: 0;
}

.header .menu_toggle.toggle-open>.nav_wrap>span:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
}


.header .menu_toggle .nav_wrap span:nth-child(2) {
    top: calc(50% - 1px);
}

.header .menu_toggle.toggle-open>.nav_wrap>span:nth-child(2) {
    height: 0;
    width: 0;
}

.header .menu_toggle .nav_wrap span:nth-child(3) {
    bottom: -1px;
}

.header .menu_toggle.toggle-open>.nav_wrap>span:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    top: 50%;
}


.header .menu .site_nav {
    -webkit-transition: .2s;
    transition: .2s;
}

.header .menu .site_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*gap: 38px;*/
	list-style: none;
    margin: 0;
    padding: 0;
}
@media only screen and (max-width: 1359px) {
	.header .menu .site_nav ul {
		gap: 13px
	}
}
@media (max-width: 1024px){
	.header .menu .site_nav ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		/*margin-bottom: 88px;*/
		gap: 0;
	}
	
	.header .menu .site_nav ul li {
		width: 100%;
		border-bottom: 1px solid #e2e2e2;
	}
	
	.header .menu .site_nav ul li:first-of-type {
		border-top: 1px solid #e2e2e2;
	}
}

.header .menu .site_nav ul li a {
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.0005em;
	color: #282d3c;
	display: flex;
	padding: 0 30px;
	border-right: 1px solid #d6d6d5;
}

@media (max-width: 1024px){
	.header .menu .site_nav ul li a {
		font-size: 17px;
		margin-left: 2px;
		justify-content: space-between;
    	padding: 17px 12px;
		border-right: unset;
	}
}

.header .menu .site_nav ul li:first-of-type a{
	padding: 10px 23px 10px 30px;
}
@media only screen and (max-width: 1024px) {
	.header .menu .site_nav ul li:first-of-type a{
		padding: 17px 12px;
	}
}

.header .menu .site_nav ul li:last-of-type a {
	border-right: unset;
}

.header .menu .site_nav ul li a span {
	color: #63839B;
}
@media (max-width: 1024px){
	.header .menu .site_nav ul li a span {
		font-size: 14px;
	}
}

span.btm_arrow {
    font-weight: 500;
    font-size: 18px;
    transform: translateY(1px) scaleX(0.55) scaleY(0.55);
}

.header .menu .site_nav ul li.button a {
    width: 100%;
    max-width: 280px;
    text-align: center;
    background-color: #3FB5A4;
    border-radius: 2em;
    padding: 13px 32px 17px;
    margin: 0;
    font-size: 17px;
    line-height: 1;
}

.header .menu .site_nav ul li a img {
	width: 216px;
	max-width: 100%;
}

@media (max-width: 1024px){
.header .mask {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 101;
    pointer-events: none;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
}}

.header .menu_toggle {
    display: none;
    width: 57px;
    height: 52px;
    z-index: 103;
    padding: 0;
	position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 1024px){
	.header .menu_toggle {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		/*margin-right: 20px;*/
		background: #fff;
    	padding: 15px;
		border-radius: 0 0 0 5px;
	}	
}

/*スクロール後に背景色入れる*/
.header.is-fixed {
	/*background-color: #000;
	opacity: .9;*/
	transition: 0.3s;
}

.header.is-fixed .header_inner h1 a {
/*	color: #39424C;
	transition: 0.3s;*/
}

.menu_contact {
	display: none;
}
@media (max-width: 1024px){
	.menu_contact {
		display: block;
		width: 320px;
		margin: 0 auto;
		padding-top: 65px;
		border-top: 1px solid #fff;
	}
}

/*スクロール後*/
@media only screen and (max-width: 1024px) {
	.header.is-fixed {
		background-color: #fff;
		opacity: .9;
		transition: 0.3s;
		padding: 0 0 5px;
    	height: auto;
	}
	
	.header.is-fixed .menu_toggle {
		margin-top: 5px;
	}
}







/*--------------------------------------------------

  mv

--------------------------------------------------*/
.mv {
  height: 650px; 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/mv.jpg");
  margin-top: 160px;/*headerの高さ*/
  position: relative;
}
@media only screen and (max-width: 1024px) {
	.mv {
	  height: 80vh; /* 全画面表示 */
	  background-image: url("../img/mv_sp.jpg");
	  margin-top: 0;/*headerの高さ*/
	}
}

.mv_inner {
    margin: 0 50px;
	padding-top: 55px; /* 20250305 add */
	padding-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
	.mv_inner {
		padding-top: 80px;
		margin: 0 20px;
	}
	
	.mv_inner h2 img {
		/*width: 90%;*/
		margin: 0 auto;
	}
}

.mv_inner h2 img {
    max-width: 100%; /* 20250305 add */
}

.mv_inner2 {
    position: absolute;
    bottom: 0;
	width: 100%;
	/*margin-top: 30px;*/
}

.mv_inner2 img {
	width: 100%;
}

.menu_tel a {
	color: #0087d5;
	text-decoration: none;
	line-height: 1;
}
@media only screen and (max-width: 1024px) {
	
	.menu_tel a {
		padding: 15px 0;
    	background: #fff;
		display: flex;
		justify-content: center;
	}
	
	.menu_tel a img {
		width: 65%;
	}
}
@media only screen and (max-width: 768px) {
	.menu_tel a img {
		width: 80%;
	}
}

/*.menu_tel_no {
	font-size: 28px;
	font-weight: bold;
	display: flex;
    align-items: center;
	justify-content: center;
    gap: 9px;
	letter-spacing: 0;
}
@media only screen and (max-width: 1359px) {
	.menu_tel_no {
		font-size: 22px;
	}
	
	.menu_tel_no img {
		max-width: 16px;
	}
}
@media only screen and (max-width: 1024px) {
	.menu_tel_no img {
		width: 19px;
	}
}

.menu_tel_time {
	display: block;
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	margin-top: 8px;
	margin-left: 2em;
	letter-spacing: -0.025em;
}*/

.btm {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	font-weight: 400;
	padding: 10px 20px;
	max-width: 160px;
	display: flex;
	align-items: center;
    gap: 10px;
	background: #cd1e28;
	text-decoration: none;
	color: #fff;
	border-radius: 5px;
	letter-spacing: 0.0005em;
}
@media only screen and (max-width: 1024px) {
	.btm {
		font-size: 25px;
		max-width: 100%;
		width: 100%;
		height: 100%;
		border-radius: 0;
		justify-content: center;
	}
}
@media only screen and (max-width: 768px) {
	.btm {
		font-size: 18px;
	}
}

.btm img {
    max-width: 20px;
    display: unset;
    vertical-align: unset;
}
@media only screen and (max-width: 1359px) {
	.btm img {
		max-width: 20px;
	}	
}
@media only screen and (max-width: 1024px) {
	.btm img {
		max-width: 20px;
	}	
}


/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name: fadeUpAnime;/*アニメーションの定義名*/
animation-duration:1s;/*アニメーション変化時間 ※デフォルト*/
animation-fill-mode:forwards;/*アニメーションの開始と終了時の状態を指定*/
opacity:0;
}


/*==================================================
アニメーション設定
===================================*/

/* アニメーション１回分の時間の長さを指定するCSS*/
.change-time1{
  animation-duration: 1s;
}


/*--------------------------------------------------

  共通項目

--------------------------------------------------*/
.mc {
	max-width: 1060px;
	margin: 0 auto;
}
@media only screen and (max-width: 1059px) {
.mc {
		max-width: 90%;
	}
}



/*--------------------------------------------------

  墓じまいとは

--------------------------------------------------*/
 .hakajimai_intro {
    display: flex;
    flex-direction: column;
    align-items: center;
	padding: 55px 0 100px;
}
@media only screen and (max-width: 768px) {
	.hakajimai_intro {
		padding: 55px 0 60px;
	}
}


.hakajimai_intro span.fsz_s {
	font-size: 15px;
	color: #989896;
	display: block;
}
@media only screen and (max-width: 768px) {
.hakajimai_intro span.fsz_s {
		font-size: 13px;
	}
}

.hakajimai_intro span.txt1 {
	font-size: 20px;
	padding-left: 2em;
}
@media only screen and (max-width: 768px) {
	.hakajimai_intro span.txt1 {
		font-size: 16px;
		padding-left: 0em;
	}
}

.hakajimai_intro p.txt2 {
	font-size: 28px; /* 20241224 add */
	font-weight: 600;
	color: #3C6482;
	letter-spacing: 0.0075em;
	margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
.hakajimai_intro p.txt2 {
	font-size: 20px;
	}
}
@media only screen and (max-width: 768px) {
.hakajimai_intro p.txt2 {
		font-size: 16px;
    	line-height: 1.5;
	}
}

.hakajimai_intro p.txt2 span {
    position: relative;
    padding: 0 27px 0 30px;
}
@media only screen and (max-width: 768px) {
	.hakajimai_intro p.txt2 span  {
		text-align: center;
		display: block;
	}
}

.hakajimai_intro p.txt2 span::before {
    content: url(../img/hakajimai_txt2_left.svg);
    vertical-align: middle;
    position: absolute;
	top: 6px;
    left: 0;
}
@media only screen and (max-width: 768px) {
	.hakajimai_intro p.txt2 span::before {
		content: "";
		display: inline-block;
		background: url(../img/hakajimai_txt2_left.svg);
		background-size: cover;
		width: 50px;
		height: 60px;
		position: absolute;
		left: -10px;
	}
}

.hakajimai_intro p.txt2 span::after {
    content: url("../img/hakajimai_txt2_right.svg");
    vertical-align: middle;
    position: absolute;
	top: 6px;
    right: 0;
}
@media only screen and (max-width: 768px) {
	.hakajimai_intro p.txt2 span::after {
		content: "";
		display: inline-block;
		background: url(../img/hakajimai_txt2_right.svg);
		background-size: cover;
		width: 50px;
		height: 60px;
		position: absolute;
		right: -10px;
	}
}

.hakajimai_intro p.txt3 {
	font-size: 28px; /* 20241224 add */
	font-weight: 600;
	letter-spacing: 0.0075em;
}
@media only screen and (max-width: 768px) {
.hakajimai_intro p.txt3 {
		font-size: 18px;
	}
}

.hakajimai_intro p.txt3 span {
	color: #cd1e28;
	font-size: 1.3em;
}

.under-line {
    text-decoration-line: underline;
    text-decoration-color: #fae8e9;
    text-decoration-thickness: 0.3em;
    text-underline-offset: -0.1em;
    text-decoration-skip-ink: none;
}


 /* トーアのお墓じまいは必要なものを全て含みます
--------------------------------------------------*/


.hitsuyou h3 {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 19px;
	font-weight: bold;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 768px) {
	.hitsuyou h3 {
		font-size: 16px;
		text-align: center;
	}
}

.hitsuyou h3 span {
	background: #dc6168;
	border-radius: 5px;
	padding: 15px 63px;
	line-height: 1;
}
@media only screen and (max-width: 768px) {
.hitsuyou h3 span {
		padding: 10px 25px;
		line-height: 1.5;
	}
}

.hitsuyou h3:before,
.hitsuyou h3:after {
  content: "";
  width: auto;
  height: 2px;
  background: #dc6168;
  flex-grow: 1;
}


.hitsuyou_contents {
	background: #f3f3f2;
	margin-top: -23px;
	padding: 70px 0 55px;
}
@media only screen and (max-width: 768px) {
	.hitsuyou_contents {
		margin-top: -33px;
	}
}

.hitsuyou ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
@media only screen and (max-width: 1060px) {
	.hitsuyou ul {
		justify-content: center;
		gap: 40px;
	}
	
	.hitsuyou ul li {
		width: calc((100% - 40px) / 4);
		display: flex;
    	flex-direction: column;
	}
}
@media only screen and (max-width: 768px) {
.hitsuyou ul li {
		width: calc((100% - 40px) / 2);
	}
}

.hitsuyou ul li p {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-align: center;
	margin-top: 20px;
}
@media only screen and (max-width: 768px) {
.hitsuyou ul li p {
	font-size: 14px;
	margin-top: 10px;
}
}


 /* 今、無縁墓が増えています！
--------------------------------------------------*/
.muenbaka {
	background: url("../img/back_hakajimai.jpg") center/cover;
    padding: 70px 0 85px;
}
@media only screen and (max-width: 768px) {
	.muenbaka {
		padding: 70px 0 40px;
	}
}

.muenbaka h3 {
	font-size: 45px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.muenbaka h3 {
		font-size: 25px;
	}
}

/* 文字の上に点 */
.muenbaka .dots {
	background-image: radial-gradient(circle at center, #b7b7b5 15%, transparent 15%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .2em; /* 縦方向の位置調整 */
}

.green {
	color: #3C6482;
}

.muenbaka_arrow {
	max-width: 850px;
	position: relative;
	margin: 0 auto;
}

.muenbaka_intro_exc {
	position: absolute;
	top: -7%;
    left: 3%;
}
@media only screen and (max-width: 1024px) {
	.muenbaka_intro_exc {
		top: -11%;
	}
}
@media only screen and (max-width: 768px) {
	.muenbaka_intro_exc {
		width: 18%;
		top: -7%;
		left: 13%;
	}
}

.muenbaka_intro {
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,0.8) 90%);
	max-width: 850px;
	position: relative;
	padding: 73px 0 45px;
	margin: 0 auto;
	border-radius: 5px;
}
@media only screen and (max-width: 1024px) {
	.muenbaka_intro {
		width: 80%;
		padding: 48px 20px 35px;
	}
}

.muenbaka_intro::after {
	content: "";
    display: inline-block;
	width: 850px;
	height: 70px;
	background-color: #ffffff;
	clip-path: polygon(50% 70px, 0% 0%, 850px 0%);
	position: absolute;
	
	/*三角の高さが変わっても下にあるように*/
	bottom: 1px;
	transform: translateY(100%);
}
@media only screen and (max-width: 1024px) {
	.muenbaka_intro::after {
		width: 100%;
		clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
		height: 50px;
		bottom: 2px;
		left: 0;
		transform: translateY(100%);
	}
}

.muenbaka_intro p {
	text-align: center;
}

.muenbaka_intro p.txt1 {
	font-size: 19px; /* 20241224 add */
	line-height: 1.8em; /* 20241224 add */
	margin-top: 20px;
	font-weight: 400;
}
@media only screen and (max-width: 768px) {
	.muenbaka_intro p.txt1 {
		font-size: 14px;
		-ms-text-align-last: left;
		text-align-last: left;
		text-align: justify;
	}
}

.muenbaka_intro p.txt2 {
	font-size: 23px;
	font-weight: 600;
	margin-top: 30px;
	letter-spacing: -0.00139em;
}
@media only screen and (max-width: 1024px) {
	.muenbaka_intro p.txt2 {
		font-size: 16px;
		line-height: 2.5;
	}
}

.dots2 {
	background-image: radial-gradient(circle at center, #3C6482 15%, transparent 15%); /* 点の色とサイズ調整 */
	background-position: bottom right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 0.3em 0.6em; /* 点の間隔とサイズ調整 */
	padding-bottom: .7em; /* 縦方向の位置調整 */
}

.osusume {
	padding-top: 84px;
}

.osusume h4 {
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0.084em;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.osusume h4 {
		font-size: 18px;
		color: #fff;
	}
}


.osusume .fsz_b {
	font-size: 1.3em;
	font-weight: bold;
	letter-spacing: 0.00125em;
}



.osusume_contents {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
	margin-top: 25px;
}
@media screen and (max-width: 768px) {
	.osusume_contents {
		flex-direction: column;
		gap: 90px;
	}
}

.osusume_contents li img {
	width: 100%;
}


.osusume_contents_txt {
	font-size: 18px; /* 20241224 add */
	line-height: 1.5;
	margin-top: 15px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.osusume_contents_txt {
		font-size: 14px;
		margin-top: 5px;
		margin-bottom: 20px;
	}
}


.kaiketsu {
	position: relative;
}

.kaiketsu::after {
    content: url("../img/img_kaiketsu.svg");
    vertical-align: middle;
    position: absolute;
    top: 17%;
    left: 80%;
	z-index: 1;
}
@media only screen and (max-width: 768px) {
	.kaiketsu::after {
		content: url("../img/img_kaiketsu_sp.svg");
		left: 50%;
		top: 120%;
		transform: translate(-50%,-50%);
	}
}
@media only screen and (max-width: 500px) {
	.kaiketsu::after {
		left: 50%;
		top: 125%;
	}
}


.support {
	position: relative;
	margin-top: -80px;
	margin-bottom: 140px;
}
@media only screen and (max-width: 1060px) {
	.support {
		margin-top: 40px;
	}
}

.support_contents {
    max-width: 100%;
    display: flex;
    justify-content: center;
	align-items: flex-end;
    gap: 40px;
}
@media screen and (max-width: 1060px) {
	.support_contents {
		flex-direction: column-reverse;
		align-items: center;
		gap: 20px;
	}
}

.support_contents_img {
	
}
@media screen and (max-width: 768px) {
	.support_contents_img {
		width: 100%;
	}
}

.support_contents_txt {
	font-size: 18px;
	font-weight: 400;
	line-height: 2.1;
	margin-bottom: 50px;
	margin-right: 40px;
}
@media only screen and (max-width: 1060px) {
	.support_contents_txt {
		font-size: 18px;
		font-weight: 400;
		line-height: 2.1;
		margin-bottom: 0;
		margin-right: 0;
	}
}
@media screen and (max-width: 768px) {
	.support_contents_txt {
		font-size: 14px;
		text-align: center;
		margin-top: 0;
	}
}

.support_contents_txt .fsz_b {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.0078em
}
@media only screen and (max-width: 768px) {
	.support_contents_txt .fsz_b {
		font-size: 20px;
	}
}


.support_catch {
	width: 100%;
	background: #326ea0;
	color: #fff;
	font-size: 29px;
	font-weight: 600;
	text-align: center;
	padding: 20px 0;
	position: absolute;
	bottom: -70px;
	border-radius: 5px;
	letter-spacing: 0.0024em;
}
@media only screen and (max-width: 768px) {
	.support_catch {
		font-size: 20px;
   		padding: 20px 10px;
	}
}


/*--------------------------------------------------

  トーアが選ばれる理由

--------------------------------------------------*/
.riyuu {
	padding: 45px 0 45px;
}

.border_green {
	border-top: 2px solid #3C6482;
}

.title_s {
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.0125em;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.title_s {
		font-size: 20px;
	}
}

.riyuu_txt {
	font-size: 20px; /* 20241224 add */
	font-weight: 500;
	line-height: 1.75;
	margin-top: 25px;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.riyuu_txt {
		font-size: 15px;
		text-align: left;
		margin-top: 25px;
	}
}

.riyuu h4 {
	margin-top: 20px;
	font-size: 48px;
	font-weight: bold;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.riyuu h4 {
    	margin-top: 30px;
		font-size: 22px;
	}
}

.pink {
	color: #dc6168;
}

.pink img {
    display: inline-block;
	margin-bottom: 1%;
}
@media only screen and (max-width: 1024px) {
	.pink img {
		width: 4%;
		margin-bottom: 2%;
	}
}
@media only screen and (max-width: 768px) {
	.pink img {
		width: 5%;
		margin-bottom: 2%;
	}
}

.ita {
	font-family: 'Libre Baskerville', serif;
	font-weight: 400;
	font-size: 60px;
}
@media only screen and (max-width: 768px) {
	.ita {
		font-size: 38px;
	}
}

ul.riyuu_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 50px;
	max-width: 1150px;
	margin: 55px auto 0;
}
@media only screen and (max-width: 1150px) {
	ul.riyuu_list {
		gap: 50px;
		margin: 35px auto 0;
	}
	
	ul.riyuu_list li {
		width: calc(50% - 50px);
	}
}
@media only screen and (max-width: 768px) {
	ul.riyuu_list {
		gap: 40px;
	}
	
	ul.riyuu_list li {
		width: 75%;
	}
}

.mt_minus {
	margin-top: -10px;
}
@media only screen and (max-width: 1150px) {
	.mt_minus {
		margin-top: 0;
	}
}

/*--------------------------------------------------

  料金プラン

--------------------------------------------------*/
.plan {
	margin-bottom: 83px;
}


.plan h3 {
    margin-top: 50px;
}

.plan_txt {
	text-align: center;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0.034em;
	margin-top: 30px;
}
@media only screen and (max-width: 768px) {
	.plan_txt {
		font-size: 20px;
	}
}

.plan_txt .fsz_b {
	font-size: 1.3em;
	letter-spacing: 0.0119em;
}

.plan_txt span.back_green {
	color: #fff;
	font-size: 37px;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-right: 20px;
}
@media only screen and (max-width: 768px) {
.plan_txt span.back_green {
		color: #fff;
		font-size: 25px;
		margin-right: 0;
		margin-top: 20px;;
		display: inline-block;
	}
}

.back_green {
	background: #3C6482;
	padding: 0 10px 5px;
	border-radius: 5px;
}



.plan_contents h5 {
	font-size: 20px;
	font-weight: bold;
	padding: 5px 20px;
	border-radius: 5px;
}

.back_yellow {
	background: rgba(210,150,0,0.15);
	color: #d29600;
}

.back_purple {
	background: rgba(137,75,145,0.15);
	color: #894b91;
}

.back_blue {
	background: rgba(30,80,110,0.15);
	color: #1e506e;
}


.plan_contents {
	max-width: 1060px;
	display: flex;
	flex-wrap: wrap;
	margin: 55px auto 0;
	justify-content: space-between;
	gap: 35px;
}
@media only screen and (max-width: 1060px) {
	.plan_contents {
		justify-content: center;

	}
}

/*768px以上は4カラム、以下は１カラム*/
@media only screen and (min-width: 768px) {	
	.plan_contents li {
		width: calc((100% - 30px) / 2);
	}
}
/*922px以上は4カラム*/
@media only screen and (min-width: 922px) {
	.plan_contents li {
		/*width: calc((100% - 60px) / 4);*/
	}
}

.plan_contents li {
	border: 2px solid #eaeaea;
	border-radius: 5px;
	padding: 8px;
	flex-basis: 505px;
}
@media only screen and (max-width: 768px) {
	.plan_contents li {
		flex-basis: 100%;
	}
}

.plan_contents li:first-of-type {
    flex-basis: 100%;
}
@media only screen and (max-width: 1060px) {
	.plan_contents li:first-of-type {
		margin: unset;
		flex-basis: 505px;
	}
}
@media only screen and (max-width: 768px) {
	.plan_contents li:first-of-type {
		flex-basis: 100%;
	}
}

.plan_contents li img {
	width: 100%;
}


.plan_contents li div.plan_contents_box {
    display: flex;
    gap: 24px;
	margin-top: 10px;
}
@media only screen and (max-width: 1060px) {
	.plan_contents li div.plan_contents_box {
		flex-direction: column;
		gap: 10px;
	}
}

.plan_contents_box_img {
    display: flex;
    gap: 10px;
    max-width: 100%;
    width: 785px;
}
@media only screen and (max-width: 1060px) {
	.plan_contents_box_img {
		width: 100%;
		flex-direction: column;
	}
}

.plan_contents li .plan_contents_box_img div {
	position: relative;
}

.plan_contents li .plan_contents_box_img div::after {
    content: url("../img/plan_arrow.svg");
    vertical-align: middle;
    position: absolute;
    top: 60%;
    left: 76%;
    z-index: 1;
    transform: translateY(-60%);
}
@media only screen and (max-width: 1060px) {
	.plan_contents li .plan_contents_box_img div::after {
		left: 50%;
		top: auto;
		transform : translateX(-50%)
            		translateY(-10px)
            		rotate(90deg);
	}
}

.plan_contents li .plan_contents_box_img div:last-of-type::after {
	display: none;
}

.plan_contents li .plan_contents_box_img div img {
	width: unset;
	max-width: unset;
	position: relative;
}
@media only screen and (max-width: 1060px) {
	.plan_contents li .plan_contents_box_img div img {
		width: 100%;
	}
}


.plan_contents li:first-of-type div .plan_contents_box2 {
	width: calc(100% - 785px);
}
@media only screen and (max-width: 1060px) {
	.plan_contents li:first-of-type div .plan_contents_box2 {
		width: 100%;
	}
}

.plan_contents_box2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan_contents_txt {
	font-size: 16px; /* 20241224 add */
	line-height: 1.55;
	margin-top: 10px;
	letter-spacing: 0;
  text-align: justify; /* 20241224 add */
  word-break: break-all; /* 20241224 add */
  padding-right: 1em; /* 20241224 add */
}
@media screen and (max-width: 768px) {
	.plan_contents_txt {
		font-size: 14px;
		margin-top: 5px;
	}
}

.plan_contents_money {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 52px;
	font-weight: 500;
	letter-spacing: -0.025em;
	color: #d9565e;
	line-height: 1;
}
@media only screen and (max-width: 768px) {
	.plan_contents_money {
		margin-top: 10px;
	}
}

.yen {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 24px;
	font-weight: bold;
	margin: 0 3px;
}

.tate {
	writing-mode: vertical-rl;
}

.kara {
    transform: rotate( -270deg ) scaleX(-1) translate(-2px, -1px);
    display: inline-block;
}

.etc {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
}

.tehai {
	color: #fff;
    background: #894b91;
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    letter-spacing: 0.084em;
    margin-top: 10px;
    display: inline-block;
}


/*--------------------------------------------------

  創業46年、お墓の専門店にご相談ください。

--------------------------------------------------*/

.soudan {
    background: url(../img/back_soudan.jpg) center/cover;
    padding: 70px 0 85px;
}

.soudan h3 {
	font-size: 40px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: #fff;
}
@media only screen and (max-width: 1024px) {
	.soudan h3 {
		font-size: 24px;
	}
}
@media only screen and (max-width: 768px) {
	.soudan h3 {
		line-height: 1.5;
	}
}

.soudan p.soudan_txt {
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: #fff;
	margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
	.soudan p.soudan_txt {
		font-size: 20px;
	}
}
@media only screen and (max-width: 768px) {
	.soudan p.soudan_txt {
		line-height: 1.5;
	}
}

.txt_shadow {
    text-shadow: 0 0 15px rgb(0, 0, 0, 0.5);
}

ul.soudan_list {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 50px;
}
@media only screen and (max-width: 880px) {
	ul.soudan_list {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
}

.soudan_list li {
	background: #fff;
	border: 1px solid #3C6482;
	border-radius: 50%;
	/*flex-basis: 260px;*//* 20241224 del */
	width: 300px; /* 20241224 add */
	height: 300px; /* 20241224 add */
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.soudan_list li h4 {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.15;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.soudan_list li h4 {
		font-size: 22px;
	}
}

.soudan_list li p {
	font-size: 17px; /* 20241224 add */
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	color: #32322d;
	margin-top: 20px;
}

.soudan_list li p.mt30 {
	margin-top: 30px;
}

/*--------------------------------------------------

  お墓じまいはお墓の専門店にお任せください。

--------------------------------------------------*/
.bnr {
    display: flex;
    justify-content: center;
	padding: 49px 0;
}
@media only screen and (max-width: 768px) {
	.bnr {
		padding: 44px 0;
	}
}

.bnr div {
	position: relative;
}

.bnr div a {
    width: 43%;
    max-width: 100%;
    height: 14%;
    display: block;
    position: absolute;
    bottom: 11%;
    left: 51%;
    border-radius: 8px;
}
@media only screen and (max-width: 768px) {
	.bnr div a {
		width: 84%;
		max-width: 100%;
		bottom: 7%;
		left: 8%;
		border-radius: 5px;
	}
}

.bnr div a:hover {
	background: #fff;
}

.bnr div a span {
	/* ↓aタグ内のテキスト消すために必要 */
    opacity: 0;
}

/* 2025.9.8 add st */
.bnr2 {
	display: flex;
	justify-content: center;
	padding-bottom: 49px;
}
@media only screen and (max-width: 768px) {
	.bnr2 {
		padding-bottom: 44px;
	}
}
.bnr2 div {
	position: relative;
}
.subsidy_txt {
	text-align: center;
	font-size: 18px;
	line-height: 1.4;
}
@media only screen and (max-width: 1160px) {
	.subsidy_txt {
		line-height: 1.75;
	}
}
@media only screen and (max-width: 768px) {
	.subsidy_txt {
		font-size: 15px;
	}
}
/* 2025.9.8 add ed */

/*--------------------------------------------------

  墓じまいの流れ

--------------------------------------------------*/
.nagare h3 {
	margin-top: 50px;
}

.flow {
	display: flex;
    flex-direction: column;
    align-items: center;
	margin-top: 45px;
}
@media only screen and (max-width: 768px) {
	.flow {
		width: 90%;
		margin: 30px auto 0;
	}
}

.point {
	border: 2px solid #eaeaea;
	padding: 68px 95px 55px;
	position: relative;
	margin: 65px auto 80px;
}
@media only screen and (max-width: 768px) {
	.point {
		padding: 48px 45px 35px;
	}
}

.point h4 {
	font-size: 26px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	position: absolute;
    top: 0;
    transform: translate(-50%,-50%);
    left: 50%;
	background: #fff;
    padding: 0 30px;
}
@media only screen and (max-width: 768px) {
	.point h4 {
		font-size: 18px;
		padding: 0px 10px;
	}
}
@media only screen and (max-width: 380px) {
	.point h4 {
		font-size: 17px;
		padding: 0px 3px;
	}
}

.point ul {
	font-size: 20px; /* 20241224 add */
	line-height: 1.75;
}
@media only screen and (max-width: 768px) {
	.point ul {
		font-size: 15px;
	}
}

.point ul li {
	margin-bottom: 5px;
	display: flex;
    align-items: flex-start;
	letter-spacing: 0.01em;
}

.point ul li::before {
    content: "";
    display: inline-block;
    background: #3C6482;
    width: 9px;
    height: 9px;
    border-radius: 100px;
	margin-top: 0.35%;
	margin-right: 0.5em;
	flex-shrink: 0;
	transform: translateY(100%);
}
@media only screen and (max-width: 768px) {
.point ul li::before {
		width: 7px;
		height: 7px;
		margin-top: 1%;
	}
}

/*--------------------------------------------------

  墓じまい後の永代供養

--------------------------------------------------*/

.kuyou h3 {
	margin-top: 50px;
}

ul.kuyou_list {
    display: flex;
	padding: 0 10px;
	justify-content: center;
	margin-top: 75px;
}
@media only screen and (max-width: 1060px) {
	ul.kuyou_list {
		flex-wrap: wrap;
	}
}
@media only screen and (max-width: 790px) {
	ul.kuyou_list {
		flex-direction: column;
		align-items: center;
		margin-top: 35px;
	}
}

.kuyou_list li {
	border-right: 2px solid #eaeaea;
	padding-top: 10px;
}
@media only screen and (max-width: 790px) {
	.kuyou_list li {
		border-right: unset;
		/*border-bottom: 2px solid #eaeaea;*/
	}
}

.kuyou_list li:nth-child(1) {
	padding-right: 30px;
	width: 334px;
}
@media only screen and (max-width: 1060px) {
	.kuyou_list li:nth-child(1) {
		margin: 0 25%;
		border-right: unset;
		padding-right: 0;
	}
}
@media only screen and (max-width: 790px) {
	.kuyou_list li:nth-child(1) {
		width: 100%;
		margin: unset;
	}
}

.kuyou_list li:nth-child(2) {
	padding: 10px 30px 0;
	width: 370px;
}
@media only screen and (max-width: 1060px) {
	.kuyou_list li:nth-child(2) {
		padding: 10px 30px 0 0;
		width: 334px;
	}
}
@media only screen and (max-width: 790px) {
	.kuyou_list li:nth-child(2) {
			padding: 10px 0 0 0;
		    width: 100%;
	}
}

.kuyou_list li:nth-child(3) {
	padding-left: 30px;
	border-right: unset;
	width: 334px;
}
@media only screen and (max-width: 790px) {
	.kuyou_list li:nth-child(3) {
		padding-left: 0;
		width: 100%;
	}
}

.kuyou_list li h4 {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	padding: 30px 0;
	border-radius: 5px;
}
@media only screen and (max-width: 790px) {
	.kuyou_list li h4 {
		font-size: 20px;
		padding: 20px 0;
	}
}

.kuyou_list li:nth-child(1) h4 {
	background: rgba(116,179,52,0.25);
	color: #5fa014;
}

.kuyou_list li:nth-child(2) h4 {
	background: rgba(210,150,0,0.25);
	color: #d29600;
}

.kuyou_list li:nth-child(3) h4 {
	background: rgba(140,60,70,0.25);
	color: #8c3c46;
}

.kuyou_list li p {
	font-size: 18px; /* 20241224 add */
	line-height: 1.5;
	text-align: center;
	padding: 30px 0; /* 20241224 add */
	letter-spacing: 0.005em;
}
@media only screen and (max-width: 790px) {
	.kuyou_list li p {
		font-size: 15px;
		text-align: left;
		padding: 20px 25px;
	}
}

 /* 樹木葬
--------------------------------------------------*/
.jumokusou {
    /*background: url(../img/back_jumokushou.jpg) center/cover;*//* 20241224 del */
  background-color: #CDD6C7; /* 20241224 add */
  position: relative; /* 20241224 add */
  padding: 0 85px 80px 85px; /* 20241224 add */
	margin-top: 60px;
}
@media only screen and (max-width: 768px) {
	.jumokusou {
		/*margin-top: 40px;*//* 20241224 del */
    padding: 0 20px 40px 20px; /* 20241224 add */
	}
}
/* 20241224 add START */
.jumokusou img {
  margin: 0 auto;
}
.jumokusou::before {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 30%, rgba(205,214,199,1) 95%);
  z-index: 0;
}
.jumokusou h3 img {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.jumokusou ul.future, .jumokusou ul.area {
  max-width: 1060px;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.jumokusou ul.future li {
  max-width: 348px;
  margin: 4px 0;
}
@media only screen and (max-width: 768px) {
  .jumokusou ul.future, .jumokusou ul.area {
    margin: 20px auto;
  }
}
.jumokusou ul.area li {
  max-width: 500px;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
}
.jumokusou ul.area li p {
  padding-top: 0.5em;
}
@media only screen and (min-width: 769px) {
  .jumokusou ul.area li:nth-of-type(n+3) {
    margin-top: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .jumokusou ul.area li {
    margin-bottom: 20px;
  }
}
/* 20241224 add END */

/*.jumokusou h3 {
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 0.0125em;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.jumokusou h3 {
		font-size: 30px;
	}
}

p.jumokusou_txt {
	font-size: 19px;
	line-height: 1.75;
	text-align: center;
	margin-top: 30px;
}
@media only screen and (max-width: 768px) {
	p.jumokusou_txt {
		font-size: 16px;
		text-align: left;
		margin-top: 30px;
	}
}

.jumokusou_price {
    max-width: 800px;
    display: flex;
	gap: 65px;
	align-items: center;
	justify-content: center;
	padding: 15px 50px;
	border: 1px solid #fff;
	margin: 35px auto 0;
}
@media screen and (max-width: 1024px) {
	.jumokusou_price {
		max-width: 90%;
		flex-direction: column;
		gap: 20px;
		padding: 15px 30px;
	}
}

.jumokusou_price_img {
	width: 250px;
}
@media screen and (max-width: 768px) {
	.jumokusou_price_img {
		width: 100%;
	}
}

.jumokusou_price_img img {
	max-width: unset;
}

.jumokusou_price_list {
	font-size: 16px;
	line-height: 1.75;
}
@media screen and (max-width: 768px) {
	.jumokusou_price_list {
		font-size: 14px;
	}
}

.jumokusou_price_list h4 {
	font-size: 19px;
	margin-bottom: 10px;
	font-weight: 400;
}
@media only screen and (max-width: 768px) {
	.jumokusou_price_list h4 {
		font-size: 16px;
		margin-bottom: 10px;
	}
}*//* 20241224 del */

/*テーブル
.jumokusou_price_list table {
	/*width: 490px;*/
/*}
@media (max-width: 1024px){
	.jumokusou_price_list table {
		width: 100%;
		font-size: 15px;
	}
}

.jumokusou_price_list table,
.jumokusou_price_list td,
.jumokusou_price_list th {
	border-collapse: collapse;
}


.jumokusou_price_list td,
.jumokusou_price_list th {
	padding: 0 0 10px;
	width: 30px;
	height: 25px;
	font-weight: 400;
	letter-spacing: 0.0025em;
	font-size: 19px;
}
@media only screen and (max-width: 768px) {
	.jumokusou_price_list td,
	.jumokusou_price_list th {
		font-size: 16px;
		display: block;
        text-align: left;
	}
}

.jumokusou_price_list td:last-of-type,
.jumokusou_price_list th:last-of-type {
	padding: 0;
}

.jumokusou_price_list th {
	width: 138px;
	font-weight: 400;
	text-align: justify;
    text-align-last: justify;
}
@media (max-width: 768px){
	.jumokusou_price_list th {
	}
}

.jumokusou_price_list td {
	width: calc(100% - 138px);
	padding-left: 30px!important;
}
@media (max-width: 768px){
	.jumokusou_price_list td {
		width: 100%;
		padding-left: 0!important;
		margin-bottom: 15px;
	}
}

.jumokusou_link a {
	display: flex;
    flex-direction: column;
	gap: 10px;
	max-width: 400px;
	margin: 0 auto;
	text-decoration: none;
}

.jumokusou_link img {
	margin-top: 30px;
}*//* 20241224 del */

.link_txt {
    align-self: flex-end;
	font-size: 13px;
	font-weight: 100;
	color: #32322d;
}

.jumokusou_link a span {
	letter-spacing: 0.001em;
}

span.line {
	text-decoration: underline!important;
}

 span.line_none {
	letter-spacing: -0.5em!important;
	 padding-left: 0.5em;
}

.shoukai .wrapper { /* 20241224 add [.wrapper追記] */
	background: #fff; /* 20241224 add */
	/*background: linear-gradient(0deg, rgba(243,243,242,1) 0%, rgba(243,243,242,1) 3%, rgba(255,255,255,1) 100%);*//* 20241224 del */
	max-width: 1160px;
	height: auto;
	margin: 0 auto; /* 20241224 add */
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
	position: relative; /* 追加 */
	padding-bottom: 30px;
  z-index: 1; /* 20241224 add */
}
@media only screen and (max-width: 1160px) {
	.shoukai .wrapper { /* 20241224 add [.wrapper追記] */
		max-width: 90%;
	}
}
/* 20241224 add START */
.shoukai {
  position: relative;
}
.shoukai::before {
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(205,214,199,1) 95%);
  z-index: 0;
}
/* 20241224 add END */

.shoukai .wrapper::after { /* 20241224 add [.wrapper追記] */
  position: absolute;
  left: -5%; /* 20241224 add */
  right: 0;
  bottom: -5px; /* 20241224 add */
  width: 110%; /* 20241224 add */
  height: 200px; /* 20241224 add */
  background: rgb(255,255,255); /* 20241224 add */
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* 20241224 add */
  display: block;
  content: "";
  z-index: 2;
}

.shoukai h4 {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0.0005em;
	text-align: center;
	color: #5a5041;
	padding-top: 60px;
}
@media only screen and (max-width: 768px) {
	.shoukai h4 {
		font-size: 18px;
		padding-top: 30px;
	}
}

.shoukai ul {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 1060px;
    margin: 35px auto 0;
    position: relative; /* 20241224 add */
    z-index: 3; /* 20241224 add */
}
@media only screen and (max-width: 1160px) {
	.shoukai ul {
		flex-direction: column;
		width: 90%;
	}
}

.shoukai ul li {
    width: 320px;
}
@media only screen and (max-width: 1160px) {
	.shoukai ul li {
		display: flex;
		width: 100%;
		justify-content: space-between;
	}
}
@media only screen and (max-width: 914px) {
	.shoukai ul li {
		flex-direction: column;
	}
}

.shoukai_list_box1 {
    position: relative;
}
@media only screen and (max-width: 1160px) {
	.shoukai_list_box1 {
		flex-basis: 35%;
	}
}

.shoukai_list_box1_img {
    position: absolute;
    bottom: 4%;
    left: 67%;
}
@media only screen and (max-width: 914px) {
	.shoukai_list_box1_img {
		left: 80%;
		max-width: 73px;
	}
}
@media only screen and (max-width: 768px) {
	.shoukai_list_box1_img {
		max-width: 53px;
		left: auto;
    	right: 0;
	}
}

.arrow_box{
    position:relative;
    /*width:320px;
    height:135px;*/
    background:#A67C52;
    padding:20px;
    text-align:left;
    color:#FFFFFF;
    font-size:20px;
    font-weight:600;
	letter-spacing: 0;
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
}
.arrow_box:after,.arrow_box:before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    top:100%;
    left:50%;
}
@media only screen and (max-width: 768px) {
	.arrow_box:after,.arrow_box:before{
		left:70%;
	}
}

.arrow_box:after{
    border-color: rgba(166, 124, 82, 0);
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 15px;
    border-right-width: 15px;
    margin-left: -15px;
    border-top-color:#A67C52;
}
.arrow_box:before{
    border-color: rgba(255, 124, 92, 0);
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 15px;
    border-right-width: 15px;
    margin-left: -15px;
    margin-top: 1px;
}

.arrow_box p {
	text-align: center;
}

.shoukai_list_box1 p.shoukai_list_box1_name {
	font-size: 18px;
	line-height: 1.75;
	letter-spacing: 0.0005em;
	color: #8c6239;
	margin-top: 22px;
	background-image: radial-gradient(circle at center, #8c6239 15%, transparent 15%);
    background-position: bottom right;
    background-repeat: repeat-x;
    background-size: 0.4em 0.46em;
    padding-bottom: 10px;
    display: inline-block;
}
@media only screen and (max-width: 768px) {
.shoukai_list_box1 p.shoukai_list_box1_name {
		margin-top: 45px;
		font-size: 16px;
	}
}

.shoukai_list_txt {
    margin-top: 30px;
	font-size: 18px; /* 20241224 add */
	line-height: 1.4;
}
@media only screen and (max-width: 1160px) {
	.shoukai_list_txt {
		margin-top: 0;
		flex-basis: calc(100% - 35% - 30px);
		line-height: 1.75;
	}
}
@media only screen and (max-width: 768px) {
.shoukai_list_txt {
		font-size: 15px;
		margin-top: 20px;
	}
}

.jumokusou .bnr {
	padding: 60px 0 0;
}

/*--------------------------------------------------

  footer

--------------------------------------------------*/
#footer {
	background: #fff;
	padding: 68px 0 4px;
  border-top: solid 1px #D6D6D5; /* 20241224 add */
}
@media only screen and (max-width: 1024px) {
	#footer {
		padding: 0 0 10vh;
	}
}

.footer_contents {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	 margin: 0 60px 0 80px;
}
@media only screen and (max-width: 1160px) {
	 .footer_contents {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
}


 /* フッターメニュー
--------------------------------------------------*/
.footer_menu {
	width: 313px;
}
@media (max-width: 1024px) {
	.footer_menu {
		margin-top: 60px;
	}
}

.footer_menu a {
	text-decoration: none;
	font-size: 30px;
	letter-spacing: 0.0005em;
	font-weight: 600;
	line-height: 1;
}

.footer_menu a .logo_txt {
	display: block;
    margin-bottom: 0.75em;
    color: #32322d;
}

.footer_menu ul {
	list-style: none;
	margin: 35px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    gap: 15px 65px;
}
@media (max-width: 1160px) {
	.footer_menu ul {
		margin: 25px 0 0;
	}
}

.footer_menu ul li {
    width: calc(50% - 32.5px);
}

.footer_menu ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.0005em;
    color: #32322d;
    display: flex;
}

.footer_link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
@media only screen and (max-width: 840px) {
	.footer_link {
		    flex-direction: column;
			align-items: center;
			gap: 40px;
	}
}

.footer_link li {
	margin-right: 20px;
}
@media only screen and (max-width: 840px) {
	.footer_link li {
		margin-right: 0;
	}
}

.footer_link li:nth-child(2) {
	margin-right: 68px;
}
@media only screen and (max-width: 840px) {
	.footer_link li:nth-child(2) {
		margin-right: 0;
	}
}

 /* コピーライト
--------------------------------------------------*/
small {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
	background: #3C6482;
	padding: 16px 0;
	margin-top: 67px;
}
@media (max-width: 1024px) {
	small {
		font-size: 14px;
		margin-top: 25px;
	}
}









