@charset "UTF-8";

/*--------------------------------------------------------------
RESET
-------------------------------------------------------------- */
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tfoot, thead, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
article, aside, figure, footer, header, hgroup, nav, section {
	display: block;
}
img {
	vertical-align: bottom;
	right: 4px;
	top: 4px;
}


/*-------------------------------------------------------------------------------
CLEARFIX
-------------------------------------------------------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}




/*-------------------------------------------------------------------------------
 COMMON
-------------------------------------------------------------------------------*/
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color: #555555;
	width: 100%;
	overflow-x: hidden;
	background-image: url("../images/bg.png");
}


html {
	overflow-y:scroll;
}

.container {
	position: relative;
}
.container-fluid {
	position: relative;
}

a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	color: #000000;
}
a:hover {
	color: #333333;
	text-decoration: underline;
}
a:active {
	color: #333333;
}

/* 画像配置 左 */
img.alignleft {
	float: left;
	margin: 10px 10px 10px 0;
}

/* 画像配置 中央 */
img.aligncenter {
	display: block;
	margin: 1px auto;
}

/* 画像配置 右 */
img.alignright {
	float: right;
	margin: 10px 0 10px 10px;
}

img {
	max-width: 100%;
	height: auto;
}


/* フォント設定 */
.txt_s {
	font-size: 0.7em;
}


/*---------------------------------
 共通マージン設定
---------------------------------*/
.mtb10 {
	margin: 10px 0 10px 0;
}
.mt15 {
	margin-top: 15px;
}
.mt30 {
	margin-top: 30px;
}
.mt50 {
	margin-top: 50px;
}
.mt70 {
	margin-top: 80px;
}
.mt80 {
	margin-top: 80px;
}
.mt100 {
	margin-top: 100px;
}
.mt120 {
	margin-top: 120px;
}
.mt150 {
	margin-top: 150px;
}
.mtb20 {
	margin: 20px 0 20px 0;
}
.mtb30 {
	margin-top: 30px;
	margin-bottom: 30px;
}
.mtb50 {
	margin-top: 50px;
	margin-bottom: 50px;
}
.mtb100 {
	margin-top: 100px;
	margin-bottom: 100px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb50 {
	margin-bottom: 50px;
}
.ml_20 {
	margin: 0 0 0 20px;
}
.mr_10 {
	margin: 0 10px 0 0;
}
.mp15 {
	padding: 15px 0 0 0;
}
.mpt70 {
	padding: 70px 0 0 0;
}
.pt100 {
	padding-top: 100px;
}

figure {
	margin-bottom: 30px;
}


/*---------------------------------
Global Navigation
（モバイル-ハンバーガーメニュー）
---------------------------------*/
.menu, .menu span {
	display: inline-block;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-sizing: border-box;
}
.menu {
	position: fixed;
	top: 20px;
	right: 25px;
	width: 35px;
	height: 22px;
	z-index: 10;
}
.menu span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000;
	z-index: 10;
}
.menu span:nth-of-type(1) {
	top: 0px;
}
.menu span:nth-of-type(2) {
	top: 10px;
}
.menu span:nth-of-type(3) {
	bottom: 0px;
}
.menu.active span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(45deg);
	transform: translateY(10px) rotate(45deg);
}
.menu.active span:nth-of-type(2) {
	opacity: 0;
}
.menu.active span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(-45deg);
	transform: translateY(-10px) rotate(-45deg);
}

.menu_title {
	position: absolute;
	top: 25px;
	right: 0px;
	font-size: 10px;
}

nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	height: 100vh;
	opacity: 0;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
}
nav.active {
	right: 0;
	opacity: 1;
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
}
nav ul {
	margin: 20px 0;
	padding: 20px 0;
}
nav ul li {
	list-style-type: none;
	font-size: 1.2em;
	font-family: 'Zen Old Mincho', serif;
}
nav ul li a {
	display: block;
	padding: 10px 0;
	transition: all 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
	color: #333;
}
nav ul li a:hover {
	color: #f65d5d;
}


/*---------------------------------
 パンくずリスト
---------------------------------*/
.d100th_breadcrumbs_list {
	font-size: 0.8em;
	margin: 15px auto;
}
.d100th_breadcrumbs_list ul {
	margin: 0;
	padding: 0;
}
.d100th_breadcrumbs_list li {
	display: inline;
	list-style-type: none;
}


/*---------------------------------
 区切り設定
---------------------------------*/
.kugiri {
	width: 100%;
	height: 35px;
	margin: 50px 0px;
	text-align: center;
	background-image: url("../images/kugiri@2x.png");
	background-repeat: no-repeat;
	background-size: 83px 26px;
	background-position: 50%;
}


/*---------------------------------
 ボックス設定
---------------------------------*/
.w-box {
	background-color: #FFFFFF;
	margin: 20px auto;
	padding: 20px;
	border-radius: 20px;
	position: relative;
	z-index: 1;
}


/*---------------------------------
 メッセージ設定
---------------------------------*/
.m_name {
	font-size: 1.1em;
	font-weight: bold;
	margin: 15px 0px 5px 0px;
}
.m_midashi {
	margin-bottom: 20px;
}


/*---------------------------------
 年表 アコーディオン設定
---------------------------------*/
details summary {
	width: 60px;
	margin: 0 auto;
  list-style: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display:none;
}

.ag-btn {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 50px;
	padding: 2px 10px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.8em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 50px;
	border: #a27e39 solid 1px;
	text-decoration: none;
}
.ag-btn:hover {
	background: #fbf7ef;
}
.eft_blur {
	-webkit-filter:blur(5px);
	-moz-filter:blur(5px);
	-ms-filter:blur(5px);
	filter:blur(5px);
}

/*---------------------------------
 年表
---------------------------------*/
.main-bdr {
	border-color: #6bb6ff;
}
.tl-content {
	position: relative;
	padding: 0 0 1.5em 1.8em;
}
.tl-content:before {
	content: "";
	display: block;
	position: absolute;
	top: 24px;
	bottom: 0;
	left: 6px;
	width: 3px;
	background: #ccd5db;
}
/* .tl-content:not(:first-of-type):not(:last-of-type) .tl_marker {
	background: transparent;
} */
/* .tl-content:last-of-type:before {
	content: none;
} */
.tl-content img {
	max-width: 100%;
	height: auto;
}
.tl_label {
	padding-top: 2px;
	color: #90969a;
	font-size: 14px;
	font-weight: bold;
}
.tl_title {
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.5;
}
.tl_main {
	margin-top: 0.5em;
	padding: 0 0 1.5em;
	font-size: 0.9em;
	line-height: 1.6;
	border-bottom: dashed 1px #ccd5db;
}
.main-bc {
	background-color: #6bb6ff;
}
.main-bc_end {
	background-color: red;
}
.tl_marker {
	content: "";
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: solid 3px #6bb6ff;
}
.tl_marker_end {
	content: "";
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: solid 3px red;
}

.tl_lsit li {
	margin: 10px 20px;
	line-height: 120%;
}

/*---------------------------------
 ページトップへ戻るボタン
---------------------------------*/
#page-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    font-size: 77%;
		z-index: 9999;
}
#page-top a {
    background: #555555;
    text-decoration: none;
    color: #fff;
    padding: 5px;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: #999;
}


/*-------------------------------------------------------------------------------
 幅768px以下の指定
-------------------------------------------------------------------------------*/

.pc_disp {
	display: none;
}
.sp_disp {
	display: block;
}


/* フォント設定 */
.txt_g {
	font-family: 'Zen Old Mincho', serif;
	font-weight: 600;
	font-size: 1.0em;
	color: #a27e39;
	margin: 0px 0px 20px 0px;
}	

/*スライダー*/
#slider {
	margin-top: 90px;
	width: 100%;
	height: auto;
	text-align: center;
}


/*---------------------------------
 ボタン設定
---------------------------------*/
.w-btn a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 10px auto;
	height: 100px;
	padding: 10px 25px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 1.2em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 5px;
	border: #a27e39 solid 1px;
	text-decoration: none;
}
.w-btn a:hover {
	background: #fbf7ef;
}

.g-btn a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 50px;
	padding: 2px 10px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.8em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 50px;
	border: #a27e39 solid 1px;
	text-decoration: none;
}
.g-btn a:hover {
	background: #fbf7ef;
}

.g-btn_l a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 100px;
	padding: 2px 10px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.8em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 50px;
	border: #a27e39 solid 1px;
	text-decoration: none;
	margin: 0px auto;
}
.g-btn_l a:hover {
	background: #fbf7ef;
}


/*---------------------------------
 ボックス設定
---------------------------------*/
.w-box2 {
	background-color: #FFFFFF;
	margin: 20px auto;
	padding: 20px;
	border-radius: 20px;
	position: relative;
	z-index: 1;
}


/*---------------------------------
 ヘッダー
---------------------------------*/
header {
	position: fixed;
	background-color: rgb(255, 255, 255, 0.85);
	width: 100%;
	height: 90px;
	z-index: 9998;
}
header #anv_logo {
	position: absolute;
	top: 10px;
	left: 20px;
	transform:translate(0, 0);
	width: 130px;
}
header #tr_jp_100th_logo {
	position: absolute;
	top: 5px;
	right: 70px;
	width: 140px;
}


#sp_logo {
	width: 190px;
	margin: 20px auto;
}

#sp_site_name {
	margin-top: 10px;
	text-align: center;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 700;
	font-size: 1.35em;
	line-height: 140%;
	color: #a27e39;
}
#sp_site_name_sub {
	text-align: center;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 400;
	font-size: 1em;
	line-height: 120%;
	color: #a27e39;
}


/* ご挨拶 */
#top_sp {
	margin-top: 110px;
}

.d100th_page_title {
	margin: 20px auto 50px auto;
	padding: 5px 0px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 1.4em;
	font-weight: 700;
	line-height: 120%;
	color: #a27e39;
	text-align: center;
}


/*---------------------------------
 フッター
---------------------------------*/
.footer {
	margin: 10px auto;
	padding: 10px;
	text-align: center;
	font-size: 0.8em;
	font-family: Georgia, "Times New Roman", Times, "serif";
	color: #555555;
}


/*---------------------------------------------------------------------------------------------------------------------------
 Media queries!
---------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width : 768px ){
/*最小幅768px以上の指定*/

.pc_disp {
	display: none;
}
.sp_disp {
	display: block;
}


/* フォント設定 */
.txt_g {
	font-family: 'Zen Old Mincho', serif;
	font-weight: 600;
	font-size: 1.2em;
	color: #a27e39;
	margin: 0px 0px 20px 0px;
}	

/*スライダー*/
#slider {
	margin-top: 110px;
	width: 100%;
	height: auto;
	text-align: center;
}


/*---------------------------------
 ボタン設定
---------------------------------*/
.w-btn a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 10px auto;
	height: 100px;
	padding: 10px 25px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 1.3em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 5px;
	border: #a27e39 solid 1px;
	text-decoration: none;
}
.w-btn a:hover {
	background: #fbf7ef;
}

.g-btn a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 50px;
	padding: 2px 10px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.8em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 50px;
	border: #a27e39 solid 1px;
	text-decoration: none;
}
.g-btn a:hover {
	background: #fbf7ef;
}

.g-btn_l a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 100px;
	padding: 2px 10px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.8em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 50px;
	border: #a27e39 solid 1px;
	text-decoration: none;
	margin: 0px auto;
}
.g-btn_l a:hover {
	background: #fbf7ef;
}


/*---------------------------------
 ボックス設定
---------------------------------*/
.w-box2 {
	background-color: #FFFFFF;
	margin: 20px auto;
	padding: 60px;
	border-radius: 20px;
	position: relative;
	z-index: 1;
}


/*---------------------------------
 ヘッダー
---------------------------------*/
header {
	position: fixed;
	background-color: rgb(255, 255, 255, 0.85);
	width: 100%;
	height: 110px;
	z-index: 9998;
}
header #logo {
	position: absolute;
	top: 10px;
	left: 0px;
	width: 200px;
}
header #anv_logo {
	position: absolute;
	top: 10px;
	left: 50%;
	transform:translate(-50%, 0);
	width:170px;
}
header #tr_jp_100th_logo {
	position: absolute;
	top: 5px;
	right: 40px;
	width: 190px;
}
#sp_site_name {
	text-align: center;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 700;
	font-size: 1.45em;
	line-height: 120%;
	color: #a27e39;
}
#sp_site_name_sub {
	text-align: center;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 400;
	font-size: 1.1em;
	line-height: 120%;
	color: #a27e39;
	margin-top: 5px;
}


/* ご挨拶 */
#top_sp {
	margin-top: 130px;
}

.d100th_page_title {
	margin: 20px auto 50px auto;
	padding: 5px 0px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 1.6em;
	font-weight: 700;
	line-height: 120%;
	color: #a27e39;
	text-align: center;
}


/*---------------------------------
 フッター
---------------------------------*/
.footer {
	margin: 10px auto;
	padding: 10px;
	text-align: center;
	font-size: 0.8em;
	font-family: Georgia, "Times New Roman", Times, "serif";
	color: #555555;
}

	
}
/*---------------------------------------------------------------------------------------------------------------------------
 Media queries!
---------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:992px){
/*最小幅992px以上の指定*/

.pc_disp {
	display: block;
}
.sp_disp {
	display: none;
}


/* フォント設定 */
.txt_g {
	font-family: 'Zen Old Mincho', serif;
	font-weight: 600;
	font-size: 1.5em;
	color: #a27e39;
	margin: 30px 0px;
}	

/*スライダー*/
#slider {
	margin-top: 125px;
	width: 100%;
	height: auto;
	text-align: center;
}


/*---------------------------------
 ボタン設定
---------------------------------*/
.w-btn a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 10px auto;
	height: 100px;
	padding: 10px 25px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 1.3em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 5px;
	border: #a27e39 solid 1px;
	text-decoration: none;
}
.w-btn a:hover {
	background: #fbf7ef;
}

.g-btn a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 50px;
	padding: 2px 10px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.8em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 50px;
	border: #a27e39 solid 1px;
	text-decoration: none;
}
.g-btn a:hover {
	background: #fbf7ef;
}

.g-btn_l a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 100px;
	padding: 2px 10px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.8em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 50px;
	border: #a27e39 solid 1px;
	text-decoration: none;
	margin: 0px auto;
}
.g-btn_l a:hover {
	background: #fbf7ef;
}


/*---------------------------------
 ボックス設定
---------------------------------*/
.w-box2 {
	background-color: #FFFFFF;
	margin: 20px auto;
	padding: 60px;
	border-radius: 20px;
	position: relative;
	z-index: 1;
}


/*---------------------------------
 ヘッダー
---------------------------------*/
header {
	position: fixed;
	background-color: rgb(255, 255, 255, 0.85);
	width: 100%;
	height: 125px;
	z-index: 9998;
}
header #logo {
	position: absolute;
	top: 10px;
	left: 0px;
	width: 251px;
}
header #anv_logo {
	position: absolute;
	top: 10px;
	left: 50%;
	transform:translate(-50%, 0);
	width: 214px;
}
header #site_name {
	position: absolute;
	top: 60px;
	left: 0px;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 700;
	font-size: 1.45em;
	line-height: 120%;
	color: #a27e39;
}
header #site_name_sub {
	position: absolute;
	top: 90px;
	left: 0px;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 400;
	font-size: 1.1em;
	line-height: 120%;
	color: #a27e39;
}
header #tr_jp_100th_logo {
	position: absolute;
	top: 5px;
	right: 20px;
	width: 214px;
}


/* ご挨拶 */
#top_sp {
	margin-top: 140px;
}

.d100th_page_title {
	margin: 20px auto 50px auto;
	padding: 5px 0px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 1.6em;
	font-weight: 700;
	line-height: 120%;
	color: #a27e39;
	text-align: center;
}


/*---------------------------------
 フッター
---------------------------------*/
.footer {
	margin: 10px auto;
	padding: 10px;
	text-align: center;
	font-size: 0.8em;
	font-family: Georgia, "Times New Roman", Times, "serif";
	color: #555555;
}

	
}
/*---------------------------------------------------------------------------------------------------------------------------
 Media queries!
---------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1200px){
/*最小幅1200px以上の指定*/

.pc_disp {
	display: block;
}
.sp_disp {
	display: none;
}


/* フォント設定 */
.txt_g {
	font-family: 'Zen Old Mincho', serif;
	font-weight: 600;
	font-size: 1.5em;
	color: #a27e39;
	margin: 30px 0px;
}	

/*スライダー*/
#slider {
	margin-top: 125px;
	width: 100%;
	height: auto;
	text-align: center;
}


/*---------------------------------
 ボタン設定
---------------------------------*/
.w-btn a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 10px auto;
	height: 100px;
	padding: 10px 25px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 1.3em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 5px;
	border: #a27e39 solid 1px;
	text-decoration: none;
}
.w-btn a:hover {
	background: #fbf7ef;
}

.g-btn a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 50px;
	padding: 2px 10px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.8em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 50px;
	border: #a27e39 solid 1px;
	text-decoration: none;
}
.g-btn a:hover {
	background: #fbf7ef;
}

.g-btn_l a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 100px;
	padding: 2px 10px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 0.8em;
	color: #a27e39;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: rgb(255, 255, 255);
	border-radius: 50px;
	border: #a27e39 solid 1px;
	text-decoration: none;
	margin: 0px auto;
}
.g-btn_l a:hover {
	background: #fbf7ef;
}


/*---------------------------------
 ボックス設定
---------------------------------*/
.w-box2 {
	background-color: #FFFFFF;
	margin: 20px auto;
	padding: 60px;
	border-radius: 20px;
	position: relative;
	z-index: 1;
}


/*---------------------------------
 ヘッダー
---------------------------------*/
header {
	position: fixed;
	background-color: rgb(255, 255, 255, 0.85);
	width: 100%;
	height: 125px;
	z-index: 9998;
}
header #logo {
	position: absolute;
	top: 10px;
	left: 0px;
	width: 251px;
}
header #anv_logo {
	position: absolute;
	top: 10px;
	left: 50%;
	transform:translate(-50%, 0);
	width: 214px;
}
header #site_name {
	position: absolute;
	top: 60px;
	left: 0px;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 700;
	font-size: 1.45em;
	line-height: 120%;
	color: #a27e39;
}
header #site_name_sub {
	position: absolute;
	top: 90px;
	left: 0px;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 400;
	font-size: 1.1em;
	line-height: 120%;
	color: #a27e39;
}

header #tr_jp_100th_logo {
	position: absolute;
	top: 5px;
	right: 20px;
	width: 214px;
}


/* ご挨拶 */
#top_sp {
	margin-top: 140px;
}

.d100th_page_title {
	margin: 20px auto 50px auto;
	padding: 5px 0px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 1.6em;
	font-weight: 700;
	line-height: 120%;
	color: #a27e39;
	text-align: center;
}


/*---------------------------------
 フッター
---------------------------------*/
.footer {
	margin: 10px auto;
	padding: 10px;
	text-align: center;
	font-size: 0.8em;
	font-family: Georgia, "Times New Roman", Times, "serif";
	color: #555555;
}



}
/*-------------------------------------------------------------------------------
 Print styles!
-------------------------------------------------------------------------------*/
@media print {
}
