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

common.css

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

	--common-inner-max-width: 1128px;           /* 通常サイト幅 */
	--common-inner-max-width-wide: 1280px;      /* ワイドサイト幅 */
	--common-inner-padding: 24px;               /* 通常サイト幅内余白 */
	--common-inner-padding-wide: 32px;          /* ワイドサイト幅内余白 */

    --common-color-text: #3F3535;				/* 基本テキスト色 */
    --common-color-main: #988268;           	/* メイン色 */
	--common-color-sub: #53483D;            /* サブ色 */
    --common-color-background1: #F8F7F3;       /* 背景色1 */
    --common-color-white: #fff;      			/* 白 */
    --common-color-black: #3F3535;      		/* 黒 */
    --common-color-notice: #908B86;      /* 注釈色 */


	/* --common-color-sub: #181818;            /* サブ色 */
    /* --common-color-background2: #F8F7F3;       /* 背景色2 */
    /* --common-color-background3: #7B6A64;       /* 背景色3 */
    /* --common-color-accent: #FAA43F;            /* アクセント色 */
    /* --common-color-attention: #D93838;      /* 注意色 */
    /* --common-color-attention-bg: #FFF5F5;   /* 注意色(背景用) */


    --common-font-family: "Noto Serif JP", 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: var(--common-color-white);
}
body {
    width: 100%;
    font-family: var(--common-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--common-color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 0 0 0;
	position: relative;
}
/* *[data-font="en"] {
    font-family: var(--common-font-family-en); 
} */
/*::-webkit-scrollbar {
	display: none;
}*/

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

/* レイアウト
---------------------------------------- */
#main-contents {
    width: 100%;
    padding-bottom: 112px;
}
body:has(#footer-fixed-cta):not(.footer-fixed-cta-close) #main-contents {
	padding-bottom: 196px;
}



/* コンテンツ内
---------------------------------------- */
.section {
    margin-bottom: 80px;
}
.section:last-child {
    margin-bottom: 0;
}

.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: 40px;
}
main .inner > *:last-child {
    margin-bottom: 0;
}

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

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

.page-group {
    font-weight: 500;
}
h1.page-title {
    font-weight: 500;
    font-size: 56px;
    line-height: 160%;
}
h2.sec-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 160%;
    margin-bottom: 24px;
}
h3.block-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 160%;
    margin-bottom: 16px;
}

p {}
img {
    max-width: 100%;
    height: auto;
}
svg {
    max-width: 100%;
    height: auto;    
}
iframe {
	width: 100%;
}
span {
    font-weight: inherit;
}
span.br {
	display: inline-block;
}
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%;
    color: var(--common-color-notice);
}

/*============================================================
 メインビジュアル(下層)
*============================================================*/


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

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin-bottom: 8px;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
	font-weight: 500;
    font-size: 16px;
}
#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: 24px;
    height: 100%;
    background-image: url(../images/common/icon-bread-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px auto;
    margin-left: 8px;
    vertical-align: text-bottom;
} */


/*============================================================
 共通ブロック
*============================================================*/
/* 要素幅超スクロール
---------------------------------------- */
.block-wscroll {
    width: calc(var(--common-vw) - ((var(--common-vw) - 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: 32px;
    --col: 3;
    gap: var(--gap);
}
.block-card .item {
    display: block;
    width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 20%);
}
.block-card .item .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.block-card .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: .3s ease-in-out;
}
.block-card .item:hover .image img {
    transform: scale(1.2);
}
.block-card .item .info {
    padding: 16px;
}

/* お知らせ
---------------------------------------- */
.block-news .item {
	display: block;
	width: 100%;
	padding: 16px 16px 16px 0;
	border-bottom: 1px solid #E3E3DA;
	transition: all .3s;
}
.block-news .item:hover {
	opacity: 0.7;
}
.block-news .item .info {
	gap: 24px;
}
.block-news .item .info .posted-date {
	width: 80px;
	font-size: 14px;
}
.block-news .item .info .title {
	flex: 1;
	padding-right: 28px;
	background-image: url(../images/common/icon-link-arrow.svg);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: 20px auto;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 0;
	--line: 1;
}

/* ブログ
---------------------------------------- */
.block-blog {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.block-blog .item {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 24px;
	transition: all .3s;
}
.block-blog .item:hover {
	opacity: 0.7;
}
.block-blog .item .image {
	width: 38%;
	aspect-ratio: 5 / 4;
	overflow: hidden;
}
.block-blog .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block-blog .item .info {
	flex: 1;
	height: 100%;
	background-image: url(../images/common/icon-link-arrow.svg);
	background-repeat: no-repeat;
	background-position: bottom 4px right;
	background-size: 16px auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.block-blog .item .info .summary {
	flex: 1;
}
.block-blog .item .info .summary .title {
	font-size: 20px;
	color: var(--common-color-main);
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 16px;
}
.block-blog .item .info .summary .excerpt {
	margin-bottom: 16px;
	font-size: 14px;
	color: #5F5959;
	--line: 3;
}
.block-blog .item .info .meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.block-blog .item .info .cat {
	line-height: 1;
}
.block-blog .item .info .cat p {
	font-size: 10px;
	color: #fff;
	display: inline-block;
	padding: 6px 16px;
	background: var(--common-color-main);
	border-radius: 2px;
}
.block-blog .item .info .posted-date {
	font-size: 10px;
	color: #939393;
}

/*============================================================
 ページング
*============================================================*/
/* 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: #EFEAE0;
    border-radius: 2px;
	color: var(--common-color-text);
}
.pagination .page-numbers li > .current {
    background-color: transparent;
    font-weight: bold;
	color: var(--common-color-main);
}
.pagination .page-numbers li > a.prev,
.pagination .page-numbers li > a.next {
    padding: 8px;
    background-color: var(--common-color-main);
    color: #fff;
}
.pagination .page-numbers li > *.page-numbers.dots {
    background-color: transparent;
	color: var(--common-color-main);
}

/*============================================================
 記事本文ブロック
*============================================================*/
/* 見出し
---------------------------------------- */
.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: 1em;
}
/* 段落
---------------------------------------- */
.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;
}

/* テーブル
---------------------------------------- */
.block-post-content .wp-block-table:not([class*="pattern"]) table {
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}
.block-post-content .wp-block-table:not([class*="pattern"]) table th,
.block-post-content .wp-block-table:not([class*="pattern"]) table td {
	line-height: 1.4;
	color: var(--common-color-main);
	padding: 11px;
	text-align: left;
	font-size: 18px;
	font-weight: 500;
	border: none;
}
.block-post-content .wp-block-table:not([class*="pattern"]) table td:first-child {
	/*width: 188px;*/
	font-weight:500;
	font-size: 16px;
	/*background: #FBF9F1;*/
	line-height: 1.4;
	padding: 17px 20px;
	/*text-align: center;*/
}
.block-post-content .wp-block-table:not([class*="pattern"]) table tr {
	border-bottom: 1px solid #D3C8BD;
}
.block-post-content .wp-block-table:not([class*="pattern"]) table tr:first-child {
	border-bottom: 2px solid #D3C8BD;
}
.block-post-content .wp-block-table:not([class*="pattern"]) table tr:first-child td {
	background: #FBF9F1;
	padding: 8px;
	text-align: center!important;
	font-size: 20px;
	font-weight: 500;
}
.block-post-content .wp-block-table:not([class*="pattern"]) table tr:last-child {
	border-bottom: none;
}
.block-post-content .has-text-align-left {
	text-align: left!important;
}
.block-post-content .has-text-align-center {
	text-align: center!important;
}
.block-post-content .has-text-align-right {
	text-align: right!important;
}

/* グループ
---------------------------------------- */
.block-post-content :where(.is-layout-flex) {
	gap: 16px;
}
.block-post-content .wp-block-group p:first-child {
	font-size: 24px;
	width: 100%;
	text-align: center;
	color: var(--common-color-main);
	border-bottom: 1px solid var(--common-color-main);
	margin-bottom: 0;
	padding-bottom: 12px;
}


/*============================================================
 リンクホバー時矢印
*============================================================*/
/* →アニメーションリンク改良版
---------------------------------------- */
/* aタグに設置するclass */
.link-arrow-anim {
	--arrow-max: 222px;	/* 画像の最大幅 */
}
/* position設定が必要な時に使用(カードの中とか) */
.arrow-anim-wrap {
	position: absolute;
	bottom: 0;
	right: 0;
}
/* 複数横並び */
.arrow-anim-wrap-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 80px;
}

/* 本体 */
.link-arrow-anim .arrow-anim {
	width: 122px;	/* 表示する幅（一番利用の多い幅を設定） */
	height: 6px;
	overflow: hidden;
	position: relative;
}
.link-arrow-anim .arrow-anim::after {
	display: block;
	content: "";
	width: var(--arrow-max);
	height: 6px;
	background-image: url(../images/common/icon-arrow-anim.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: var(--arrow-max) auto;
	position: absolute;
	top: 0;
	right: 0;
}
.link-arrow-anim:hover .arrow-anim::after {
	animation: arrow-anim .8s ease-in-out forwards;
}
@keyframes arrow-anim {
  0% {right: 90%;}
  100% {right: 0;}
}

/* オプション（右寄せ） */
.link-arrow-anim[data-right],
.link-arrow-anim [data-right] {
	display: block;
	width: fit-content;
	margin-left: auto;
}
/* オプション（矢印最大） */
.link-arrow-anim .arrow-anim[data-long] {
	width: var(--arrow-max);
}
/* オプション（矢印白） */
.link-arrow-anim .arrow-anim-label:has(.arrow-anim[data-white])::before {
	color: var(--common-color-white);
}
.link-arrow-anim .arrow-anim[data-white]::after {
	background-image: url(../images/common/icon-arrow-anim-white.svg);
}
/* オプション（ラベルとセット） */
.link-arrow-anim .arrow-anim-label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 28px;
	width: fit-content;
}
.link-arrow-anim .arrow-anim-label[data-label]::before {
	display: block;
	content: attr(data-label);
	color: var(--common-color-main);
}
/* オプション（ラベルとセット（縦積み）） */
.link-arrow-anim .arrow-anim-label[data-col] {
	flex-direction: column;
    align-items: unset;
    font-size: 14px;
}
.link-arrow-anim .arrow-anim-label[data-col] .arrow-anim {
    width: 90px;
}
/* オプション（ラベルとセット（両端）） */
.link-arrow-anim .arrow-anim-label[data-between] {
	width: 100%;
	justify-content: space-between;
}


/*============================================================
 CTA
*============================================================*/
/* 
---------------------------------------- */

/*============================================================
 サイト内検索フォーム
*============================================================*/
#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;
}

/*============================================================
 詳細ページ外部リンク導入部品
*============================================================*/
.single #sec-conductor .inner {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.single #sec-conductor .outer-link {
	gap: 64px;
}
.single #sec-conductor .outer-link .copy {
	gap: 32px;
}
.single #sec-conductor .outer-link .copy .url-copy-clipbord {
	cursor: pointer;
}
.single #sec-conductor .outer-link .copy p {
	font-weight: 500;
}
.single #sec-conductor .outer-link .sns {
	gap: 24px;
	position: relative;
}
.single #sec-conductor .outer-link .sns:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 24px;
	background: #D2D2D2;
	top: 50%;
	transform: translatey(-50%);
	left: -32px;
}

/*============================================================
 クリップボードコピー用メッセージ
*============================================================*/
#clipbord-msg {
    width: 100%;
    position: fixed;
    bottom: -190px;
    left: 0;
    z-index: 999999;
	-webkit-transition: bottom 0.5s;
    transition: bottom 0.5s;
}
#clipbord-msg .msg {
    width: fit-content;
    padding: 12px 32px;
	background: #333;
    border-radius: 100px;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 auto;
}
#clipbord-msg.copySuccess,
#clipbord-msg.copyError {
    bottom: 56px;
}

/*============================================================
 目次
*============================================================*/
div#ez-toc-container {
	padding: 24px;
	background: #FBFBFB;
	border: none;
	border-radius: 0;
	margin-bottom: 56px;
}
.ez-toc-title-container {
	padding-bottom: 12px;
	line-height: 1;
	border-bottom: 1px solid #DBDBDB;
	margin-bottom: 16px;
}
div#ez-toc-container .ez-toc-title {
	font-size: 12px;
	color: #B4B4B4;
}
div#ez-toc-container ul {
	margin-top: 8px;
}
div#ez-toc-container ul li {
	font-size: 16px;
	margin-bottom: 8px;
}
div#ez-toc-container ul li:last-child {
	margin-bottom: 0;
}
div#ez-toc-container nav ul ul li {
	font-size: 14px;
}
div#ez-toc-container ul.ez-toc-list a {
	color: var(--common-color-main);
}
div#ez-toc-container ul.ez-toc-list a:visited {
	color: var(--common-color-main);
}

/*============================================================
 footer
*============================================================*/
/* 画面下吸着CTA
---------------------------------------- */
#footer-fixed-cta {
	display: none;
	background: var(--common-color-main);
	color: #fff;
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999;
}
#footer-fixed-cta .close {
	cursor: pointer;
	position: absolute;
	top: -48px;
	right: 0;
	width: 48px;
	height: 48px;
	background: rgba(19,18,17,0.4);
	text-align: center;
	padding: 16px 0;
	margin: 0 0 0 auto;
}
#footer-fixed-cta .inner {
	max-width: 1408px;
}
#footer-fixed-cta .block {
	padding: 20px 0;
	gap: 30px;
}
#footer-fixed-cta .block .text {
	width: calc(100% - 473px);
}
#footer-fixed-cta .block .contact {
	width: 443px;
	gap: 20px;
}
#footer-fixed-cta .block .contact .parts-btn {
	margin: 0;
}
#footer-fixed-cta .block .contact .tel.forPC {
	display: block;
}
#footer-fixed-cta .block .contact .tel > a {
	font-size: 24px;
	font-weight: 600;
	display: block;
	text-align: center;
	line-height: 1.5;
}
#footer-fixed-cta .block .contact .tel p {
	font-size: 10px;
	text-align: center;
}

/* ブログ詳細用CTA
---------------------------------------- */
#footer-cta-special {
	padding: 80px 0;
	background-image: url(../images/common/footer-cta-special-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	color: var(--common-color-white);
	text-align: center;
}
#footer-cta-special::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(34, 34, 34, 0.50);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#footer-cta-special .inner {
	position: relative;
	z-index: 2;
}
#footer-cta-special .title {
	margin-bottom: 64px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
#footer-cta-special .title::before,
#footer-cta-special .title::after {
	display: block;
	content: "";
	height: 1px;
	background-color: var(--common-color-white);
	flex: 1;
}
#footer-cta-special .block-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 112px;
}
#footer-cta-special .block-list .block {
}
#footer-cta-special .block-list .block .catch {
	margin-bottom: 22px;
}
#footer-cta-special .block-list .block .lead {
	margin-bottom: 28px;
	text-align: left;
}
#footer-cta-special .block-list .block .change {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 64px 124px;
}
#footer-cta-special .block-list .block .change .label {
	font-weight: bold;
	font-size: 20px;
	line-height: 140%;
	margin-bottom: 6px;
}
#footer-cta-special .block-list .block .change .treatment {
	padding: 48px 56px;
}
#footer-cta-special .block-list .block .change .item-old {
	position: relative;
}
#footer-cta-special .block-list .block .change .item-old::after {
	display: block;
	content: "";
	width: 24px;
	height: 16px;
	background-image: url(../images/common/footer-cta-special-arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px auto;
	position: absolute;
	top: 90px;
	left: calc(100% + 48px);
}
#footer-cta-special .block-list .block .change .item-old .label {
	color: #D1CDCD;
}
#footer-cta-special .block-list .block .change .item-old .treatment {
	color: #817971;
	background-color: rgba(251, 249, 241, 0.70);;
}
#footer-cta-special .block-list .block .change .item-old .label {
	color: #D1CDCD;
}
#footer-cta-special .block-list .block .change .item-old .treatment {
	background-color: rgba(251, 249, 241, 0.70);
	font-weight: bold;
	font-size: 24px;
	line-height: 140%;
	color: #817971;
}
#footer-cta-special .block-list .block .change .item-new .label {
	color: #fff;
}
#footer-cta-special .block-list .block .change .item-new .treatment {
	background-color: rgba(255, 255, 255, 0.88);
	font-weight: bold;
	font-size: 32px;
	line-height: 140%;
	color: #A3774B;
}
#footer-cta-special .block-list .block .contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px 56px;
}
#footer-cta-special .block-list .block .contact .parts-btn {
	margin: 0;
}
#footer-cta-special .block-list .block .contact .tel .num {
	font-weight: 600;
	font-size: 36px;
	line-height: 120%;
}
#footer-cta-special .block-list .block .contact .tel .info {
	font-weight: 500;
	font-size: 12px;
	line-height: 180%;
}


/* 共通
---------------------------------------- */
#site-footer {
}

#site-footer .footer-bg-texture {
	background-image: url(../images/common/texture.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

}

/* CTA（ブログ詳細ページ以外） */
#site-footer #footer-cta {
	padding: 64px 0 74px 0;
}
#site-footer #footer-cta .layout {
	display: flex;
	flex-wrap: wrap;
	gap: 48px 100px;
}
#site-footer #footer-cta .layout .info {
	max-width: 592px;
}
#site-footer #footer-cta .layout .info .catch {
	font-weight: 600;
	font-size: 40px;
	line-height: 140%;
	margin-bottom: 10px;
	color: var(--common-color-main);
}
#site-footer #footer-cta .layout .info .lead {
	font-size: 16px;
	line-height: 200%;
	margin-bottom: 24px;
}
#site-footer #footer-cta .layout .info .parts-btn {
	margin: 0;
}
#site-footer #footer-cta .layout .clinic-list {
	width: fit-content;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
#site-footer #footer-cta .layout .clinic-list .clinic {
	display: block;
}
#site-footer #footer-cta .layout .clinic-list .clinic .name {
	font-weight: bold;
	font-size: 16px;
	line-height: 200%;
	letter-spacing: 0.08em;
}
#site-footer #footer-cta .layout .clinic-list .clinic .tel {
	font-weight: bold;
	font-size: 40px;
	line-height: 100%;
	color: var(--common-color-main);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}
#site-footer #footer-cta .layout .clinic-list .clinic .tel::before {
	display: block;
	content: "";
	width: 36px;
	height: 36px;
	background-image: url(../images/common/icon-tel-L.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 36px auto;
}
#site-footer #footer-cta .layout .clinic-list .clinic .info {
	font-weight: 500;
	font-size: 12px;
	line-height: 180%;
	color: var(--common-color-main);
}

/* 全ページ共通 */
#site-footer #footer {
    padding: 40px 0;
	background-color: #53483D;
	opacity: 0.8;
	mix-blend-mode: multiply;
	color: #fff;
}
#site-footer #footer .logo {
	text-align: center;
	margin-bottom: 40px;
}
#site-footer #footer .menu-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px 32px;
	margin-bottom: 40px;
}
#site-footer #footer .menu-list li {
	font-weight: 500;
	font-size: 18px;
	line-height: 160%;
}
#site-footer #footer .menu-list li a:hover {
    opacity: 0.7;
}
#site-footer #footer .link-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px 74px;
	margin-bottom: 60px;
}
#site-footer #footer .link-list li {
	font-weight: 600;
	font-size: 16px;
	line-height: normal;
}
#site-footer #footer .link-list li a:hover {
    opacity: 0.7;
}
#site-footer #footer .clinic-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 96px;
	margin-bottom: 32px;
}
#site-footer #footer .clinic-list .clinic {
	width: fit-content;
}
#site-footer #footer .clinic-list .clinic .name {
	font-weight: 500;
	font-size: 18px;
	line-height: 220%;
}
#site-footer #footer .clinic-list .clinic .info {
	font-weight: 500;
	font-size: 14px;
	line-height: 220%;
}

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


