@charset "UTF-8";

/*--------------------------------------------------------------------
common
cssの初期化
--------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  outline: none;
  font-style: normal;
  font-weight: normal;
  zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
h1, h2, h3, h4, h5, h6 {
  line-height: 1.55;
  font-size: 100%;
  font-weight: normal;
}
table { border-collapse: collapse; }
table th, table td {
  text-align: left;
  vertical-align: top;
}
ul,ol { list-style: none; }
img {
  width /***/:auto;
  max-width: 100%;
  height: auto;
	object-fit: cover;
  vertical-align: bottom;
}
* { box-sizing: border-box; }
a { transition: opacity .3s; }


/*--------------------------------------------------------------------
common
ページ共通部分
--------------------------------------------------------------------*/
:root {
	--mincho: "游明朝" , "Yu Mincho" , "游明朝体" , "ヒラギノ明朝 Pro W3" , "HiraMinPro-W3" , Garamond , "Times New Roman" , "Sawarabi Mincho" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	--gothic: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, Roboto, Verdana, "Droid Sans", sans-serif;
	--co-black:    #2a2b2b;	   /*黒*/
	--co-white:    #ffffff;	   /*白*/
	--co-gold:     #918526;	   /*金*/
	--co-brown:    #664536;	   /*茶*/
	--co-orange:   #ff4a00;	   /*橙*/
	--co-grassG:   #5c8000;	   /*緑1*/
	--co-bottleG:  #00662b;	   /*緑2*/
	--co-forestG:  #00662b;	   /*緑3*/
	--co-gray80:   #555555;	   /*灰80%*/
	--co-gray30:   #bfbfbf;	   /*灰30%*/
	--co-gray10:   #eaeaea;	   /*灰10%*/
	--transformXY: translate(-50% , -50%);
	--transformX:  translateX(-50%);
	--transformY:  translateY(-50%);
	--parag-bet: 0.8em;	   /*段落の間*/
}

/*------------body---------------------------------------------------------------*/
html {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	height: 100%;
	background-color: transparent;
	overflow-y: scroll;
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	font-family: var(--gothic);
	font-size: 16px;
	font-weight: normal;
	color: var(--co-white);
}

/*------------NewsBoxのスタイル---------------------------------------------------------------*/
div.NewsBox table {
	width: 100%;
	border-collapse: collapse;
	color: var(--color-white);
}
div.NewsBox table tr th,
div.NewsBox table tr td {
	width: 6em;
	padding: 10px 10px 5px 0;
	text-align: left;
	vertical-align: top;
	font-size: 100%;
}
div.NewsBox table tr td {
	width: auto;
}
div.NewsBox table tr td strong {
	color: #ff4a00;
}
div.NewsBox table tr td div.Txt a {
	text-decoration: underline;
}
div.NewsBox table tr td div.Txt a:hover { text-decoration: none; }