* {
	box-sizing: border-box;
}
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
article,
footer,
header,
nav,
section {
	display: block;
}
[hidden],
template {
	display: none;
}
a {
	text-decoration: none;
	background-color: transparent;
}
a:active,
a:hover {
	outline: 0;
}
h1,
h2,
h3,
h4 {
	margin: 0;
}

p {
    margin: 0 0 18px 0; /* pの上右下左余白 */
    line-height: 1.5;   /* 行間を少し広げる */
}

b,
strong {
	font-weight: bold;
}
ol, ul {
	margin: 0;
	padding:0;
	list-style: none;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	border: 0;
    vertical-align: bottom;
}
svg:not(:root) {
	overflow: hidden;
}
hr {
	box-sizing: content-box;
	height: 0;
}
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}
button {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
textarea {
	overflow: auto;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th {
	padding: 0;
}

.table_news {
  margin: 0 auto; /* テーブル全体を中央に配置 */
  overflow-y: auto;
  height: 65px; /* テーブル全体の高さ */
  width: 850px; /* テーブル全体の幅 */
  -webkit-overflow-scrolling: touch;
}
.table_news table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #adadad;
  border-left: 1px solid #adadad;
  border-right: 1px solid #adadad;
}
.table_news th,
.table_news td {
  vertical-align: middle;
  padding: 5px; /* 行の高さ */
  border: none; /* まず全ての線を消去 */
  border-bottom: 1px solid #adadad; /* 下線のみを改めて指定 */
  color: #000;
  font-size: 14px;
  text-align: left; /* テキストを左寄せにする */
  white-space: normal;
  word-wrap: break-word;
}
.table_news th {
  background: #000;
  color: #fff; /* ヘッダーの文字色を白に設定 */
}
.table_news td {
  background: #fff;
}
.table_news .sticky {
  position: sticky;
  top: 0;
  left: 0;
  border-top: none;
}
.table_news .sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #183B59;
  z-index: -1;
}

.table00 {
    width: 900px;              /* 他のテーブルに合わせて幅を指定 */
    margin: 0 auto;            /* 中央寄せ */
    border-collapse: collapse; /* セルの線を結合させる（隙間をなくす） */
}
.table00 th,
.table00 td {
    background-color: #fff;
    border: 1px dotted #555;
    padding: 0px;             /* セル内余白 */
    text-align: center;
    vertical-align: center;       /* 上下中央揃え */
	font-size: 13px;
}
/* 1行目のセルの「上線」を消す */
.table00 tr:first-child th,
.table00 tr:first-child td {
    border-top: none;
}
/* 最後の行のセルの「下線」を消す */
.table00 tr:last-child th,
.table00 tr:last-child td {
    border-bottom: none;
}
/* 各行の最初のセルの「左線」を消す */
.table00 th:first-child,
.table00 td:first-child {
    border-left: none;
}
/* 各行の最後のセルの「右線」を消す */
.table00 th:last-child,
.table00 td:last-child {
    border-right: none;
}

.table01{
  border-collapse:separate;
  border-spacing: 5px;
  width: 900px;
  margin: 0 auto; /* 上下は0、左右は自動配置 */
}
.table01 th,table td{
  border-radius: 5px;
  text-align: left;
  padding: 10px 10px 10px 10px;
}
.table01 th{
  background-color: #6495ED;
  color: white;
}
.table01 td{
  background-color: #F0F8FF;
}
/* 表の1行目のセルだけデザインを変える設定 */
.table01 tr:first-child th {
    background-color: #4169E1; /* 1行目のセル色 */
    font-size: 28px;           /* 1行目のフォントサイズ */
	padding-left: 40px;
}
/* 表の中のリスト設定 */
.table01 ul {
    list-style-type: disc; /* 黒丸（●）を表示 */
    padding-left: 20px;    /* 左に余白を作り、●をセル内に収める */
    margin: 0;             /* 余計な外側の余白を削除 */
}
.table01 ul li {
    margin-bottom: 3px;    /* 行間を少し空けて読みやすくする */
}
.table01 ol {
    list-style-type: decimal; /* マーカーを数字（1. 2. 3.）にする */
    padding-left: 25px;       /* 左余白（数字の分、黒丸より少し広めにとると綺麗） */
    margin: 0;
}
.table01 ol li {
    margin-bottom: 5px;       /* 行間 */
    padding-left: 5px;        /* 数字と文字の間隔を少し空ける */
}
/* 講座1：思考基礎（スタンダードな青：基本） */
#lecture1 th { background-color: #4169E1; } /* RoyalBlue */
#lecture1 tr:first-child th { background-color: #274cc9; } /* 少し濃く */
#lecture1 td { background-color: #f0f4ff; } /* 青味のある白 */
/* 講座2：対人技能（ターコイズブルー：コミュニケーションの広がり） */
#lecture2 th { background-color: #008B8B; } /* DarkCyan */
#lecture2 tr:first-child th { background-color: #006666; } /* 濃い緑青 */
#lecture2 td { background-color: #f0ffff; } /* 水色系の白 */
/* 講座3：記述技能（スチールブルー：文書の堅実さ・知的さ） */
#lecture3 th { background-color: #4682B4; } /* SteelBlue */
#lecture3 tr:first-child th { background-color: #316591; } /* 濃い灰青 */
#lecture3 td { background-color: #f4f8fb; } /* 落ち着いた白 */
/* 講座4：管理実践（ネイビー・ミッドナイト：統率・重厚感） */
#lecture4 th { background-color: #191970; } /* MidnightBlue */
#lecture4 tr:first-child th { background-color: #0d0d4d; } /* ほぼ黒に近い紺 */
#lecture4 td { background-color: #f2f2f6; } /* グレー寄りの白 */
/* セット：4講座セット（ゴールド：特別価格・プレミアム感） */
#set {
    border: 3px solid #daa520; /* 外枠もゴールドで囲って目立たせる */
}
#set th { 
    background-color: #daa520; /* GoldenRod */
    color: #fff;
}
#set tr:first-child th { 
    background-color: #b8860b; /* DarkGoldenRod */
} 
#set td { 
    background-color: #fffbf0; /* クリーム色 */
}

/*-------------------------
	Common
--------------------------*/
html,
body {
	width: 100%;
	min-width: 1200px;
	height: 100%;
	font-family: 'Hiragino Kaku Gothic ProN','Meiryo',sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #555;
	animation-name: fade;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-iteration-count: 1;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

body a {
    color: inherit;          /* リンクテキストは親要素の文字色を引き継ぐ */
    text-decoration: none;   /* 通常時は下線なし */
}
body a:hover {
    text-decoration: underline; /* オンマウスで下線表示 */
    color: inherit;             /* 色が変わらないように固定 */
}
.entry-btn:hover,
.button1:hover,
nav a:hover {
    text-decoration: none;	/* ボタンはホバー時も下線なし */
	color: #fff;		/* ボタンのフォント色はホバー時も白 */
}

h1 {
	line-height: 130%;
	margin-bottom: 20px;
	font-family: 'Hiragino Kaku Gothic ProN','Meiryo',sans-serif;
	font-size: 44px;
	color: #fff;
}

h2 {
	line-height: 140%;
	margin-bottom: 20px;
	font-family: 'Hiragino Kaku Gothic ProN','Meiryo',sans-serif;
	font-size: 36px;
	color: #000;
}

h3 {
	font-family: 'Hiragino Kaku Gothic ProN','Meiryo',sans-serif;
	margin-bottom: 5px;
	font-size: 28px;
	color: #555;
}

/*-------------------------
	Entry
--------------------------*/
.entry-btn {
	width: 150px;
	height: auto;        /* 中身に合わせて縦幅を伸縮させる */
	line-height: 1.3;    /* 行間 */
	padding: 14px 10px 12px;  /* 余白 */
	display: block;
	position: relative;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: #009900;
	border-radius: 5px;
	box-shadow: 0 5px 0 #006600;
	transition: all 0.2s ease;
}
.entry-btn:hover {
	opacity: 0.7;
}
.entry-btn.close {
	background: #ccc;
	box-shadow: 0 6px 0 #bbb;
}
.entry-btn.close:hover {
	opacity: 1;
}

.boxContainer{
  overflow: hidden;
}

.download {
	display: block;
	width: 360px;
	line-height: 32px;
	text-align: center;
	font-family: "YuMincho", "Yu Mincho", serif;
	font-size: 26px;
	font-weight: bold;
	color: #FFF;
	background-color: #b0c4de;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	float: left;
}
.download:hover {
	background-color: #e6e6fa;
}

/*-------------------------
	このような方々におすすめ
--------------------------*/
.target-box {
    background-color: #ffffff;
    border: 2px solid #3366cc; /* 濃い青枠 */
    border-radius: 10px;       /* 角丸 */
    padding: 20px 30px 15px;
    width: 930px;
    margin: 0 auto;            /* 中央寄せ */
    box-sizing: border-box;
}
.target-box h3 {
    text-align: center;
    margin-top: 0;
    border-bottom: 1px dashed #3366cc; /* 下に点線 */
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.check-list {
    list-style: none; /* デフォルトの黒丸を消す */
}
.check-list li {
    position: relative;
    padding-left: 35px; /* チェックマーク分のスペース */
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}
/* CSSでチェックマークを作る */
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 12px;
    border-left: 3px solid #e60012;  /* 赤いチェック */
    border-bottom: 3px solid #e60012;
    transform: rotate(-45deg);
}
.check-list b {
    color: #00306d;
    font-size: 18px;
}
.check-list .note {
    font-size: 14px;
    font-weight: normal;
}

/*-------------------------
	この研修で得られること
--------------------------*/
.benefit-section {
    width: 900px;           /* サイト幅に合わせる */
    margin: 0 auto;         /* 中央寄せ */
    display: flex;          /* 横並びにする */
    justify-content: space-between; /* 左右のバランス調整 */
    align-items: center;    /* 上下の中心を揃える */
    gap: 40px;              /* 文字と画像の間隔 */
}
/* 左側のテキスト設定 */
.benefit-text {
    width: 57%;             /* テキスト幅を少し広めに */
    text-align: left;       /* 左揃え */
}
.benefit-text p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}
/* 最初の段落だけ少し強調（リード文） */
.benefit-text .lead-text {
    font-weight: bold;
    color: #3366cc;         /* テーマカラーの青 */
    font-size: 17px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}
/* 右側の画像設定 */
.benefit-image {
    width: 38%;             /* 画像幅 */
}
.benefit-image img {
    width: 100%;            /* 横幅いっぱいに表示 */
    height: auto;
    border-radius: 8px;     /* 角を少し丸める */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* ふんわり影をつけて浮き上がらせる */
}

/*-------------------------
	Navigation
--------------------------*/
nav {
	position: relative;
	height: 90px;
	background: #fff;
	box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}
nav li {
	display: inline-block;
}
nav ul {
    display: flex; /* Flexboxを有効にする */
    justify-content: center; /* アイテムを水平方向の中央に配置する */
    align-items: center; /* アイテムを垂直方向の中央に配置する */
    height: 100%; /* 親要素(nav)の高さに合わせる */
    gap: 40px; /* 各アイテムの間の間隔を指定 (この数値を調整して好みの間隔にする) */
}
nav li a {
	display: block;
	height: 90px;
	line-height: 90px;
	padding: 0 10px;
}
nav li img {
	vertical-align: middle; /* ロゴ位置 */
}
nav li a:hover {
	color: #999;
	background: #fcfcfc;
	border-bottom: 4px solid #00306d;
}
nav li:nth-child(1) a:hover {
	background: none;
	border: none;
	opacity: 0.7;
}
nav li a.close {
	color: #BBB;
	text-decoration: line-through;
}
nav li a.close:hover {
	color: #BBB;
	background: none;
	border-bottom: none;
}


/*-------------------------
	Catch
--------------------------*/
.catch {
	position: relative;
	width: 100%;
	height: 100%;
}
.catch a img {
	z-index: 8;
	position: absolute;
	top: 30px;
	left: 5%;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.catch img:hover {
	opacity: 0.7;
}
.catch div {
	z-index: 6;
	position: absolute;
	top: calc(50% - 150px);
	left: calc(50% - 440px);
	width: 880px;
	text-align: center;
	font-family: "YuMincho", "Yu Mincho", serif;
	font-size: 40px;
	color: #FFF;
}
.catch div a {
	display: block;
	z-index: 8;
	position: relative;
	width: 360px;
	line-height: 62px;
	margin: 0 auto;
	font-size: 26px;
	color: #FFF;
	background-color: rgba(0,0,0,0.7);
	border: 1px solid #FFF;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.catch div a:hover {
	color: #000;
	background-color: #FFF;
}
.catch > a:nth-last-of-type(1) {
	display: block;
	z-index: 5;
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: default;
}
.catch > a:nth-last-of-type(1)::before {
	display: block;
	position: absolute;
	left: calc(50% - 7px);
	width: 26px;
	height: 10px;
	content: '';
	background-color: #FFF;
	cursor: pointer;
	transform: rotate(-45deg);
	animation-name: arrow;
	animation-duration: 1.6s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
.catch > a:nth-last-of-type(1)::after {
	display: block;
	position: absolute;
	right: calc(50% - 7px);
	width: 26px;
	height: 10px;
	content: '';
	background-color: #FFF;
	cursor: pointer;
	transform: rotate(45deg);
	animation-name: arrow;
	animation-duration: 1.6s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
@keyframes arrow {
	0% {
		bottom: 30px;
	}
	50% {
		bottom: 42px;
	}
	100% {
		bottom: 30px;
	}
}
.slide li {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
	animation-duration: 15s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
.slide li:nth-child(1) {
	background-image: url(img/catch1.jpg);
	animation-name: catch1;
}
.slide li:nth-child(2) {
	background-image: url(img/catch2.jpg);
	animation-name: catch2;
}
.slide li:nth-child(3) {
	background-image: url(img/catch3.jpg);
	animation-name: catch3;
}
@keyframes catch1 {
	0% {
		opacity: 1;
	}
	23% {
		opacity: 1;
	}
	33% {
		opacity: 0;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes catch2 {
	0% {
		opacity: 0;
	}
	23% {
		opacity: 0;
	}
	33% {
		opacity: 1;
	}
	56% {
		opacity: 1;
	}
	66% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes catch3 {
	0% {
		opacity: 0;
	}
	56% {
		opacity: 0;
	}
	66% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/*-------------------------
	Merit
--------------------------*/
.merit {
	position: relative;
	height: 200px;
	overflow: hidden;
	background: #000033 url(img/man.png) no-repeat calc(80% + 200px) 0;
}
.merit div {
	width: 100%;
	padding: 35px 0 0 10%; /* 上、右、下、左 の順でテキスト周りの余白指定 */
	text-align: left;     /* 左揃えに変更 */
}
.merit p {
	position: relative;
	left: calc(100% - 500px);
	width: 500px;
	line-height: 180%;
	margin-bottom: 18px;
	padding-left: 54px;
	text-align: left;
}
.merit p::before {
	display: block;
	position: absolute;
	top: 12px;
	left: 20px;
	width: 10px;
	height: 5px;
	content: '';
	background-color: #8CA8CA;
	transform: rotate(50deg);
}
.merit p::after {
	display: block;
	position: absolute;
	top: 10px;
	left: 23px;
	width: 18px;
	height: 5px;
	content: '';
	background-color: #8CA8CA;
	transform: rotate(-50deg);
}
.merit .entry {
	margin: 50px 0 0 calc(100% - 514px);
}

/*-------------------------
	About
--------------------------*/
.about {
	padding: 50px 0 0 0;
	text-align: center;
}
.about div:nth-of-type(1) {
	position: relative;
	margin: 0 auto 120px auto;
}
.about div:nth-of-type(1)::before {
	display: block;
	position: absolute;
	bottom: -65px;
	left: calc(50% - 40px);
	width: 80px;
	height: 1px;
	content: '';
	background-color: #111;
}

/*-------------------------
	Step
--------------------------*/
.step {
	text-align: center;
}
.step h3 {
	font-family: "YuMincho", "Yu Mincho", serif;
	margin-bottom: 40px;
	font-size: 24px;
	color: #000;
}
.step dl {
	display: block;
	width: 800px;
	margin: 0 auto 42px auto;
	text-align: left;
	font-size: 0;
}
.step dt {
	display: inline-block;
	width: 150px;
	margin: 0;
	padding-top: 28px;
	vertical-align: top;
	font-size: 20px;
	font-weight: bold;
	color: #333;
}
.step dd {
	display: inline-block;
	position: relative;
	width: 600px;
	margin: 0;
	padding: 30px;
	vertical-align: top;
	font-size: 13px;
	background: #deebf5;
	border-left: 8px solid #0C3A71;
}
.step dl:not(:last-child) dd::before {
	display: block;
	position: absolute;
	bottom: -62px;
	left: 0;
	width: 600px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 80px;
	color: #DDD;
	content: '▼';
	transform: scale(1,0.3);
}
.step dt span {
	display: block;
	font-size: 10px;
	font-weight: 400;
	color: #666;
}
.step dd span {
	font-size: 13px;
	font-weight: 400;
	color: #666;	
}
.step b {
	display: block;
	margin-bottom: 12px;
	font-size: 17px;
	color: #333;
}
.kome li {
	display: block;
	position: relative;
	padding-left: 16px;
}
.kome li::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	content: '※';
}
.kome li:not(:last-child) {
	margin-bottom: 6px;
}
.test {
	margin: 16px 0 0 20px;
}
.test a,
.memo a {
	color: #0C3A71;
	text-decoration: underline;
}
.test a:hover,
.memo a:hover {
	text-decoration: none;
}
.step .entry {
	width: 520px;
	height: 66px;
	line-height: 66px;
	margin: 60px auto 0 auto;
}
.marker_pink {
  background: linear-gradient(transparent 60%, #E6EBF1 0%);
}

.buttons1{
	text-align: center;
  }
  .button1{
	display: inline-block;
	width: 450px;
	line-height: 24px;
	text-align: center;
	font-family: 'Hiragino Kaku Gothic ProN','Meiryo',sans-serif;
	font-size: 24px;
	font-weight: bold;
	background: #3366cc;
	margin: 0 5px;
	padding: 20px 5px;
	border-radius: 5px;
	color: #FFF;
	text-decoration: none;
  }
  .button1:hover {
	background-color: #8aa9e8;
 }


/*-------------------------
	box
--------------------------*/
.box01 {
    width: 220px;
    margin: 0;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
	display: flex;          /* Flexbox化 */
    flex-direction: column; /* 中身を縦並びにする（タイトル→文章） */
}
.box01 .box-title {
    background: #3366cc;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
/* 共通設定 */
.box01 p {
    margin: 0;
    text-align: center;
    width: 100%;
}
/* 1つ目のPタグ（説明文）：エリアを広げて上下中央に配置 */
.box01 p:first-of-type {
    padding: 15px 10px 5px 10px; /* 下の余白を少し減らす(5px) */
    font-size: 15px;    
    /* 縦幅いっぱいに広がり、その中で中央揃えにする設定 */
    flex: 1;                
    display: flex;          
    align-items: center;    
    justify-content: center;
}
/* 2つ目のPタグ（リンク）：広げずに下に配置 */
.box01 p:last-of-type {
    padding: 0 10px 15px 10px; /* 上の余白を0にする */
    font-size: 13px;           /* 文字サイズ(10pt相当) */    
    /* 広がらないようにする設定 */
    flex: 0 0 auto;
    display: block;
}

.box02{
	width: 900px;
	border: 5px double #3366cc;
	position: relative;
	margin: 70px auto 0; 
}
.box02 h2{
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -0.7em;
}
.box02 span{
	padding: 0 0.5em;
	background: #FFF;
	color: #3366cc;
}
.box02 .inner{
	padding: 3em 3em 2em;
	display: flex;                  /* 横並びにする魔法の呪文 */
    justify-content: space-between; /* テキストと画像の間に隙間を作って配置 */
    align-items: flex-start;        /* 上端を揃える（中央揃えが良い場合は center に） */
}
/* 左側のテキストエリア */
.lecturer-text {
    width: 65%;    /* 幅を全体の65%にする */
}
/* 右側の画像エリア */
.lecturer-image {
    width: 30%;    /* 幅を全体の30%にする（残り5%は隙間） */
    text-align: center; /* 画像をエリア内で中央に */
}
/* 画像自体のサイズ調整 */
.lecturer-image img {
    width: 100%;   /* エリア幅いっぱいに表示 */
    height: auto;  /* 高さは自動調整 */
    border-radius: 5px; /* 角を少し丸める（お好みで削除可） */
}

.box-container {
    display: flex;             /* Flexboxを有効化（これで横並びになる） */
    justify-content: center;   /* 中央寄せ */
    gap: 20px;                 /* 箱と箱の間の隙間 */
    width: 90%;                /* 全体の幅（必要に応じて調整） */
    margin: 0 auto;            /* 全体を中央に配置 */
}

 /*-------------------------
	Memo
--------------------------*/
.memo {
	width: 800px;
	margin: 48px auto 48px auto;
	padding: 2px 30px 24px 30px;
	text-align: left;
	font-size: 12px;
	background-color: #F0F0F0;
}
.memo b {
	display: block;
	font-weight:bold;
	font-size: 14px;
	margin: 24px 0 6px 0;
}
.memo p {
	margin-bottom: 6px;
}
.memo ul {
	margin: 16px 30px;
}

/*-------------------------
	Contact
--------------------------*/
.contact {
	width: 800px;
	margin: 0 auto 60px auto;
	padding: 30px;
	font-size: 16px;
	border: 1px solid #CCC;
}
.contact ul {
	line-height: 180%;
}
.contact ul:not(:last-child) {
	margin-bottom: 24px;
}
.contact b {
	/* display: block; */
	margin: 0 0 4px 20px;
	font-size: 16px;
}

/*-------------------------
	Footer
--------------------------*/
footer {
	line-height: 60px;
	background-color: #333;
}
footer ul {
	text-align: center;
}
footer li {
	display: inline-block;
	line-height: 18px;
	padding: 0 18px;
	font-size: 12px;
	color: #999;
	border-right: 1px solid #999;
}
footer li:nth-child(1) {
	padding-right: 40px;
}
footer li a {
	color: #999;
}
footer li a:hover {
	text-decoration: underline;
}

.header {z-index:1;position:relative;box-shadow:0 0 3px rgba(0,0,0,0.25) inset}#head{height:98px;width:962px;margin:0 auto;text-align:left;background-image:url(https://seminar-info.jp/entry/img/head_bg.jpg);background-position:left top;background-repeat:no-repeat}#menu{margin:20px 0 0 45px;text-align:right}#menu ul{margin:36px 0 0 45px}#menu li{list-style:none;display:inline;margin-right:8px}#sub_menu{text-align:right;margin:9pt 8px 0 0}#sub_menu li{list-style:none;display:inline;font-size:11px;border:1px solid #ccc;padding:5px 8px 5px 18px;background-image:url(https://seminar-info.jp/entry/img/arrow_5.jpg);background-position:8px center;background-repeat:no-repeat;margin-right:-1px}#sub_menu li a{color:#666}#sub_menu li a:hover{color:#004b91}#sub_menu span{list-style:none;display:inline;font-size:11px;border:1px solid #ccc;padding:5px 8px 5px 23px;background-image:url(https://seminar-info.jp/entry/img/wakaba.jpg);background-position:7px center;background-repeat:no-repeat;margin-right:-1px}#sub_menu span a{color:#666}#sub_menu span a:hover{color:#004b91}#head a{text-decoration:none}#head a:hover{text-decoration:underline}#head #contact{text-align:right}#contact_btn_1{margin:0 4px 0 -5px}#foot{clear:both;height:340px;font-size:9pt;background-image:url(https://seminar-info.jp/img/foot_bg.jpg);background-position:center top;background-repeat:repeat-x;padding:45px 0 0 10px}#foot_contents{width:962px;margin-left:auto;margin-right:auto}#foot_table{text-align:left}.foot_navi{width:179px;background-image:url(https://seminar-info.jp/img/arrow_2.png);background-repeat:no-repeat;background-position:5% 48%;border-bottom:dotted 1px #d0e9ff;text-indent:26px;text-shadow:-1px -1px 0 #012545}#foot_table a{line-height:31px;color:#fff;text-indent:26px;text-decoration:none}#foot_table a:hover{text-decoration:underline}#foot_logo{margin-left:18px}#foot p{font-size:10px;margin:20px 0 25px}#foot p,#foot_information{color:#fff;text-align:right}#foot_information{margin-left:15px}#copyright{display:bolock;width:100%;margin:0;padding:5px 0;background-color:#013b6d}#copyright small{display:block;margin:0 auto;width:962px;color:#fff;font-size:9pt;text-align:right}