@charset "UTF-8";
/********************************************************************************

common.css

********************************************************************************/
/*============================================================
 css変数
*============================================================*/
:root {
    --common-vh: 100vh;                         /* jsで変動 */

	--common-inner-max-width: 1128px;           /* 通常サイト幅 */
	--common-inner-max-width-wide: 1280px;      /* ワイドサイト幅 */
	--common-inner-max-width-sm: 848px;      /* スモールサイト幅 */
	--common-inner-padding: 24px;               /* 通常サイト幅内余白 */
	--common-inner-padding-wide: 24px;          /* ワイドサイト幅内余白 */

    --common-color-text: #382E2A;           /* 基本テキスト色 */
    --common-color-main: #4E3838;           /* メイン色 */
    --common-color-sub: #36B982;            /* サブ色 */
    --common-color-background1: #F0EFED;       /* 背景色1 */
    --common-color-background2: #FAFAFA;       /* 背景色2 */
    --common-color-background3: #EBEEE3;       /* 背景色3 */
    --common-color-accent: #FAA43F;            /* アクセント色 */
    --common-color-attention: #FF451D;      /* 注意色 */

    --common-font-family: 'Noto Sans JP', sans-serif;
    --common-font-family-en: 'Noto Sans JP', sans-serif;

    --common-header-height: 0;                  /* jsで変動 */
    --common-footer-height: 0;                  /* jsで変動 */
}

body {
    --inner-max-width: var(--common-inner-max-width);
    --inner-padding: var(--common-inner-padding);
}

/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
    display: inherit;
}
.forSP {
    display: none;
}

/*============================================================
 format
*============================================================*/
/* ベース
---------------------------------------- */
html {
    display: block;
    background-color: #fff;
}
body {
    width: 100%;
    font-family: var(--common-font-family);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 160%;
    color: var(--common-color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 0 0 0;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
::-webkit-scrollbar {
	display: none;
}
*[data-font="en"] {
    font-family: var(--common-font-family-en); 
}

body.page-lower {
    /* padding-top: var(--common-header-height); */
}

/* レイアウト
---------------------------------------- */
#main-contents {
    width: 100%;
	overflow: hidden;
}

/* コンテンツ内
---------------------------------------- */
.section {
    margin-bottom: 64px;
}
.section:last-child {
    margin-bottom: 0;
}
.section.margin-b {
	margin-bottom: 112px!important;
}

.inner {
    width: 100%;
    max-width: var(--inner-max-width);
    padding: 0 var(--inner-padding);
    margin: 0 auto;
}
main .inner > *:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}
main .inner > *:last-child {
    margin-bottom: 0;
}

main .block, main .inner .block {
    margin-bottom: 48px;
}
main .block:last-child {
    margin-bottom: 0;
}

main .block > *:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}
main .block > *:last-child {
    margin-bottom: 0;
}

.page-group {
    font-weight: bold;
}
h1.page-title {
    font-weight: bold;
    font-size: 40px;
    line-height: 180%;
}
h2.sec-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 160%;
    margin-bottom: 32px;
}
h3.block-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 16px;
}

p {}
img {
    max-width: 100%;
    height: auto;
}
svg {
    max-width: 100%;
    height: auto;    
}
span {
    font-weight: inherit;
}
a[href^="tel:"] {
    pointer-events: none;
}
strong {}
.attention {
    font-size: 12px;
    line-height: 160%;
    color: var(--common-color-attention);
}
.notice {
    font-size: 12px;
    line-height: 160%;
}
.list-date {
    font-size: 12px;
    line-height: 160%;
}

/*============================================================
 メインビジュアル(下層)
*============================================================*/
.page-lower #mainvisual {
	background: url(../images/common/lower-mainvisual-bg.jpg) no-repeat center center / cover;
    padding-top: calc( var(--common-header-height) + 32px);
	padding-bottom: 40px;
	color: #fff;
	margin-bottom: 80px;
}

/*============================================================
 パンくずリスト
*============================================================*/
/* TOPページでは非表示
---------------------------------------- */
#page-top #breadcrumb {
    display: none;
}

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin: 0 0 16px 0;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 12px;
	font-weight: 500;
    font-size: 16px;
    line-height: 160%;
}
#breadcrumb li {
	font-weight: 500;
}
#breadcrumb li a {
    text-decoration-line: underline;
}
/* セパレーター(テキストの場合) */
/*#breadcrumb li:not(:last-child)::after {
    content: "/";
    display: inline-block;
    margin-left: 8px;
}*/
/* セパレーター(画像の場合) */
#breadcrumb li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 24px;
    background-image: url(../images/common/icon-bread-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-left: 12px;
    vertical-align: text-bottom;
}



/*============================================================
 共通ブロック
*============================================================*/
/* 要素幅超スクロール
---------------------------------------- */
.block-wscroll {
    width: calc(100vw - ((100vw - 100%) / 2));
    overflow-x: auto;
}
.block-wscroll .block-wscroll-inner {
    width: max-content;
    padding: 0 var(--inner-padding) 16px 0;
}
.block-wscroll .block-wscroll-inner > * {
    width: auto;
    white-space: nowrap;
}

/* カード
---------------------------------------- */
.block-card {
	gap: 88px 92px;
}
.block-card .item {
	gap: 16px;
	margin-bottom: 0;
	width: 45%;
	margin-bottom: 0!important;
	transition: all .3s;
}
.block-card .item:before {
	top: auto;
	transform: none;
	bottom: 0;
}
.block-card .item:hover {
	opacity: 0.7;
}
.block-card .item .image {
	overflow: hidden;
	border-radius: 16px;
	width: 240px;
	margin-bottom: 0;
}
.block-card .item .info {
	width: calc(100% - 256px);
}
.block-card .item .info h2 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
}
.block-card .item .info p {
	color: #908B86;
	font-size: 14px;
	line-height: 1.6;
}

/* ブログ
---------------------------------------- */
.block-blog .item {
	gap: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #E3E3DA;
	margin-bottom: 16px!important;
	transition: all .3s;
}
.block-blog .item:hover {
	opacity: 0.7;
}
.block-blog .item .posted-date {
	width: 70px;
	font-size: 14px;
	margin-bottom: 0;
}
.block-blog .item .title {
	font-weight: bold;
	width: calc(100% - 126px);
}

/* ページ内リンクカード
---------------------------------------- */
.block-page-link {
	gap: 40px;
	flex-direction: column;
}
.block-page-link .item {
	padding: 24px;
	background: #fff;
    border-radius: 16px;
    overflow: hidden;
	transition: all .3s;
	border: 1px solid #DBDBDB;
	gap: 40px;
}
.block-page-link .item:hover {
	opacity: 0.7;
}
.block-page-link .item-image {
	width: 160px;
	height: 160px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 0!important;
}
.block-page-link .item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block-page-link .item-info {
	width: calc(100% - 200px);
	text-align: left;
}
.block-page-link .item-info h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.8;
	margin-bottom: 16px;
	color: #3F3535;
}
.block-page-link .item-info p {
	font-size: 14px;
	color: #B4B4B4;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/* 下層ページ 共通ブロック
---------------------------------------- */
.page-lower .section {
	margin-bottom: 80px;
}
.page-lower .section:last-child {
	margin-bottom: 0;
}
/* 余白調整 */
.page-lower .section * {
	margin-bottom: 40px;
}
.page-lower .space-short-wrap.size-16 > * {
	margin-bottom: 16px;
}
.page-lower .space-short-wrap.size-24 > * {
	margin-bottom: 24px;
}
.page-lower .space-short-wrap.size-32 > * {
	margin-bottom: 32px;
}
.page-lower .section *:last-child {
	margin-bottom: 0;
}
.page-lower .section .block {
	margin-bottom: 40px;
}
.page-lower .section .block:last-child {
	margin-bottom: 0;
}
/* 共通 */
.page-lower .section span.accent {
	color: var(--common-color-sub);
	font-weight: bold;
}
.page-lower .section a.text-in-link {
	color: #908B86;
	text-decoration: underline;
}
.page-lower .section .parts-btn {
	margin: 0;
}
/* リスト */
.page-lower .section ul.disc {
	background: var(--common-color-background2);
	border-radius: 16px;
	padding: 24px 32px;
}
.page-lower .section ul.disc li {
	position: relative;
	font-size: 18px;
	list-style-type: disc;
	margin-bottom: 16px;
}
.page-lower .section ul.disc li:last-child {
	margin-bottom: 0;
}
.page-lower .section ul.disc li::marker {
	color: var(--common-color-sub);
}
.page-lower .section ol.decimal {
	background: var(--common-color-background2);
	border-radius: 16px;
	padding: 24px 32px;
}
.page-lower .section ol.decimal li {
	list-style-type: decimal;
	font-size: 18px;
	margin-bottom: 16px;
}
.page-lower .section ol.decimal li:last-child {
	margin-bottom: 0;
}
.page-lower .section ol.decimal li::marker {
	color: var(--common-color-sub);
}
.page-lower .section ul.disc.parts-boxes {
	gap: 72px;
}
.page-lower .section ul.disc.parts-boxes > * {
	margin-bottom: 0;
}
/* 注釈 */
.page-lower .section .note-block {
	gap: 14px;
	align-items: center;
}
.page-lower .section .note-block .tag {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 0;
	color: var(--common-color-sub);
	border-radius: 8px;
	border: 1px solid var(--common-color-sub);
	line-height: 1.2;
	padding: 6px;
}
.page-lower .section .note-block .text {
	font-size: 16px;
	color: #908B86;
}
.page-lower .section .note-text {
	font-size: 12px;
	color: #908B86;
}
/* 表 */
.page-lower .section dl.data > div {
	padding-bottom: 15px;
	margin-bottom: 24px;
	border-bottom: 1px solid #999999;
}
.page-lower .section dl.data > div:last-child {
	margin-bottom: 0;
}
.page-lower .section dl.data dt {
	float: left;
	font-weight: bold;
	width: 112px;
	margin-bottom: 0;
}
.page-lower .section dl.data dd {
	margin-left: 128px;
}
.page-lower .section dl.data.dt-200 dt {
	width: 200px;
}
.page-lower .section dl.data.dt-200 dd {
	margin-left: 200px;
}
.page-lower .section dl.data.dt-300 dt {
	width: 300px;
}
.page-lower .section dl.data.dt-300 dd {
	margin-left: 300px;
}
.page-lower .section dl.data dd.num {
	text-align: center;
	color: var(--common-color-sub);
	font-weight: bold;
	font-size: 32px;
}
.page-lower .section dl.data dd.num .unit {
	font-size: 16px;
}
/* リスト折り返し */
.page-lower .section .overflow-wrap {
	gap: 16px 48px;
}
.page-lower .section .overflow-wrap .item {
	gap: 8px;
	align-items: center;
	margin-bottom: 0;
}
.page-lower .section .overflow-wrap .item .icon {
	width: 40px;
	margin-bottom: 0;
}
.page-lower .section .overflow-wrap .item .text {
	font-weight: bold;
}
/* リードブロック */
.page-lower .lead-block {
	margin-bottom: 56px;
}
.page-lower .lead-block h2 {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.8;
	text-align: center;
	position: relative;
	margin-bottom: 48px;
}
.page-lower .lead-block h2:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 1px;
	background-color: var(--common-color-sub);
	left: 50%;
	transform: translatex(-50%);
	bottom: -16px;
}
.page-lower .lead-block h2 + * {
}
/* 基本ブロック 画像＋文章 */
.page-lower .basic-block {
	gap: 64px;
	justify-content: center;
}
.page-lower .basic-block .image {
	width: 37%;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 0;
}
.page-lower .basic-block .info {
	width: 57%;
	margin-bottom: 0;
}
.page-lower .basic-block .info h3 {
	margin-bottom: 16px;
}
/* スタイル付きリスト */
.page-lower .list-block .row {
	gap: 56px;
	justify-content: center;
}
.page-lower .list-block .item {
	text-align: center;
	margin-bottom: 0;
}
.page-lower .list-block .item .image {
	width: 184px;
	margin: 0 auto 24px;
}
.page-lower .list-block .item .info .title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 4px;
}
.page-lower .list-block .item .info .text {
	text-align: left;
}
.page-lower .list-block .item .info > *:last-child {
	margin-bottom: 0;
}
/* スタイル付きリスト パターン1 */
.page-lower .list-block.style-1 .item {
	width: 228px;
}
.page-lower .list-block.style-1 .item .image {
	position: relative;
}
.page-lower .list-block.style-1 .item .image:before {
	content: "";
	position: absolute;
	background: url(../images/common/lower-list-arrow.svg) no-repeat center center / contain;
	width: 24px;
	height: 16px;
	top: 50%;
	transform: translatey(-50%);
	left: -60px;
}
.page-lower .list-block.style-1 .item:first-child .image:before {
	display: none;
}
/* スタイル付きリスト パターン2 */
.page-lower .list-block.style-2 .row {
	gap: 16px;
}
.page-lower .list-block.style-2 .item {
	width: 240px;
}
/* スタイル付きリスト パターン3 */
.page-lower .list-block.style-3 .row {
	flex-direction: column;
	gap: 40px;
}
.page-lower .list-block.style-3 .item {
	text-align: left;
	gap: 32px;
	width: 100%;
}
.page-lower .list-block.style-3 .item .label {
	width: 128px;
	margin-bottom: 0;
}
.page-lower .list-block.style-3 .item .label p {
	border-radius: 42px;
	font-weight: bold;
	background: var(--common-color-sub);
	color: #fff;
	text-align: center;
	line-height: 1.6;
	padding: 8px;
}
.page-lower .list-block.style-3 .item .info {
	width: calc(100% - 160px);
}
.page-lower .list-block.style-3 .item .info .h3-title {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 16px;
}
.page-lower .list-block.style-3 .item .info *:last-child {
	margin-bottom: 0;
}
/* CTAブロック */
.page-lower .cta-block {
	text-align: center;
}
.page-lower .cta-block .label {
	margin-bottom: 32px;
}
.page-lower .cta-block .label p {
	display: inline-block;
	font-weight: bold;
	border-radius: 42px;
	background: var(--common-color-sub);
	padding: 8px 24px;
	color: #fff;
}
.page-lower .cta-block .info p {
	font-size: 32px;
	line-height: 1.6;
	font-weight: bold;
	color: var(--common-color-sub);
}
/* 画像ブロック 1カラム */
.page-lower .image-1col img {
	margin-bottom: 16px;
	border-radius: 16px;
	overflow: hidden;
}
.page-lower .image-1col .caption {
	color: #B4B4B4;
	font-size: 14px;
}
.page-lower .image-1col *:last-child {
	margin-bottom: 0;
}
/* 画像ブロック 2カラム */
.page-lower .image-2col {
	gap: 40px;
	justify-content: center;
}
.page-lower .image-2col .item {
	width: 48%;
	margin-bottom: 0;
}
.page-lower .image-2col .item img {
	border-radius: 16px;
	overflow: hidden;
}
/* TIPSブロック */
.page-lower .tips-block {
	gap: 64px;
}
.page-lower .tips-block .image {
	width: 224px;
	margin-bottom: 0;
}
.page-lower .tips-block .info {
	width: calc(100% - 308px);
}
.page-lower .tips-block .info .title {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.6;
	padding-left: 50px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--common-color-sub);
	position: relative;
	margin-bottom: 16px;
}
.page-lower .tips-block .info .title:before {
	content: "";
	position: absolute;
	width: 38px;
	height: 38px;
	background: url(../images/common/lower-tips-icon.svg) no-repeat center center / contain;
	left: 0;
	top: 0;
}
/* タブブロック */
.page-lower .tab-block .tab-area {
	display: flex;
	border-bottom: 1px solid #212121;
	cursor: pointer;
}
.page-lower .tab-block .tab {
	width: 50%;
	text-align: center;
	padding: 16px 0 30px;
	margin-bottom: 0;
}
.page-lower .tab-block .tab p {
	color: #B3B3B3;
	font-weight: bold;
	font-size: 20px;
}
.page-lower .tab-block .tab.active {
	border-bottom: 4px solid var(--common-color-sub);
}
.page-lower .tab-block .tab.active p {
	color: var(--common-color-sub);
}
.page-lower .tab-block .panel {
	display: none;
}
.page-lower .tab-block .panel.active {
	display: block;
}
/* 背景グレーブロック */
.page-lower .bg-grey-block {
	border-radius: 16px;
	padding: 24px 36px 32px;
	background: var(--common-color-background2);
}
.page-lower .bg-grey-block .block-title {
	text-align: center;
}
.page-lower .bg-grey-block .block-title p {
	font-size: 24px;
	font-weight: bold;
	display: inline-block;
	line-height: 1.6;
	position: relative;
}
.page-lower .bg-grey-block .block-title p:before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	bottom: -7px;
	width: 100%;
	height: 2px;
	background: var(--common-color-sub);
}
.page-lower .bg-grey-block .block-title.grey-line p:before  {
	background: #908B86;
}
.page-lower .bg-grey-block ul.disc {
	padding: 0 16px;
}
.page-lower .bg-grey-block ol.decimal {
	padding: 0 16px;
}
/* view moreボタン */
.page-lower .view-more-button {
	width: 190px;
	margin: 0 auto!important;
}
.page-lower .view-more-button span {
	position: relative;
	padding-left: 32px;
	width: initial;
}
.page-lower .view-more-button span:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-dot.svg) no-repeat center center / contain;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translatey(-50%);
	left: 0;
}
.page-lower .view-more-button:hover span:before {
	background: url(../images/common/icon-dot-brown.svg) no-repeat center center / contain;
}
.page-lower .infinite-scroll-request {
	text-align: center;
	margin-top: 24px;
}
/* 詳細ページ */
.page-lower.single #sec-post .inner * {
	margin-top: 24px;
	margin-bottom: 24px;
}
.page-lower.single #sec-post .inner h2 {
	font-size: 32px;
	font-weight: bold;
	line-height: 1.6;
	margin-top: 48px;
}
.page-lower.single #sec-post .inner h3 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.6;
	margin-top: 32px;
}
.page-lower.single #sec-post .inner img {
	display: block;
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
}

/*============================================================
 モーダルカスタム(Modaal.js)
 ※z-index指定　ヘッダー < .modaal-overlay < .modaal-wrapper
*============================================================*/
.modaal-wrapper {
    z-index: 999999;
}
.modaal-overlay {
    z-index: 99999;
}


/*============================================================
 ページング
*============================================================*/
/* bones_page_navi使用時
---------------------------------------- */
.pagination {
    margin-top: 80px;
}
.pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto;
    gap: 8px;
}
.pagination .page-numbers li > * {
    display: block;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 32px;
    text-align: center;
}
.pagination .page-numbers li > a {
    background-color: #F5F5F5;
    border-radius: 2px;
}
.pagination .page-numbers li > .current {
    background-color: transparent;
    font-weight: bold;
}
.pagination .page-numbers li > a.prev,
.pagination .page-numbers li > a.next {
    padding: 8px;
    background-color: #000;
    color: #fff;
}
.pagination .page-numbers li > *.page-numbers.dots {
    background-color: transparent;
}

/*============================================================
 記事本文ブロック
*============================================================*/
/* 見出し
---------------------------------------- */
.block-post-content h2 {
}
.block-post-content h3 {    
}

/* 箇条書きリスト
---------------------------------------- */
.block-post-content ul {
    list-style-type: disc;
    margin-left: 1em;
    margin-bottom: 16px;
}
.block-post-content ul li {
    list-style-type: disc;
    margin-left: 0.6em;
}
/* 連番リスト
---------------------------------------- */
.block-post-content ol {
    list-style: decimal;
    margin-left: 0.6em;
    margin-bottom: 16px;
}
.block-post-content ol li {
    list-style: decimal;
    padding-left: 0.4em;
    margin-left: 0.6em;
}
/* 段落
---------------------------------------- */
.block-post-content p {
    margin-bottom: 16px;
}
.block-post-content a {
    text-decoration: underline;
}
.block-post-content strong {
    font-weight: bold;
}
/* 画像
---------------------------------------- */
.block-post-content figure {    
    margin-bottom: 16px;
}
.block-post-content figure figcaption { 
    font-size: 12px;
    line-height: 140%;
    color: var(--common-color-notice);
    margin: 8px 0 0 0;
}

/* 余白調整
---------------------------------------- */
.block-post-content .inner > *:first-child {
    margin-top: 0;
}

/*============================================================
 診療案内（下層ページ共通）
*============================================================*/
#dental-menu-link {
	padding: 64px 0;
	background: #F0EFED;
}
#dental-menu-link .sec-title {
	text-align: center;
	margin-bottom: 64px;
}


/*============================================================
 CTA
*============================================================*/
/* お問い合わせ
---------------------------------------- */
#cta-contact {
    padding: 48px 0;
}
#cta-contact .sec-title {
    text-align: center;
}
#cta-contact .parts-btn {
    margin: 0 auto;
}

/*============================================================
 目次
*============================================================*/
#toc_container {
	border-radius: 16px;
	padding: 24px 16px;
	background: var(--common-color-background2);
	margin-bottom: 80px!important;
	margin-top: 40px!important;
}
#toc_container .toc_title {
	margin: 0!important;
	font-size: 12px;
	color: var(--common-color-main);
	padding-bottom: 8px;
	border-bottom: 1px solid #DBDBDB;
}
#toc_container ul {
	margin-left: 0;
	margin-bottom: 0!important;
}
#toc_container ul li {
	list-style: none;
	margin-left: 0;
}
#toc_container ul li:last-child {
	margin-bottom: 0!important;
}
#toc_container ul li a {
	font-size: 18px;
	color: var(--common-color-sub);
}

/*============================================================
 サイト内検索フォーム
*============================================================*/
#searchform > div > * {
    vertical-align: middle;
}

/*============================================================
 サイト内検索結果
*============================================================*/
/* 結果リスト
---------------------------------------- */
#page-search #sec-search-results {
    padding: 80px 0;
}
/* 検索結果数 */
#page-search #sec-search-results .total-cnt {
    margin-bottom: 40px;
}
/* リスト */
#page-search #sec-search-results .block-search-results {
    flex-direction: column;
    gap: 32px;
}
#page-search #sec-search-results .block-search-results .item {
}
#page-search #sec-search-results .block-search-results .item .title {
    font-weight: bold;
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 8px;
}
#page-search #sec-search-results .block-search-results .item .lead {
}

/*============================================================
 システムエラー　404
*============================================================*/
#page-system-error #sec-system-error {
    height: max(600px, calc(var(--common-vh) - var(--common-footer-height) - 64px));
    padding: 200px 0 0 0;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
}

#page-system-error #sec-system-error .system-error-num {
    font-weight: 900;
    font-size: 120px;
    line-height: 100%;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-sts {
    font-weight: bold;
    font-size: 32px;
    line-height: 180%;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-lead {
    margin-bottom: 56px;
}
#page-system-error #sec-system-error .parts-btn {
    margin: 0 auto;
}

/*============================================================
 追従CTA
*============================================================*/
#fixed-cta {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 390px;
	z-index: 1000;
	font-family: "Noto Serif JP", serif;
}
#fixed-cta .tel {
	background: #E3E3E3;
	width: 220px;
	justify-content: center;
	align-items: end;
	padding: 8px 0 11px 0;
	gap: 6px;
}
#fixed-cta .tel .info p {
	letter-spacing: 0.08em;
	font-weight: bold;
}
#fixed-cta .msg {
	width: 85px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	padding: 8px 0;
}
#fixed-cta .msg p {
	line-height: 1.2;
}
#fixed-cta .msg01 {
	background: #5F8F7B;
}
#fixed-cta .msg02 {
	background: #75726F;
}

/*============================================================
 電話ブロック
*============================================================*/
#tel-block .number {
	gap: 6px;
	align-items: center;
	margin-bottom: 2px;
}
#tel-block .text {
	font-size: 10px;
	text-align: right;
	line-height: 1.2;
	letter-spacing: 0.08em;
}



/*============================================================
 footer
*============================================================*/
#site-footer {
	min-height: 368px;
	padding: 72px 0 48px;
	background: url(../images/common/footer-bg.jpg) no-repeat center center / cover;
}

#site-footer .inner {
	max-width: 1159px;
}

#site-footer .block {
	gap: 40px;
	margin-bottom: 24px;
}

/* ロゴ
---------------------------------------- */
#site-footer .block .flogo {
	width: 365px;
}
#site-footer .block .flogo p {
	text-align: right;
	font-family: "Noto Serif JP", serif;
	font-size: 18px;
	color: #908B86;
	margin-top: 8px;
}

/* アクセス
---------------------------------------- */
#site-footer .block .access {
	width: 324px;
	padding-top: 10px;
}
#site-footer .block .access .address {
	font-size: 12px;
	margin-bottom: 20px;
}
#site-footer .block .access .tel {
	max-width: 276px;
}
#site-footer .block .access .tel a img {
	width: 211px;
}

/* スケジュール
---------------------------------------- */
#site-footer .block .schedule {
	width: 342px;
}


/* Copyright
---------------------------------------- */
#site-footer #copyright {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
}


/*============================================================
 共通セクション 一般的なリスクや副作用
*============================================================*/
#sec-attention-remedy .block-title.grey-line {
	margin-bottom: 32px;
}
#sec-attention-remedy .bg-grey-block .block-title p {
	font-size: 16px;
	display: block;
}
#sec-attention-remedy .bg-grey-block .block-title.grey-line p:before{
	height: 1px;
}
#sec-attention-remedy ol.decimal li {
	list-style: decimal-leading-zero;
	font-size: 14px;
	color: #908B86;
}
#sec-attention-remedy ol.decimal li::marker {
	color: #908B86;	
}
#sec-attention-remedy {
	
}