@charset "utf-8";



/*读取resit CSS（sanitize.css）
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*读取Google Fonts（M PLUS Rounded 1c）
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

/*读取slick.css
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");



/*全体设置
---------------------------------------------------------------------------*/
html,body {
	overflow-x: hidden;
    min-height: 100%;    /*背景グラデーション用*/
    font-size: 14px;    /*基準となるフォントサイズ。下の方にある「画面幅800px以上」で基準を大きなサイズに変更しています。*/
}

body {
	font-family: "微软雅黑","宋体";	/*フォント種類*/
	-webkit-text-size-adjust: none;
    background: #e5e7e9;	/*背景色*/
	color: #352b17;	    /*全体の文字色*/
	line-height: 1;		/*行間*/
}

/*マージンのリセット*/
figure {margin: 0;}
dd {margin: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*section全般の設定*/
section + section {
	padding-top: 10px;	/*sectionの間に空けるスペース*/
}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {
	width: 100%;
	text-align: center;
	margin: 0px auto;

}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #9b8d69;	/*文字色*/
}

a:hover {
	color: #bbb196;	/*マウスオン時の文字色*/
}

/*headerブロック（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*道家全真龙门派内丹心法*/
header {
    text-align: center;		/*中身をセンタリングする*/
    padding-top: 20px;		/*上に空ける余白*/
	padding-bottom: 30px;		/*下に空ける余白*/
}

/*道家全真龙门派内丹心法*/
header #logo {   
    margin: 0;
    letter-spacing: 0.1em;    /*文字間隔を少しだけ広くとる設定*/
    font-size: 2.0rem;        /*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}
header #logo a {
    text-decoration: none;
}

/*道家全真龙门派内丹心法*/
header #logo img {
    width: 400px;         /*画像の幅*/
    padding: 0px 20px;    /*上下、左右へ空ける余白*/
}

/*🇨🇳中国九龍神功*/
header #logo2 {   
    margin: 0;
    letter-spacing: 0.1em;    /*文字間隔を少しだけ広くとる設定*/
    font-size: 3.5rem;        /*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	padding: 35px 0;
}
header #logo2 a {
    text-decoration: none;
}

/*天眼*/
header #logo3 img {
    width: 400px;         /*画像の幅*/
    padding: 0 20px;    /*上下、左右へ空ける余白*/
}

/*天眼*/
header #logo3 {   
    margin: 0;
    letter-spacing: 0.1em;    /*文字間隔を少しだけ広くとる設定*/
    font-size: 1.5rem;        /*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	padding: 10px 0;
}
header #logo3 a {
    text-decoration: none;
}

/*天眼*/
header #logo3 img {
    width: 400px;         /*画像の幅*/
    padding: 0 20px;    /*上下、左右へ空ける余白*/
}

/*中英文切换*/
.header-right {
    margin: 0;
    letter-spacing: 0.1em;    /*文字間隔を少しだけ広くとる設定*/
    font-size: 0.8rem;        /*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	padding: 0 50px;
	float: right;
  }

/* メニューの設定
---------------------------------------------------------------------------*/
/* ボックス全体の設定 */
#menubar ul {
    list-style: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex; /* 1行にする */
    padding: 0;
    margin: 0;
    background: #9b8d69; /* 背景颜色 */
    overflow-x: auto; /* 确保超出内容时可以水平滚动 */
    white-space: nowrap; /* 防止换行 */
}

/* リンクテキストの設定 */
#menubar a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 8px; /* 上下、左右へのテキスト内にとる余白 */
    transition: transform 0.3s ease;
    color: #f6f4f0;
    font-weight: 500; /* Slightly bolder font */
    white-space: nowrap; /* 防止文本换行 */
}

/* メニュー1个あたりの设置 */
#menubar li {
    display: inline-block; /* メニューを横並びにする指定 */
    text-align: center; /* テキストをセンタリング */
    position: relative;
}

#menubar li::before {
    content: "";
    background: #dfd4b7; /* 下线的颜色 */
    height: 3px; /* 下线的高度 */
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 90%;
    transition: 0.2s; /* 动画持续时间 */
    transition-timing-function: ease-out;
    transform: scaleX(0);
}

/* マウスオン时 */
#menubar li:hover::before {
    transform: scaleX(1);
}

/* 文本缩放效果 */
#menubar li a:hover {
    transform: scale(1.3); /* 文字放大 */
    color: #ffd700; /* 鼠标悬停时更改文本颜色 */
}

/* 媒体查询，针对小屏幕的样式调整 */
@media (max-width: 798px) {
    #menubar ul {
        padding: 0 10px; /* 增加内边距以确保菜单项不会触及屏幕边缘 */
		width: 100%;
		display: inline-block;
    }

    #menubar a {
        padding: 10px 4px; /* 缩小内边距以适应小屏幕 */
        font-size: 1.5rem; /* 缩小字体大小以适应小屏幕 */
    }
}

/*mainブロック
---------------------------------------------------------------------------*/
main {
    display: block;		/*IE用*/
    margin: 20px 20px;	/*上下、左右へのブロックの外側へ空けるスペース*/
}

/*ブロック内のh2タグ*/
main h2 {
    display: inline-block;
	font-size: 1.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	margin-bottom: 20px;	/*下に空けるスペース*/
    letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
    border-bottom: 3px solid #dfd4b7;	/*下線の幅、線種、色*/
}

/*ブロック内のh3タグ*/
main h3 {
	font-size: 1.4rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	margin-bottom: 20px;	/*下に空けるスペース*/
}

/*mainブロックのpタグ*/
main p {
	margin-bottom: 20px;	/*下へ空けるスペース*/
}

/*細々微調整*/
h2 + h3, h2 + p, h3 + p {
    margin-top: -20px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {text-decoration: none;}

/*著作部分*/
footer .pr {display: block;}

/*フッターにあるアイコン類
---------------------------------------------------------------------------*/
/*アイコン類を囲むブロック*/
ul.icon {
	list-style: none;
	margin: 0;padding: 0;
	margin-bottom: 30px;	/*下に空けるスペース*/
}

/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*リストタグを横並びにさせる指定*/
}

/*アイコン画像の設定*/
ul.icon img {
	width: 30px;	/*アイコン画像の幅*/
}

/*画像のマウスオン時*/
ul.icon img:hover {
	opacity: 0.8;	/*透明度。0.8は色が80%出た状態の事。*/
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	border-bottom: 1px solid #dfd4b7;	/*下線の幅、線種、色。*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。*/
}

/*service.htmlの各ボックス
---------------------------------------------------------------------------*/
.list {
	overflow: hidden;
	border: 1px solid #dfd4b7;	/*枠線の幅、線種、色*/
	border-radius: 5px;		/*角丸のサイズ。直角がいいならこの１行を削除。*/
	padding: 20px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックス同士（上下間）に空けるスペース*/
    background: rgba(255,255,255,0.2);	/*背景色。255,255,255は白のことで0.2は色が20%出た状態。*/
}

/*list内のh4見出し*/
.list h4 {
    font-size: 1.2rem;    /*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*スライドショー（slickを使用）
---------------------------------------------------------------------------*/

.slick-slide {
    margin: 10px;	/*スライドショー画像同士の間にあけるスペース*/
}

.slick-slide img {
    border-radius: 10px;	/*画像の角丸。丸くカットしない場合は、この１行を削除。*/
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒色のことで0.2は色が20%出た状態のこと。*/
}

/*丸いページナビボタン全体を囲むブロック*/
.slick-dots {
	text-align: center;
	width: 100%;
	margin:0;padding: 0;
	line-height: 1;
	position: absolute;
	bottom: 20px;	/*下からの配置場所指定*/
}

/*丸いページナビボタン１個あたりの設定*/
.slick-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
}

/*buttonタグ*/
.slick-dots li button {
	display: block;
    padding: 0;
    border: none;
    border: 1px solid #9b8d69;	/*枠線の幅、線種、色*/
	text-indent: -9999px;	/*デフォルトで文字が出るので画面の外に追い出す指定*/
	width: 12px;			/*ボタンの幅*/
	height: 12px;			/*ボタンの高さ*/
	border-radius: 50%;		/*丸くする指定*/
	background: #fff;		/*背景色。白。*/
}

/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
.slick-dots li.slick-active button {
	background: #9b8d69;	/*色*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid #dfd4b7;		/*上の枠線の幅、線種、色。*/
	font-weight: bold;				/*太字に*/
	padding: 10px 5px;				/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
    background: rgba(255,255,255,0.2);	/*背景色。255,255,255は白のことで0.2は色が20%出た状態。*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #dfd4b7;	/*テーブルの一番上の線。幅、線種、色。*/
	table-layout: fixed;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
    width: 100%;
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #dfd4b7;	/*テーブルの下線。幅、線種、色。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;				/*幅*/
	text-align: left;		/*左よせにする*/
	font-weight: normal;	/*デフォルトの太字を標準にする*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

.pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(155,141,105,0.4);	/*背景色。155,141,105はRGBカラーの指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(155,141,105,0.8);	/*背景色。155,141,105はRGBカラーの指定で0.8は色が80%出た状態。*/
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #d19006 !important;}
.color-check, .color-check a {color: #ff0000 !important;}
.c {text-align: center !important; padding: 20px 0 0 0;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.large {font-size: 2rem;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #dfd4b7;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.ofx {overflow-x: hidden;}



/*---------------------------------------------------------------------------
ここから下は画面幅600px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:600px) {

/*メニューの設定
---------------------------------------------------------------------------*/
/*リンクテキストの設定*/
#menubar a {
	padding: 20px 15px;	/*上下、左右へのテキスト内にとる余白。*/
	font-size: 1.5rem;
}

/*service.htmlの各ボックス
---------------------------------------------------------------------------*/
.list {
	margin-bottom: 40px;	/*ボックス同士（上下間）に空けるスペース*/
}

/*画像の設定（listブロック内にある１つ目の画像が対象）*/
.list img:first-of-type {
	width: 30%;			/*画像の幅*/
	float: left;		/*画像を左に回り込みさせる*/
	margin-right: 20px;	/*画像と、右側のテキストとの間に空けるスペース*/
}

/*　※注意！　下の閉じカッコ　}　は600px以上の設定に必要なので、うっかり削除しないように。　*/

}



/*---------------------------------------------------------------------------
ここから下は画面幅800px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:800px) {

/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 18px;	/*基準となるフォントサイズの上書き*/
}

/*section全般の設定*/
section + section {
	padding-top: 50px;	/*sectionの間に空けるスペース*/
}

/*headerブロック（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
    padding: 30px 0;       /*上下、左右へ空ける余白*/
}

/*メニューの設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#menubar ul {
    margin: 10px 70px;    /*上下、左右へのブロックの外側へ空けるスペース*/
}

/*mainブロック
---------------------------------------------------------------------------*/
main {
    margin: 50px 70px;	/*上下、左右へのブロックの外側へ空けるスペース*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 45%;display: inline-block;}

/*　※注意！　下の閉じカッコ　}　は800px以上の設定に必要なので、うっかり削除しないように。　*/

}


/*王久誉的个人简介*/
.flex{
    display: flex;
    justify-content: space-between;
	padding: 0 10% 0 10%;
	font-size: 1.4rem;	
	line-height: 1.4; /* 添加行间距 */
}
.flex>p{
    width: 1%;
	line-height: 1.5; /* 添加行间距 */
}

/*王久誉的个人简介图片,年轻时期经历图片大小调整*/
.flex img {
	width: 23%;
	height: 50%;
	margin-right: 20px;
	padding-bottom: 20px;
}

.flex li {
	padding: 5px;
}

.flex span {
	font-weight: bold;
}

/*王久誉的受访视频大小调整*/
.flex3 {
    justify-content: space-between;
	padding: 0 10% 0 10%;
	font-size: 1.4rem;	
	line-height: 1.4; /* 添加行间距 */
}

.video1 {
	width: 60vw;
	aspect-ratio: 4 / 3;
	text-align: center;
	margin: auto;
}

/*准备页面*/
.sorrypage {
	margin: auto;
	text-align: center;
}

li {
    padding: 0 10px; /* 根据需要调整间距 */
}

img {
    max-width: 100%; /* 使图片响应式 */
    height: auto;
    display: block;
    margin: 0 auto; /* 图片居中 */
}

/* 特别是为了视频和灵活布局的居中 */
.flex, .flex3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

/* 适应屏幕尺寸的响应式设计 */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
}

#logo3, #logo4 {
    font-size: 2rem; /* 维持字体大小 */
    font-weight: 900; /* 维持字体加粗 */
    color: #ffffff; /* 维持白色字体 */
    background: linear-gradient(135deg, rgba(70, 130, 180, 1) 0%, rgba(100, 149, 237, 1) 50%, rgba(65, 105, 225, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* 应用彩色渐变填充文本 */
    text-shadow: 2px 2px 10px rgba(94, 145, 95, 0.75); /* 增强阴影，提升深度感 */
    transition: all 0.5s ease-in-out; /* 平滑过渡效果 */
    border-radius: 5px; /* 添加圆角 */
    padding: 5px 10px; /* 添加内边距 */
    position: relative; /* 设置定位上下文 */
    overflow: hidden; /* 隐藏溢出的部分 */
}

#logo3 a, #logo4 a {
    text-decoration: none; /* 移除链接下划线 */
    display: block; /* 确保可以应用变换效果 */
}

#logo3::before, #logo4::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(210, 23, 23, 0) 100%);
    transition: all 0.7s ease-in-out;
    transform: translate(-50%, -50%) scale(0);
}

#logo3:hover::before, #logo4:hover::before {
    transform: translate(-50%, -50%) scale(1); /* 放大渐变圆，创建扩散效果 */
}

#logo3:hover, #logo4:hover {
    transform: translateY(-2px) scale(1.1); /* 上移并放大文字 */
    text-shadow: 4px 4px 12px rgba(255, 255, 255, 1); /* 悬停时扩大并增亮阴影 */
}

/* .flexや.fleがflexレイアウトの場合、.cに幅100%と中央寄せを指定 */
.c {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.c img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.flex, .fle {
    flex-direction: column;
    align-items: center;
}