@charset "utf-8";

/* -----------------------------------------------------------------------------
 環境設定
----------------------------------------------------------------------------- */
/* 定義 */
:root {
	/* 色 */
	--main-color: #90844b; /* メインカラー */
	--sub-color: #6B799E; /* サブカラー */
	--accent-color: #EAAD38; /* アクセントカラー */
	--dark-color: #9C8F96; /* ダークカラー */
	--light-color: #FAF2E3; /* ライトカラー */
	
	/* 全体 */
	--body-font-family: 'Noto Sans JP', sans-serif; /* フォントfamily */
	--body-serif-font-family: "Noto Serif JP", serif; /* 明朝フォントfamily */
	--body-font-size: 16px; /* 文字サイズ */
	--body-line-height: 2; /* 行間 */
	--body-font-color: #585858; /* 文字色*/
	--body-font-gray: #909090; /* 文字色*/
	--body-bg-color: #fff; /* 背景色 */
	--body-bg-black:#1a1a1a; /* 背景色 */
	--body-sub-bg-color: #f0eeee; /* 背景色 */
	--link-a-color: var(--main-color); /* リンク文字色 */
	--link-a-hover-color: var(--accent-color); /* リンク文字色 hover */
	
	
	/* ヘッダー */
	--header-bg-color: var(--body-bg-black); /* 背景色 */
	--header-logo-color: #fff; /* ロゴ色 */
	--header-menu-txt-color: #fff; /* メニュー文字色 */
	--header-sub-menu-color: #aaa; /* ハンバーガーメニュー色 */
	--header-sub-menu-bg-color: #f5f5f5; /* サブメニュー背景色 */
	
	/* タイトル */
	--h1-main-font-family: inherit; /* メイン フォントfamily */
	--h1-main-font-weight: 500; /* メイン 文字太さ */
	--h1-main-color: var(--main-color); /* メイン色 */
	--h1-sub-font-family: inherit; /* サブ フォントfamily */
	--h1-sub-font-weight: 300; /* サブ 文字太さ */
	--h1-sub-color: var(--sub-color); /* サブ文字色 */
	
	/* コンテンツ タイトル */
	--h2-contents1-color: var(--dark-color); /* 文字色 */
	--h2-contents1-weight: 500; /* 文字太さ */
	
	/* コンテンツ */
	--list-style-color: var(--main-color); /* リストアイコン色 */
	--col-line-height: 1.6; /* 2分割・3分割・4分割の行間 */
	
	/* 会社概要 */
	--cpn-table-border: #ccc; /* table線色 */
	--cpn-th-color: #aaa; /* th色 */
	
	/* お問合せ */
	--contact-tel-font-family: 'Noto Sans JP', sans-serif; /* TELフォントfamily */
	--contact-tel-font-weight: 700; /* TEL文字太さ */
	--contact-tel-color: #333; /* TEL文字色 */
	--contact-center-line-color: #ccc; /* 中央線 */
	--contact-form-btn-txt-color: #fff; /* フォームボタン文字色 */
	--contact-form-btn-bg-color: #333; /* フォームボタン背景色 */
	
	/* フッター */
	--footer-bg-color: var(--body-bg-black); /* 背景色 */
	--footer-txt-color: #fff; /* 文字色 */
	--footer-txt-hover-color: var(--light-color); /* 文字色 hover */
	--footer-arrow-color: #fff; /* TOPへ戻る矢印色 */
	--footer-arrow-bg-color: var(--dark-color); /* TOPへ戻る矢印背景色 */
	--footer-arrow-hover-color: var(--accent-color); /* TOPへ戻る矢印色 hover */
	--footer-arrow-hover-bg-color: var(--light-color); /* TOPへ戻る矢印背景色 hover */
	--footer-top-border-size: 0px; /* border-top 太さ */
	--footer-top-border-color: var(--dark-color); /* border-top 色 */
	--footer-logo-width: 240px; /* ロゴ 横幅 */
	--footer-name-font-size: 1.5em; /* 会社名 文字サイズ */
	--footer-name-font-weight: 700; /* 会社名 文字太さ */
	
	/* 常駐ボタン */
	--side-btn-txt-color: #fff; /* 文字色 */
	--side-btn-txt-weight: 700; /* 文字太さ */
	--side-btn-bg-color: #E77B3A; /* 背景色(上) */
	--side-btn-bg-color2: var(--dark-color); /* 背景色(下) */
}


/* 背景 */
.contents_bg1{
	background-color: var(--body-sub-bg-color)!important;
}
.contents_bg2{
	background: var(--body-bg-color) url("../../p-img/sample_55_1/bg-grid1.png")left top repeat!important;
}
.contents_bg3{
	background-color: #f5f5f5!important;
}



/* -----------------------------------------------------------------------------
 Header
----------------------------------------------------------------------------- */
header {
	height: 50px;
}
header a {
	text-decoration: none !important;
}
header > .inner {
	width: 100%;
	background-color: var(--header-bg-color);
	box-shadow: 0px 3px 10px 0px rgba(204,204,204,0.20);
}
header > .inner > .logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 50px 0 5px;
	border: none;
}
header > .inner > .logo h1{
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	font-weight: 400;
	white-space: nowrap;
	color: var(--header-logo-color);
}
header > .inner > .logo h1 .h1 {
	display: flex;
	flex-direction: column;
	order: 2;
	font-size: .6rem;
}
header > .inner > .logo h1 .h1 .small {
	border: var(--main-color) solid 1px;
	font-size: .6rem;
	color: var(--main-color);
	padding: 0 2px;
	background-color: #0B0B0B;
}
header > .inner > .logo h1 img{
	width: 123px;
	order: 1;
}
header > .inner > navi > ul {
	display: block;
}
header > .inner > navi > ul > li {
	padding-left: 0;
	text-indent: 0;
}
header > .inner > navi > ul > li a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: .95em;
	color: var(--header-menu-txt-color);
	margin: 0;
	padding: 5px 20px;
	border: none;
}
header > .inner > navi > .translation {
	padding: 5px 20px;
	display: block;
}


/* bt-menu */
#bt-menu {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background-color: var(--header-bg-color);
	z-index: 10;
	cursor: pointer;
}
#bt-menu span {
	position: absolute;
	top: 24px;
	right: 10px;
	width: 30px;
	height: 2px;
	background-color: var(--header-sub-menu-color);
	transition: .3s;
}
#bt-menu span::before {
	position: absolute;
	top: -10px;
	right: 0;
	content: "";
	width: 30px;
	height: 2px;
	background-color: var(--header-sub-menu-color);
	display: block;
	transition: .3s;
}
#bt-menu span::after {
	position: absolute;
	top: 10px;
	right: 0;
	content: "";
	width: 30px;
	height: 2px;
	background-color: var(--header-sub-menu-color);
	display: block;
	transition: .3s;
}
#bt-menu.open span {
	background-color: transparent;
	transition: .3s;
}
#bt-menu.open span::before {
	top: 0;
	transform: rotate(45deg);
	transition: .3s;
}
#bt-menu.open span::after {
	top: 0;
	transform: rotate(-45deg);
	transition: .3s;
}

/* style1 */
header.style1 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--header-bg-color);
	z-index: 999;
}
header.style1 > .inner > .logo {
	height: 50px;
	vertical-align: middle;
	display: table-cell;
}
header.style1 > .inner > navi {
	position: absolute;
	top: 50px;
	right: 0;
	padding: 5px 0 10px;
	background-color: rgba(50,50,50,0.65);
	opacity: 0;
}	


/* powered by Sangyo Navi */
.powered {
	display: block;
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	color: #bbb;
	text-align: right;
	margin: 5px 10px 0;
	padding: 3px 5px 0;
	border-top: 1px solid #ddd;
}


/* -----------------------------------------------------------------------------
 Top Contents
----------------------------------------------------------------------------- */
#top-contents {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 0;
}
#top-contents .mv {
	background-color: var(--body-bg-color);position: relative
}
#top-contents .slider img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	object-fit: cover;
}
#top-contents .slider {
	order: 2;
	position: absolute;
	width: 80vw;
	right: 0;
	z-index: 0;
}
#top-contents .slider.right {
	display: none;
}
#top-contents .layer1 {
	position: relative;
	order: 1;
	z-index: 1;
	padding-top: 16px;
}
#top-contents .layer1 h2{
	min-height: 500px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-family: var(--body-serif-font-family);
	font-weight: var(--h1-main-font-weight);
	font-size: clamp(1.4rem, calc(1vw + 1rem), 1.6rem);
	line-height: 2;
	color: var(--body-font-color);
	
	padding-left: 16px;
}
#top-contents .layer1 h2 .h1-order1{
	order: 2;
	align-content: end;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	margin-left: 2vw;
}
#top-contents .layer1 h2 .h1-order2{
	order: 1;
	color: var(--main-color);
	align-content: end;
	font-size: 1.05em;font-weight: 700;
	text-shadow: 1px 1px 5px rgba(255,255,255,0.9),-1px 1px 5px rgba(255,255,255,0.9),-1px -1px 5px rgba(255,255,255,0.9),1px -1px 5px rgba(255,255,255,0.9),0px 0px 1px rgba(255,255,255,1);
}
#top-contents .layer1 h2 .h1-order3{
	order: 3;
	writing-mode: horizontal-tb;
	font-size: clamp(1.3rem, calc(1vw + 1rem), 1.5rem);
	background-color: var(--body-bg-color);
	padding: 1rem 2.5rem 0.5rem 8px;
}
#top-contents .layer1 ul {
	display: flex;
	gap: 0.25rem;
    justify-content: center;
	flex-direction: row;
	margin-bottom: .85rem;
	padding: 0 0.5rem;
	box-sizing: border-box;background: #fff;
}
#top-contents .layer1 ul li {
	width: calc(100% / 3);
	border: solid 1px var(--main-color);
	font-family: var(--body-serif-font-family);
	font-size: .85rem;
	font-weight: var(--h1-main-font-weight);
	text-align: center;
	padding: 0.25rem;
    align-content: center;
    line-height: 1.4;
	
}
#top-contents .layer1 ul li .small {
	font-size: 0.8rem;
}
#top-contents .layer1 ul li a{display: block;
	text-decoration: none; color: var(--body-font-color);position: relative;
}

.layer1 ul li a::after {
  position: absolute;
  font-size: 1.25em;
  display: block;
  font-family: "Font Awesome 6 pro";
  content: "\f054";font-weight: 300;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
	
}

#top-contents .layer2 {
	margin: 1rem auto;
}
#top-contents .layer2 p{
	font-weight: 400;
	font-size: .9em;
	line-height: 1.5;
	color: var(--body-font-gray);
	padding: 0 15px;
}
#top-contents .layer3 {
	right:2vw;bottom:170px;
	position: absolute;
	z-index: 7;
	

}
.layer3 a{font-size: .85em;width: 180px;
	display: block;background: rgba(0,0,0,1.00);color: #FFFADA;line-height: 1;padding: 0.5em 1em .5em 0;
	text-decoration: none;position: relative;text-align: center;
	background-image: url("../../p-img/101577_1/tocv-ico.svg");text-shadow: 1.5px 1.5px 0 rgba(0,0,0,1);
	background-repeat: no-repeat;background-position: left 3px center;background-size:55px;font-weight: 700;
	box-shadow: 4px 4px 0 #c2a922;	
}
.layer3 a span{margin-bottom: .75em;font-weight: 400;text-shadow: none;
	display:inline-block;background-color:#E4E2D7;color: rgba(179,0,27,1.00);font-size:.8em;border-radius: 100px; padding: 0.35em 1em;
}

.layer3 a::after {
  position: absolute;
  font-size: 1.5em;
  display: block;
  font-family: "Font Awesome 6 pro";
  content: "\f054";
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
	
}
/* -----------------------------------------------------------------------------
 Breadcrumb
----------------------------------------------------------------------------- */
#breadcrumb {
	font-size: 0.75em;
	max-width: 100%;
	margin: 0 auto;
	padding: 15px 10px;
	text-align: left;
	background-color: var(--body-bg-color);
}
#breadcrumb .login {
	width: 120px;
	text-align: right;
	float: right;
}
#breadcrumb .login img {
	margin-right: 5px;
	vertical-align: top;
}
#breadcrumb .login a {
	color: var(--body-font-gray);
	text-decoration:none;
	border: none;
}
#breadcrumb .login a:hover {
	color: var(--link-a-hover-color);
	text-decoration:none;
	border: none;
}

#breadcrumb .bc {
	color: #bfbfbf;
}
#breadcrumb .bc a {
	color: #bfbfbf;
	text-decoration:none;
	border: none;
}
#breadcrumb .bc a:hover {
	color: var(--link-a-hover-color);
	text-decoration: none;
	border: none;
}


/* -----------------------------------------------------------------------------
 contents
----------------------------------------------------------------------------- */
main .contents {
	background-color: var(--body-bg-color);
	overflow: hidden;
}
main .contents.fixed {
	background-color: transparent;
}
main .contents .fixed-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

.w1024 {
	height: auto !important;
	margin: 2rem 10px;
}
.w1024.bg {
	background-color: #fff;
	padding: 20px;
}
.w1268 {
	height: auto !important;
	margin: 2rem 10px;
}

.layer {
	position: static;
	width: 100% !important;
}

.contents section {
	margin: 0 10px 40px;
}


/* -----------------------------------------------------------------------------
 Footer
----------------------------------------------------------------------------- */
footer {
	position: relative;
	font-size: 0.92em;
	padding: 50px 0 30px;
	border-top: var(--footer-top-border-size) solid var(--footer-top-border-color);
	background-color: var(--footer-bg-color);
	background-size: cover;
	box-sizing: border-box;
	margin-bottom: 50px;
}
footer .pagetop a {
	position: absolute;
	top: calc(-25px - var(--footer-top-border-size));
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	background-color: var(--body-font-gray);
	text-decoration: none;
	border-radius: 50%;
	box-sizing: border-box;
	display: block;
}
footer .pagetop a::before {
	color: var(--footer-arrow-color);
	font-size: 20px;
	content: "▲";
	margin-top: 14px;
	text-align: center;
	line-height: 1em;
	display: block;
	transition: .3s;
}
footer .inner {
	margin: 0 10px;
}
footer .pagetop a span {
	display: none;
}
footer .login {
	margin: 40px auto 5px;
	text-align: center;
	display: block;
}
footer .login img {
	margin-right: 5px;
	vertical-align: 0;
}
footer .login a {
	font-size: 13px;
	color: #ccc;
	text-decoration: none;
	border: none;
	display: inline-block;
}
footer.login a:hover {
	color: var(--footer-txt-hover-color);
	text-decoration: none;
	border: none;
}
footer .copy {
	font-size: 13px;
	line-height: 1.6;
	color: #ccc;
	text-align: center;
}
footer .copy a{
	border: none;
}
.footer-info{
	color: var(--footer-txt-color);
	text-align:center;
}

.footer-info .logo{
	width: var(--footer-logo-width);
	box-sizing: border-box;
	margin: 0 auto 10px;
}
.footer-info .logo img{
	width: 100%;
}
.footer-info .name{
	font-weight: var(--footer-name-font-weight);
	font-size: var(--footer-name-font-size);
}
.footer-info .mail{
	margin-top: 10px;
}
.footer-info .mail a{
	display: table;
	text-decoration: none;
	color: var(--footer-bg-color);
	background-color: var(--footer-txt-color);
	border-radius: 60px;
	padding: 0 30px;
	margin: auto;
}
.footer-info .mail a:hover{
	opacity: 1;
	transform: scale(1.1);
}
.footer-info .mail a i{
	margin-right: 3px;
}


/* -----------------------------------------------------------------------------
 共通 parts
----------------------------------------------------------------------------- */
.main-col {
	color: var(--main-color);
}
/* parts-h1 */
.parts-h1 {
	font-family: var(--body-serif-font-family);
	font-weight: var(--h1-main-font-weight);
	font-size: clamp(1.7rem, calc(1.5vw + 1rem), 2.2rem);
	text-align: center;
	color: var(--h1-main-color);
	line-height: 1.6;
	letter-spacing: 2px;
	margin-bottom: 2em;
}
.parts-h1 .small{
	display: block;
	font-family: var(--h1-sub-font-family);
	font-weight: var(--h1-sub-font-weight);
	font-size: .6em;
	color: var(--body-font-gray);
	text-shadow: none;
}
.parts-h1 .sub {
	font-size: .7em;
}
.parts-h1 + .txt_area {
	text-align: center;
	margin: 0 auto 2rem;
}

/* parts-h2 */
.parts-h2 {
	font-family: var(--body-serif-font-family);
	font-weight: var(--h2-contents1-weight);
	font-size: clamp(1.3rem,calc(1.1em + 1vw),1.6rem);
	color: var(--main-color);
	text-align: left;
	line-height: 1.75;
	margin-bottom: .5em;
}

/* parts-h3 */
.parts-h3 {
	font-family: var(--body-serif-font-family);
	font-size: 1.4rem;
	line-height: 1.5;
	color: var(--dark-color);
	border-bottom: 1px solid var(--dark-color);
	padding-bottom: .3em;
	margin-bottom: 1em;
}

/* parts-h4 */


/* parts-img */
.parts-img {
	margin-bottom: 2em;
}
.parts-img img {
	max-width: 100%;
	height: auto;
	width: auto;
}

/* parts-map */
.parts-map {
	max-width: 100%;
	margin-bottom: 2em;
}

/* parts-news */
.parts-news {
	height: 200px;
	margin-bottom: 2em;
	padding: 15px;
	background-color: var(--body-bg-color);
	border: 1px solid #999;
	overflow-y: scroll;
	box-sizing: border-box;
}
.parts-news.show {
	height: auto !important;
	overflow-y: visible;
}
.parts-news > p {
	margin-bottom: 1em;
	
}
.parts-news a{
	color: var(--link-a-color);
}


/* -----------------------------------------------------------------------------
 財団カスタマイズ
----------------------------------------------------------------------------- */

/* 共通 */
body {
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	color: var(--body-font-color);
}

a.anchor{
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}

img{
	vertical-align: top;
}

.txt_area a:link, .txt_area a:visited, .txt_area a:active {
    color: var(--link-a-color);
	text-decoration: none;
	border-bottom: 1px solid var(--link-a-color);
	transition: .3s;
}
.txt_area a:hover {
    color: var(--link-a-hover-color);
	border-bottom: 1px solid var(--link-a-hover-color);
}
.txt_area p{
	margin-bottom: 1.5em;
}

.font_s{
	font-size: .75em;
	margin: 0;
}

.inblock{
	display: inline-block;
}

/* 2分割・3分割・4分割 */
.half,
.trisection,
.quarter{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3vw;
	margin: 20px auto;
}
.half .left,
.half .right,
.trisection .left,
.trisection .center,
.trisection .right,
.quarter .left1,
.quarter .left2,
.quarter .right1,
.quarter .right2{
	width: 100%;
	box-sizing: border-box;
	line-height: var(--col-line-height);
}
.half .left img,
.half .right img,
.trisection .left img,
.trisection .center img,
.trisection .right img,
.quarter .left1 img,
.quarter .left2 img,
.quarter .right1 img,
.quarter .right2 img{
	width: 100%;
}

/* parts-txt-img */
.parts-txt-img{
	max-width: 100%;
	margin: 0 auto 2em;
	overflow: hidden;
}
.parts-txt-img .r-img,
.parts-txt-img .l-img{
	width: 48%;
	box-sizing: border-box;
}
.parts-txt-img .r-img{
	float: right;
	margin-left: 20px;
}
.parts-txt-img .l-img{
	float: left;
	margin-right: 20px;
}
.parts-txt-img .r-img img,
.parts-txt-img .l-img img{
	width: 100%;
}

/* ful-half */
.ful-half{
	display: flex;
	flex-direction: column-reverse;
	width: 100%;
	min-height: 480px;
	align-items: stretch;
}
.ful-half.r-img .left,
.ful-half.l-img .right{
	display: flex;
}
.ful-half.r-img .right,
.ful-half.l-img .left{
	height: 300px;
}
.ful-half .left,
.ful-half .right{
	width: 100%;
	box-sizing: border-box;
}
.ful-half .txt{
	padding: 15px;
}
.ful-half .txt .inner{
	max-width: 600px;
	box-sizing: border-box;
	margin: 0 auto 0;
}
.ful-half .img{
	height: 100%;
	position: relative;
	overflow: hidden;
}
.ful-half .img img{
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* parts-table */

/* parts-list */
.parts-list ul{
	padding-left: 1.5em;
}
.parts-list ul li{
	line-height: 1.6;
	margin-bottom: 1em;
	position: relative;
}
.parts-list ul li:before{
	content: '';
	display: inline-block;
	position: absolute;
	top: .5em;
	left: -1.1em;
	width: 8px;
	height: 8px;
	background-color: var(--main-color);
}

/* flow 横 */

/* ScrollTrigger */

/* マーカー */


/* 会社概要 */
.cpn_tbl table{
	border-collapse: collapse;
	margin: 20px auto 40px;
}
.cpn_tbl table th,
.cpn_tbl table td{
	display: block;
	border-bottom: 1px solid var(--cpn-table-border);
	text-align: left;
	padding: 5px 20px;line-height: 1.6;
}
.cpn_tbl table th{
	font-size: .9em;
	font-weight: 500;
	color: var(--cpn-th-color);
	white-space: nowrap;
	border-bottom: none;
	padding: 7px 0 0 5px;
}
.cpn_tbl table td ul{margin-left: 1em}
.cpn_tbl table td li{list-style: disc}
.cpn_tbl table td li:not(:last-child){margin-bottom: .4em;}

/* お問合せ */
.contact i{
	font-size: 1em;
	line-height: 1.2em;
	margin-right: 10px;
}
.contact .tel a{
	display: block;
	font-family: var(--contact-tel-font-family);
	font-weight: var(--contact-tel-font-weight);
	font-size: calc(2em + .7vw);
	line-height: 1.7;
	text-align: center;
	color: var(--contact-tel-color);
}
.form_sub{
	font-size: .75em;
	color: #888;
	text-align: center;
	margin-top: 10px;
}
a.mail_button {
	display: inline-block;
	margin-top: 20px;
	padding: 1em 3em;/* ボタンのサイズはpaddingで調整 */
	background: var(--contact-form-btn-bg-color);
	border: 1px solid var(--contact-form-btn-bg-color); /* 枠線色 */
	color: var(--contact-form-btn-txt-color); /* 文字色 */
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	transition: all .3s;
}
a.mail_button:hover {
	opacity: 0.85;
}
a.mail_button i{
	transition: all .3s;
}
a.mail_button:hover i{
	transform: scale(1.3);
}


/* 横問合せボタン */
.cv_btn_area {
	width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 102;
	opacity: 0;
	overflow: hidden;
		padding-top: 60px
}
.cv_btn_area .btn{
	align-items: flex-end;
	display: flex;

}
.cv_btn_area .btn a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	line-height: 1.3;
    font-size: 1.2rem;
	font-weight: var(--side-btn-txt-weight);
    letter-spacing: 1px;
    background: #B39855;
    color: var(--side-btn-txt-color);
    text-align: center;
	text-decoration: none;
	padding: 15px 0px;
	margin: 0;
	position: relative;
}
.cv_btn_area .btn a i {
	font-size: 1.5em;
	margin-right: 6px;
}
.cv_btn_area .btn a > span {
	margin-right: 10px;
}
.cv_btn_area .btn a span {
	font-size: 1.2rem;background: #222;padding: 0.45em 0.45em .15em;border-radius: 100px;
}
.cv_btn_area .btn a span .num {
	font-size: 1.3rem;line-height: 0;border-radius: 0;
	padding: 0;background-color: transparent;
}

.cv_btn_area .btn a img{width: 85px; bottom:0;left:2px;position: absolute;}
.cv_btn_area .btn .for-all a{/*	margin-top: 8px;padding: 15px 15px 10px;width: 110px;font-size: 15px;font-weight: 500;
    height: auto;*/background: #c1bba2;color: #222;}
.fade_on{
	opacity: 1;
}

/* TEL */
a[href^="tel:"] {
	color:inherit;
	text-decoration:none;
	border: none;
}

@media screen and (min-width: 768px){
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

/* レスポンシブ出し分け */
.for-pc{
	display: none!important;
}
.for-tab{
	display: block!important;
	width: 50%;min-width: 340px;
	
}


.cv_btn_area .btn .for-tab a .inblock{padding: 0}
.cv_btn_area .btn .for-tab a{padding-left:84px;padding-right: 8px }
.cv_btn_area .btn a span {
	font-size: .8em;margin-right: 0;margin-left: 5px;}
.for-all{
	display: block!important;
	width: 50%;max-width: calc(100% - 340px)
}


/* Margin・Padding */
.mb0{
	margin-bottom: 0!important;
}

/*フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 3s ease forwards;
}
@keyframes fadein {
    100% {  opacity: 1;}
}



/* -----------------------------------------------------------------------------
	 個別設定
----------------------------------------------------------------------------- */
.bg_toright {
	position: relative;
}
.con1 section {
	margin: 0 auto;
	padding: 0 ;
	box-sizing: border-box;
}
.con1 .parts-h1 {
	margin: 2rem auto;
	font-size: 1.2rem;
	color: var(--body-font-color);
	line-height: 2;
}
.contents_bg1{
	padding: 10px;
}
.con1 ul {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	justify-content: center;
}
.con1 li {
	position: relative;
	width: 100%;
	font-family: var(--body-serif-font-family);
	background-color: var(--body-bg-color);
	font-size: 1.125rem;
	font-weight: 600;
	align-content: center;
	text-align: center;
	box-sizing: border-box;
	padding: 2.5rem 2rem;
}
.con1 li::before{
    font-size: 3rem;
	font-weight: 400;
    color: var(--main-color);
    opacity: 0.3;
	line-height: 1.2;
}
.con1 li:nth-child(1)::before{
	content: "01";
}
.con1 li:nth-child(2)::before{
	content: "02";
}
.con1 li:nth-child(3)::before{
	content: "03";
}
.con1 li:nth-child(4)::before{
	content: "04";
}
.con1 li:nth-child(5)::before{
	content: "05";
}
.con1 li::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 3rem;
	background-color: var(--main-color);
	transform: rotate(30deg);
	top: -1rem;
	left: 50%;
	opacity: 0.5;
}
.con1 .parts-txt {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	margin: 4rem auto 60px;
	padding: 2rem 10px;
	box-sizing: border-box;
}

.con1 .parts-txt h3 {
	font-family: var(--body-serif-font-family);
	font-weight: 500;
	color: var(--main-color);
	border: none;
	margin: 0;
	padding: 0;
}
.con1 .parts-txt .r-txt {
	flex: 1;
	color: var(--body-font-gray);
}

.txt_area .to-pdf{display: block;
	text-align: center;
	background-color: #C1BBA2;
	color: #222;line-height: 1;padding: 0.5em 1em;
	position: relative;width: 230px;max-width: 100%;
	margin: .5em auto 0;box-shadow: 2px 2px 0 #222;
}
.txt_area .to-pdf:link,
.txt_area .to-pdf:visited{color: #222;border-bottom: none;}
.txt_area .to-pdf:hover{color: #8F4143;border-bottom: none;}
.to-pdf .fsmall{display: block;margin-bottom: .5em}

.to-pdf::after{position: absolute;font-size: 1.5em;
	display: block;font-family: "Font Awesome 6 pro";
  content: "\f1c1";top:50%;right: 10px; transform: translateY(-50%);
	
}
.yukan{display: block;background-color: rgb(244, 243, 234);padding: 10px 15px 15px!important;box-sizing: border-box;margin-top: .5em;border-radius: 8px}

.con2 .parts-h1 {
	margin-bottom: 1rem;
}
.con2 .plan{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 3vw;
}
.con2 .plan li {
	width: 100%;
}

.con2 .parts-txt-img {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	margin: 0 auto 3rem;
	line-height: 1.75;
}
.con2 .plan h3 {
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	color: var(--main-color);
	font-weight: 700;
	text-align: center;
	border-bottom: solid 1px var(--body-font-gray);
	line-height: 1.75;
}
.con2 .plan h3 .small {
	display: block;
	color: var(--body-font-color);
	font-family: var(--body-font-family);
	font-size: 1rem;
	font-weight: 300;
}
.con2 .plan h3 .ppl {
	display: block;
	text-align: right;
	font-family: var(--body-font-family);
	font-size: 0.9rem;
	font-weight: 400;

}
.con2 .plan h3 .block{display: block;background-color: #f0eeee;background-image: linear-gradient(210deg,#B39855 4%,#f0eeee 8%);
	box-shadow: 1.5px 1.5px 5px rgba(25,23,0,0.22);padding: 0.15em 0.5em;
	margin: 0.25em auto 0.15em;max-width: calc(100% - 16.5px);border-radius: 1.5em 0 1.5em 0;
  color: var(--side-bt);box-sizing: border-box; }
.con2 .plan .price {
	margin-bottom: 0.5rem;
	font-family: var(--body-serif-font-family);
	color: var(--main-color);
	font-size: 1.2rem;
	font-weight: 500;
    line-height: 1.1;

}
.con2 .plan .price .num {
	font-size: 1.85em;
}
.con2 .plan .price .small{
	display: inline;
	text-align: right;
	font-size: .9rem;
	color: var(--body-font-gray);
}
.con2 .plan .memo {
	margin: 1.5rem 0;
}
.con2 .plan .data{
	padding: 15px;
	color: var(--body-font-gray);
	background-color: rgba(255, 255, 255, 0.7);
	box-sizing: border-box;
}
.con2 .plan + p {
	margin-bottom: 2rem;
	text-align: center;
}
.con2 .parts-txt-img .img img{
	width: 100%;
}
.con3 section,
.con4 section,
.con5 section{
	margin: 3rem auto;
}
.con3 section > div:nth-child(3) .parts-h2::before{
	content: "Essence 2";
} 
.con3 section > div:nth-child(4) .parts-h2::before{
	content: "Essence 3";
} 
.con3 section > div:nth-child(5) .parts-h2::before{
	content: "Essence 4";
} 
.con3 section > div:nth-child(6) .parts-h2::before{
	content: "Essence 5";
} 
.con3 .parts-h2::before {
	content: "Essence 1";
	display: block;
	font-size: 1rem;
	font-weight: 300;
	color: var(--body-font-gray);

}
.contents.cta {
	padding: 10px;
	background-color: var(--body-bg-black);
	background-image: url("../../p-img/101577_1/customer-bg.jpg");
}
.contents_bg1.cta{background-image: none;}
.contents.cta .parts-h1 {
	color: var(--side-btn-txt-color);
	margin-bottom: 1em;
}
.contents.cta .txt {
	margin-bottom: 1rem;
	font-size: 1rem;
	font-weight: normal;
	color: var(--side-btn-txt-color);
	text-align: center;
}
.contents.cta .txt .cflarge {
	margin-bottom: 1rem;
	margin-top: 0.15em;
	font-family: var(--body-serif-font-family);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main-color);
	text-align: center;
	display: block;
	line-height: 1;
}
.contents.cta a.cta-a{
	display: block;
	margin: auto;
	background-color: var(--body-bg-color);
	padding: 1rem;
	text-align: center;
	align-content: center;
	font-family: var(--body-serif-font-family);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--main-color);
	box-sizing: border-box;
	box-shadow: 4px 4px 0 var(--main-color);
	width: 480px;
	max-width: 100%;
	
}
.contents.cta a.cta-a span {
	display: block;
	font-size: 1rem;
}
.contents.cta a.cta-a i {
	display: inline-block;
	margin-right: 8px;
}
.contents.cta.con1-0{background:#fff; }

.contents.cta a.cta-b {font-size: 1.15em;
  display: block;font-weight: 700;font-family: var(--body-serif-font-family);
  text-align: center;
  background-color: #C1BBA2;
  color: #222;
  line-height: 1;
  padding:  1em;
  position: relative;
  width: 290px;
  max-width: 100%;
  margin: 2em auto 0;
	box-shadow: 2px 2px 0 #222;text-decoration: none;}
.contents.cta a.cta-b .fsmall{margin-right: .5em;font-family: var(--body-font-family);font-weight: 400;background: #fff;
	padding: 0.25m;
}
.con4 ul {
	display: grid;
    grid-template-columns: 56% 44%;
    grid-template-rows: 24% 16%;
    grid-template-areas:
        "g1 g7"
        "g2 g7"
		"g4 g3"
		"g4 g5"
		"g4 g6";
    gap: 1vw;
	margin: auto;
}
.con4 .gallery1 {
	grid-area: g1;
}
.con4 .gallery2 {
	grid-area: g2;
}
.con4 .gallery3 {
	grid-area: g3;
}
.con4 .gallery4 {
	grid-area: g4;
}
.con4 .gallery5 {
	grid-area: g5;
}
.con4 .gallery6 {
	grid-area: g6;
}
.con4 .gallery7 {
	grid-area: g7;
}
.con4 li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.con5 ul{
	display: flex;
	flex-direction: column;
    gap: 2rem;
	padding: 0 10px;
}
.con5 li{
	width: 100%;
	background-color: var(--body-sub-bg-color);
	padding: 20px;
	box-sizing: border-box;
}
.con5 li img{
	width: 60%;max-width: 200px;
    display: block;
    margin: auto;
}
.con5 li h3 {
	margin: 0.5rem auto;
	font-size: 1rem;
	font-weight: 600;
}

/*con5 QA*/
.con6 dt{
	font-size: 1.25rem;
	margin-left: 2em;
	font-weight: bold;
	position: relative;
	line-height: 1.6;
	margin-bottom: 1em;
	color:var(--main-color)
}
.con6 dt::before{
	content: 'Q.';
	font-family: var(--body-serif-font-family);
	font-size: 1.5em;
	font-weight: 500;
	color:var(--main-color);
	position: absolute;
	top: -12px;
    left: -2.3rem;
}
.con6 dd{
	margin-left: 4rem;
	font-weight: normal;
	position: relative;
	line-height: 1.8;
	margin-bottom: 5em
}
.con6 dd::before{
	content: 'A.';
	font-family: var(--body-serif-font-family);
	font-size: 2em;
	font-weight: 500;
	color:var(--main-color);
	position: absolute;
	top: -20px;
    left: -2.3rem;
}

.con6 dd::after{
	content: '';
	display: block;
	height: 1px;width:calc( 100% + 3.25rem);
	background-color:var(--contact-center-line-color);
	position: absolute;
	bottom: -2.5em;
	left:-3.25rem;
}
.con6 dd:last-child::after{display: none}
.con6 dd ol{margin: 1.5em 0}
.con6 dd ol li{margin-bottom: 1em;}
.parts-map {
	margin-top: 4rem;
}
.exterior img{
	width: 100%;
}

.funeral-home li{
	color: var(--body-font-gray);
	border-bottom: var(--contact-center-line-color) solid 1px;
	padding: 0.25rem 1rem 0.5rem 0;
	list-style: disc;
	margin-left: 1rem;line-height: 1.6;padding-bottom: .6em;
}
.funeral-home li:not(:last-child){margin-bottom: 0.6em}
.funeral-home li a {
	color: var(--body-font-gray);
}

.other{margin: 2rem 0 1rem }
.con8.cta .parts-h1 {
	color: var(--main-color);
}
.con8.cta .txt, 
.con1-0.cta .txt {
	color: var(--body-font-family);

}
.con8.cta a.cta-a,.con1-0.cta a.cta-a {
	background-color: var(--main-color);
	background-image:  linear-gradient(210deg,#B39855 3%,#FFF9E6 12%,#A48B4C 13.5%,#B39855 44%,#B39855 80%,#CBBF99 93.5%,#B39855 94%,#7F6933 98%);
	color: var(--side-btn-txt-color);
	box-shadow: 5px 5px 0 #222;
}
.cta a.cta-a{position: relative}
.cta a.cta-a img{position: absolute;width: 105px;top:-100px;left:0px}
.con1-0 .w1024{margin: 40px auto 0}
.con1-0-2 .w1024{margin: 0px auto 0;padding-bottom: 40px}
#footer .name span {
	display: block;
	font-size: 1rem;
}
#footer .copy a {
	display: inline-block;
    margin-bottom: 5px;
}
.sp_none {
	display: none;
}
.pc_none {
	display: block;
}
#footer .copy a img{width: 90px;}


@media screen and (max-width: 480px) {
	#top-contents .layer1 ul li:nth-child(2){padding:.25em 0.5em .25em 0em }
	.layer1 ul li a::after {right: -5px}
	.cta a.cta-a img {
  width: 90px;
  top: -60px;left:initial;
		right:calc(50% + 115px) ;}
	.cv_btn_area .btn a img {
		width: 70px;}
	.cv_btn_area .btn a {
		padding: 15px 0px 15px 60px;}
	.cv_btn_area .btn a > span {
		margin-right: 0;margin-left: 8px}
	.cv_btn_area .btn a{height: 80px;padding: 10px 0px 10px 60px;}
	.cv_btn_area .btn .for-all {font-size: 1em;width:8rem;max-width: none}
	.cv_btn_area .btn .for-all a {font-size: 1em;padding:10px 5px 10px;}
	.cv_btn_area .btn .for-tab {width:calc(100vw - 8rem);min-width:auto;}
	.cv_btn_area .btn .for-tab a{flex-wrap: wrap;padding-left:65px;}
	.cv_btn_area .btn .for-tab a > span{margin-left:calc(50% - 112px);margin-right:calc(50% - 112px);margin-top: 5px;font-size: .75em }
	.contents.cta a.cta-b {padding: 1em .25em;width: 287px;font-size: 1.13em;}
}
