﻿/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

/* リセット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: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* 背景 */
body {
  color: #424A76;
	background: #FFFFFF;
	background-image: url("/lf/log/shiroiheya_bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

/* 真ん中の部分 */
.main {
  background-color: rgba(255,255,255,0.2);
  overflow: auto;
	padding: 0% 15%;
	margin: 0px auto;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
  color: #30434E;
	text-align: left;
	line-height: 2;		/*行間*/
}

/* ロゴ */
#logo img {
	width: 500px;	/*画像幅*/
	margin: 0px auto 0px;	/*上下*/
}

/* プロフシート */
img.prof {
	width: 200px;	/*画像幅*/
  margin: 1em 0em;   /* 上下 */
}

/* アイコン */
img.icon {
	width: 60px;	/*画像幅*/
  margin: 1em 0em;   /* 上下 */
}

/* リンク */
a:link {
	color:#30434E; 
  text-decoration: none;
}
a:visited { color:#30434E; }
a:hover { color:#9DB5B2; }

/* ボタン1 */
a.btn1 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 400px;
	margin: 0.2em auto;
	padding: 0.3em 0.3em;
	font-size: 15px;
	font-weight: bold;
	color: #30434E;
	background: #FFF;
	transition: 0.5s;
}
a.btn1:hover {
	color: #FFF;
	background: #30434E;
}

/* ボタン2 */
a.btn2 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 200px;
	padding: 0.3em 0.3em;
	font-size: 15px;
	font-weight: bold;
	color: #30434E;
	background: #FFF;
	transition: 0.5s;
}
a.btn2:hover {
	color: #FFF;
	background: #30434E;
}

/* p要素の間隔 */
p {
   margin: 0em 2em;   /* 上下 */
}

/* divセクション */
.section {
   margin: 4em 0px;   /* 上下 */
}

/* divアンカー */
.anchor {
	  margin: 4em 0px;   /* 上下 */
		text-align: right;
}

/* divメニュー */
.menu {
	  margin: 4em 0px;   /* 上下 */
		text-align: center;
}

/* スクロールバー */
::-webkit-scrollbar {
	width: 15px;
	height: 15px;
}
::-webkit-scrollbar-track {
	background: #000D18;
}
::-webkit-scrollbar-thumb {
	background: #FFF;
}


/* 見出し */
h2 {
	color: #30434E;
	font-size:25px;
  font-weight: bold;
  border: solid 3px #30434E;/*線色*/
  padding: 0.2em 1em;/*文字周りの余白*/
	margin: 1.5em 0em;   /* 外側の余白 */
  border-radius: 0.5em;/*角丸*/
}

h3 {
	font-size:20px;
  font-weight: bold;
  padding: 0.1em 1em;/*文字周りの余白*/
	margin: 1.5em 0.5em;   /* 外側の余白 */
  color: #30434E;/*文字色*/
  border-left: solid 10px #30434E;/*左線*/
  border-bottom: solid 3px #30434E;
}

h4 {
	color: #30434E;
	font-size:17px;
  font-weight: bold;
  padding: 0em 1em;/*上下 左右の余白*/
}


/* インラインブロック */
.inline-block {
	display: inline-block;
	background-color:  #FFFFFF;
	height:  200px;
	width: 40%;
	padding: 35px;
	margin: 10px;
	border-radius: 0 30px 0 30px;
}


/* テーブル1 */
.t1 td, th {
	padding: 15px;
	vertical-align: top;
	text-align: left;	/*センタリング*/
	width: 50%;			/*幅*/
	height:300px;
}


/* グリッドレイアウト（表） */
#list {
  display: grid;
  justify-items: left;
  align-items: flex-start;
	grid-template-columns: 60px 1fr;
	gap: 10px;
	place-content: center;
	margin: 0em 2em;   /* 上下・左右 */
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* ツールチップ */
.text-tooltip {
  border-bottom: dotted 1px #333;
  position: relative;
}
.tooltip-content {
  opacity: 0;
  visibility: hidden;
  font-size: 70%;
  white-space: nowrap;
  border-radius: 5px;
  background-color: #555;
  color: #fff;
  padding: 5px 10px;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .6s ease-in-out;
} 
.tooltip-content:before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% - 9px);
  border: 9px solid transparent;
  border-top: 9px solid #555;
}
.text-tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}