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

common.css

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

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

    --common-color-text: #5A5046;           /* 基本テキスト色 */
    --common-color-main: #B79069;           /* メイン色 */
    --common-color-sub: #181818;            /* サブ色 */
    --common-color-background1: #EFEAE0;       /* 背景色1 */
    --common-color-background2: #F8F7F3;       /* 背景色2 */
    --common-color-background3: #7B6A64;       /* 背景色3 */
    --common-color-accent: #FAA43F;            /* アクセント色 */
    --common-color-attention: #D93838;      /* 注意色 */
    --common-color-attention-bg: #FFF5F5;   /* 注意色(背景用) */
    --common-color-notice: #B3B3B3;      /* 注釈色 */

    --common-font-family: "Noto Serif JP", serif;
	--common-font-family-jp: "Noto Sans JP", sans-serif;
    --common-font-family-lato: "Lato", 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: 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: block;
}*/

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

/* レイアウト
---------------------------------------- */
#main-contents {
    width: 100%;
    padding-bottom: 112px;
}


/* コンテンツ内
---------------------------------------- */
.section {
    margin-bottom: 64px;
}
.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: 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: 32px;
    line-height: 160%;
}
h2.sec-title {
    font-weight: bold;
    font-size: 36px;
    line-height: 160%;
    margin-bottom: 24px;
}
h3.block-title {
    font-weight: bold;
    font-size: 24px;
    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%;
}

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


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

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin-bottom: 8px;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    font-size: 16px;
	font-family: var(--common-font-family-jp);
}
#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(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: 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 40px 16px 0;
	border-bottom: 1px solid #E3E3DA;
	transition: all .3s;
}
.block-news .item:hover {
	opacity: 0.7;
}
.block-news .item.link-arrow:before {
	bottom: auto;
	top: 50%;
	transform: translatey(-50%);
}
.block-news .item .info {
	gap: 24px;
}
.block-news .item .info .posted-date {
	width: 80px;
	font-size: 14px;
}
.block-news .item .info .title {
	width: calc(100% - 104px);
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 0;
	-webkit-line-clamp: 1;
}

/* ブログ
---------------------------------------- */
.block-blog {
	--gap: 48px;
    --col: 1;
    gap: var(--gap);
}
.block-blog .item {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
	gap: 24px;
	transition: all .3s;
}
.block-blog .item:hover {
	opacity: 0.7;
}
.block-blog .item.link-arrow:before {
	right: 16px!important;
	bottom: 12px!important;
}
.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 {
	width: 58%;
	padding: 8px;
}
.block-blog .item .info .title {
	font-size: 20px;
	color: var(--common-color-main);
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 16px;
}
.block-blog .item .info .excerpt {
	margin-bottom: 16px;
	font-size: 14px;
	color: #5F5959;
	-webkit-line-clamp: 3;
}
.block-blog .item .info .tag {
	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;
}

/* 症例
---------------------------------------- */
.block-case .item {
	gap: 48px;
	padding: 32px;
	width: 100%;
	border: 1px solid var(--common-color-main);
	margin-bottom: 48px;
}
.block-case .item:last-child {
	margin-bottom: 0;
}
.block-case .item .image {
	width: 39%;
}
.block-case .item .image .wrap {
	overflow: hidden;
	aspect-ratio: 4 / 3;
}
.block-case .item .image .wrap a {
	display: block;
	transition: all .3s;
}
.block-case .item .image .wrap a:hover {
	opacity: 0.7;
}
.block-case .item .image .wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block-case .item .image .parts-btn {
	margin-top: 24px;
	width: 100%;
}
.block-case .item .info {
	width: 56%;
}
.block-case .item .info .title {
	font-size: 32px;
	line-height: 1.6;
	margin-bottom: 24px;
}
.block-case .item .info .tags {
	gap: 8px;
	margin-bottom: 24px;
}
.block-case .item .info .tags .tag {
	font-size: 10px;
	color: #7C7C7C;
	line-height: 1.6;
	font-weight: 500;
	padding: 4px 16px;
	border: 1px solid #7C7C7C;
	font-family: var(--common-font-family-jp);
}
.block-case .item .info .detail {
	margin-bottom: 24px;
}
.block-case .item .info .detail .col {
	width: 32%;
	text-align: center;
	border-right: 1px solid var(--common-color-main);
}
.block-case .item .info .detail .col:first-child {
	border-left: 1px solid var(--common-color-main);
}
.block-case .item .info .detail .col:last-child {
	width: 36%;
}
.block-case .item .info .detail .col .label {
	margin-bottom: 4px;
}
.block-case .item .info .detail .col .data {
	font-size: 16px;
	padding: 0 8px;
	color: var(--common-color-main);
	font-weight: 500;
}
.block-case .item .info .risk .label {
	font-size: 20px;
	font-weight: 600;
	color: var(--common-color-main);
	padding-bottom: 2px;
	border-bottom: 1px solid var(--common-color-main);
	margin-bottom: 8px;
}
.block-case .item .info .risk .data {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/*============================================================
 モーダルカスタム(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: var(--common-color-background2);
    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: var(--common-color-background3);
    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: 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 table {
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}
.block-post-content .wp-block-table table th,
.block-post-content .wp-block-table 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 table td:first-child {
	font-weight:500;
	font-size: 16px;
	line-height: 1.4;
	padding: 17px 20px;
}
.block-post-content .wp-block-table table tr {
	border-bottom: 1px solid #D3C8BD;
}
.block-post-content .wp-block-table table tr:first-child {
	border-bottom: 2px solid #D3C8BD;
}
.block-post-content .wp-block-table 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 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 .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.link-arrow {
	position: relative;
}
a.link-arrow:before {
	position: absolute;
	content: "";
	background: url(../images/common/icon-link-arrow.svg) no-repeat center center / contain;
	width: 20px;
	height: 20px;
	right: 0;
	bottom: 4px;
}

/* 矢印アニメーション
---------------------------------------- */
/* aタグに設置するclass */
.link-arrow-anim {
}
/* position設定が必要な時に使用(カードの中とか) */
.link-arrow-anim  .arrow-anim-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
}
/* 本体 */
.link-arrow-anim .arrow-anim {
    width: 222px;   /* 表示する幅（一番利用の多い幅を設定） */
    height: 7px;
    overflow: hidden;
    position: relative;
}
.link-arrow-anim .arrow-anim.short {
	width: 112px;  /* 表示する幅（短め設定） */
}
.link-arrow-anim .arrow-anim::before {
    display: block;
    content: "";
    width: 222px;   /* 画像の最大幅 */
    height: 7px;
    background-image: url(../images/common/icon-arrow-anim.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 222px auto;
    position: absolute;
    top: 0;
    right: 0;
}
.link-arrow-anim:hover .arrow-anim::before {
    animation: arrow-anim .8s ease-in-out forwards;
}
@keyframes arrow-anim {
  0% {right: 90%;}
  100% {right: 0;}
}
/* 本体（右寄せ） */
.link-arrow-anim-right .arrow-anim {
	margin: 24px 0 0 auto;
}
/* 右寄せ用ラップ */
.link-wrap-right > .link-arrow-anim {
	color: var(--common-color-main);
	font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}
/* 両端用ラップ */
.link-wrap-between > .link-arrow-anim {
	color: var(--common-color-main);
	font-weight: bold;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/*============================================================
 すべての診療内容
*============================================================*/
#other-menu .list {
	gap: 40px 46px;
	padding: 0 16px;
}
#other-menu .item {
	gap: 8px;
	transition: all .3s;
}
#other-menu .item:hover {
	opacity: 0.7;
}
#other-menu .item h3 {
	color: var(--common-color-text)!important;
	font-size: 20px;
	font-weight: 600;
	display: flex;
	margin-bottom: 0;
}


/*============================================================
 その他クリニック
*============================================================*/
#sec-other-clinic .inner > p {
	margin-bottom: 64px;
}
#other-clinic .list {
	gap: 38px;
}
#other-clinic .item {
	width: 48%;
	display: block;
	transition: all .3s;
	position: relative;
}
#other-clinic .item.link .arrow {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
}
#other-clinic .item h2 {
	font-size: 20px;
	text-align: center;
	color: var(--common-color-main);
	padding-bottom: 8px;
	border-bottom: 1px solid var(--common-color-main);
	margin-bottom: 24px;
}
#other-clinic .item h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
}
#other-clinic .item .info {
	gap: 16px;
	padding-bottom: 24px;
}
#other-clinic .info .text {
	width: calc(100% - 156px);
}

/*============================================================
 CTA
*============================================================*/
/* お問い合わせ
---------------------------------------- */
#cta-contact {
	padding: 80px 0;
	background-image: url(../images/common/cta-bg.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
	margin-bottom: 0;
}
#cta-contact:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(34, 34, 34, 0.5);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	-moz-backdrop-filter: blur(12px);
	top: 0;
	left: 0;
}
#cta-contact .block {
	gap: 48px;
	position: relative;
	margin-bottom: 0;
}
#cta-contact .block .info {
	width: 54%;
	margin-top: 17px;
	margin-bottom: 0;
}
#cta-contact .block .info > h2 {
	margin-bottom: 16px;
}
#cta-contact .block .info > p {
	margin-bottom: 24px;
}
#cta-contact .block .info .wrap {
	gap: 48px;
	align-items: center;
}
#cta-contact .block .info .parts-btn {
	margin: 0;
}
#cta-contact .block .info .parts-btn a:before {
	/* background-image: url(../images/common/icon-link-arrow-bold.svg); */
    background-image: url(../images/common/icon-link-arrow-bold-white.svg);
}
#cta-contact .block .info .parts-btn:hover a:before {
	background-image: url(../images/common/icon-link-arrow-bold-white.svg);
}
#cta-contact .block .info .tel .num {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
}
#cta-contact .block .info .tel .detail {
	font-size: 12px;
	font-weight: 500;
}
#cta-contact .block .schedule {
	width: 41%;
}

/*============================================================
 サイト内検索フォーム
*============================================================*/
#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 .outer-link {
	gap: 64px;
	margin: 80px 0;
}
.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;
	font-family: var(--common-font-family-jp);
	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
*============================================================*/
#site-footer {
    background-color: #181818;
    padding: 82px 0 56px;
    color: #fff;
	text-align: center;
	font-weight: 500;
}
#site-footer .logo {
	margin-bottom: 32px;
}
#site-footer .name {
	margin-bottom: 56px;
	line-height: 2.2;
	font-size: 14px;
}
#site-footer .name span {
	font-size: 18px;
}

/* メニューリスト
---------------------------------------- */
#site-footer .main-menu .menu-list {
    gap: 0;
}
#site-footer .main-menu {
	gap: 32px;
	margin-bottom: 40px;
}
#site-footer .main-menu a {
	transition: all .3s;
}
#site-footer .main-menu a:hover {
	opacity: 0.7;
}
#site-footer .main-menu .menu-list li a {
	padding: 11px 16px 11px 30px;
	position: relative;
	font-size: 18px;
}
#site-footer .main-menu .menu-list li a:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-nav-link-arrow-white.svg) no-repeat center center / contain;
	width: 4px;
	height: 8px;
	transform: translatey(-50%);
	top: 50%;
	left: 14px;
}
#site-footer .main-menu .line {
	gap: 16px;
}

#site-footer .sub-menu {
	margin-bottom: 76px;
}
#site-footer .sub-menu ul {
	gap: 40px;
}
#site-footer .sub-menu ul li a {
	text-decoration: underline;
	transition: all .3s;
}
#site-footer .sub-menu ul li a:hover {
	opacity: 0.7;
}

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


