@charset "UTF-8";

/* === 全体にかかる設定 =============== */

/* 基本設定 */
html {
  font-size: 16px;
}

body {
  background-color: #000;
  color: #eee;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.1;
}

/* コンテナの左右の余白 */
.container {
  padding: 0 15px;
}

/* 画像の幅 */
img {
  border-style: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

p {
  margin: 10px 0;
  line-height: 1.2;
}

/* === ヘッダー =============== */

header {
	background-image: linear-gradient(90deg, rgba(178, 48, 24, 1), rgba(109, 29, 14, 1));
  height: 60px;
}

.header-menu {
	display: flex;
	align-items: center;
	padding: 0 0 10px 0;
}
  .header-menu-area .container {
	padding: 0.5rem 1rem 0 0;
  }
@media (min-width:1400px) {
  .header-menu-area .container {
    width: 1400px;
    margin: 0 auto;
	padding: 0.6rem 0 0 0;
  }
}
		.header-menu>div {
			flex: 1;
		}

		.header-menu>div a {
			display: inline-block;
			margin: 0 10px;
			text-decoration: none;
			color: #333;
		}

		.header-menu>div a:hover {
			color: #007BFF;
		}

		.header-menu .left .logo {
			width: 200px;
			margin-bottom: 0.3rem;
			margin-top: 0;
		}
		.header-menu .left .disp_sp {
			display: inline-block;
			margin-left: 0.5rem;
		}
		.header-menu .left {
			line-height: 1.3;
			font-size:min(9px, 0.7rem);
			color: #fff;
		}
		.header-menu .center {
			font-size: min(1.8vw, 0.8rem);
			line-height: 1.5;
			letter-spacing: 0.05rem;
		}
		/* 中央部分のリンクを横並び */
		.center {
			display: flex;
			justify-content: center;
			gap: 15px;
			/* アイテム間のスペース */
		}

		.header-menu .right  {
      gap: 1rem;
		}
		.header-menu .right a {
			font-weight: bold;
			font-size:1em;
			color: #fff;
		}
		.header-menu .right a:hover {
			color: rgba(255, 255, 255, 0.6);
		}
		.header-menu .right img {
			width: 25px;
			margin: 0 1.2rem 0.2rem 0.5rem;
		}
		.header-menu .right img:hover {
			opacity: 0.6;
		}
		.header-menu .right {
  display: flex;
  align-items: center;         /* 垂直中央揃え */
  justify-content: flex-end;
		}
		
/* === ハンバーガーメニュー =============== */

		/* ハンバーガーメニューアイコン */
		.hamburger {
			position: relative;
			display: inline-block;
			cursor: pointer;
		}

		.hamburger span {
			display: block;
			width: 25px;
			height: 3px;
			margin: 5px auto;
			background-color: #fff;
			transition: 0.3s;
		}

		/* ハンバーガーメニューの中身 */
		.hamburger-menu {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: #000;
			z-index: 10;
			overflow-y: auto;
		}

		.hamburger-menu .menu-header {
			text-align: center;
			padding: 15px;
			background-color: #333;
			font-size: 18px;
			font-weight: bold;
			border-bottom: 1px solid #444;
			cursor: pointer;
		}

		.hamburger-menu a {
			display: block;
			padding: 10px 20px;
			text-decoration: none;
			color: #fff;
			text-align: left;
			border-bottom: 1px solid #444;
			text-align: center;
		}

		.hamburger-menu a {
			color: #fff !important;
		}
		.hamburger-menu a:hover {
			background-color: #111;
		}

    @media (max-width:700px) {
      header {
        height: 65px;
      }
      .header-menu .center {
        display: none;
      }
    .header-menu .left .logo {
      width: 165px;
    }
		.header-menu .left {
			margin-left: 0.3rem;
		}
		.header-menu .right  {
      gap: 0;
		}
		.header-menu .right img {
			width: 20px;
			margin: 0 0 0.2rem 0;
		}
		.header-menu .right div:last-child {
      margin-left: 0.5rem;
		}
  }


/* === 本文（メインコンテンツ部分） =============== */

/* 見出し */
h1 {
  margin: 0.5rem 0.5rem 0.4rem 0.5rem;
  font-size: 150%;
  font-weight: bold;
  text-align: center;
}

h2 {
  margin: 1rem 0 0.6rem 0;
  padding: 0.3rem 0.6rem;
  font-size: 110%;
  font-weight: bold;
  background-image: linear-gradient(90deg, rgba(178, 48, 24, 1), rgba(109, 29, 14, 1));
  box-shadow: -7px -7px 0 rgba(91, 26, 15, 1);
  color: #fff;
}

h3 {
  font-size: 105%;
  margin: 0.2rem 0 0.2rem 0;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding: 0.5rem 0 0.5rem 0;
}
h3:before {
    content: '';
    border-left: 8px solid #d61518;
    margin-right: 0.5rem;
    margin-right: 15px;
}

h4 {
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: bold;
}

/* 強調 */
strong {
  color: #f00;
  font-weight: bold;
}

em {
  font-weight: bold;
  font-style: normal;
}

/* 導入文 */
.lead {
  font-size: 1.1rem;
}

/* 文字サイズ */
.text_ll {
	font-size:143%;
}
.text_l {
	font-size:128%;
}

.text_s,
.small {
	font-size:86%;
}
.text_ss {
	font-size:75%;
}


.lead {
	font-size: 110%;

}

.catch {
	font-size: 110%;

}


/* 囲み */
.kakomi {
  margin: 1rem 0;
  padding: 0.3rem 0.8rem;
  border: 1px solid #ccc;
  color: #333;
  line-height: 1.1 !important;
}

.kakomi h5 {
  margin: 0 0 1rem 0;
}

.kakomi p {
  line-height: 1.7;
}

.kakomi p:last-child {
  margin-bottom: 0;
}

/* 注釈 */
.hosoku {
  margin-bottom: 2rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.hosoku ul {
  margin: 2rem 0;
  list-style: none;
}

.hosoku li {
  margin-left: 1rem;
  margin-bottom: 0.3rem;
  text-indent: -1rem;
}

.hosoku li::before {
  content: '※';
  margin-right: 0.2rem;
}

/* テーブル */


table {
  border-collapse: collapse;
	width:100%;
  margin-bottom: 2rem;
}
.table  {
	margin:20px 0;
	border-bottom: 1px solid #666;
}

.table th,
.table td {
  border-top: 1px solid #666;
}


table.hyou td td {
	border:0px solid;
	padding:0px;
}
table.hyou {
	border-collapse:collapse;
	border:1px solid #933;
	border-spacing:0;
	empty-cells:show;
}
table.hyou th {
	border-collapse:collapse;
	background-color:#333;
	padding:6px;
	font-size:100%;
	border-width:1px;
	border-style:solid;
	border-color:#666;
}
table.hyou td {
	border-collapse:collapse;
	background-color:#000;
	padding:6px;
	font-size:100%;
	border-width:1px;
	border-style:solid;
	border-color:#666;
}

table.hyou td.midashi {
	background-color:#333;
}
table.hyou td.midashi .text_s {
	color:#2a5b77;
}

table.hyou02 {
	border-collapse:collapse;
	border-bottom:1px solid #acabab;
	border-spacing:0;
	empty-cells:show;
}
table.hyou02 th {
	border-collapse:collapse;
	padding:10px 15px;
	font-size:100%;
	border-top:1px solid #acabab;
	background-color:#dee;
}
table.hyou02 td {
	border-collapse:collapse;
	background-color:#fff;
	padding:10px 15px;
	font-size:100%;
	border-top:1px solid #acabab;
}

/* === マージン調整 ===============  */
.mb_0 {
  margin-bottom: 0;
}
.mb_1 {
  margin-bottom: 1rem;
}
.mb_2 {
  margin-bottom: 2rem;
}
.mb_3 {
  margin-bottom: 3rem;
}
.mb_4 {
  margin-bottom: 4rem;
}
.mb_5 {
  margin-bottom: 5rem;
}
.mt_0 {
  margin-top: 0;
}
.mt_1 {
  margin-top: 1rem;
}
.mt_2 {
  margin-top: 2rem;
}
.mt_3 {
  margin-top: 3rem;
}
.mt_4 {
  margin-top: 4rem;
}
.mt_5 {
  margin-top: 5rem;
}

.mx_auto {
  margin-left: auto!important;
  margin-right: auto!important;
}

.my_auto {
  margin-top: auto!important;
  margin-bottom: auto!important;
}

.py_0 {
  padding-top: 0!important;
  padding-bottom: 0!important;
}

/* テキスト配置 */
.text_center {
  text-align: center !important;
}
.text_right {
  text-align: right !important;
}
.text_left {
  text-align: left !important;
}
/* === ホームボタン =============== */

.home_btn {
  text-align: center;
  margin: 3rem 0;
}

.home_btn a {
  display: inline-block;
  margin: 0;
  padding: 1.1rem 1.8rem;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* === フッター =============== */

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

footer {
  padding: 1rem 0 0.8rem 0;
  line-height: 1.5;
  font-size: 0.7rem;
  background-color: #f1f1f1;
  color: #333;
  letter-spacing: 0.05rem;
  text-align: center;
}

footer a {
  color: #333 !important;
}

address {
  padding: 0 0;
  margin-top: 0.5rem;
}

.admin_name {
  margin: 0 auto;
  max-width: 200px;
}


@media (min-width:1480px) {
  footer .container {
    width: 1480px;
    margin: 0 auto;
    padding: 0;
    align-items: center;
  }
}

@media (min-width:600px) {
  footer {
    text-align: left;
    padding-top: 1.5rem;
  }
.footer_container {
  display: flex;
  justify-content: center;
}
address {
  padding: 0 0;
  margin-top: -0.5rem;
  margin-left: 1rem;
}

}

/* === リンク色 =============== */

/* 標準 */
a:link {
  color: #ffff00;
  text-decoration: none;
}

a:visited {
  color: #ffff00;
}

a:hover {
  color: #f30;
}

a:active {
  color: #fc0;
}

/* 黒いリンク文字 */
.site_name a:link,
.main_menu a:link,
.home_btn a:link {
  color: #fff;
  text-decoration: none;
}

.site_name a:visited,
.main_menu a:visited,
.home_btn a:visited {
  color: #eee;
}

.site_name a:hover,
.main_menu a:hover,
.home_btn a:hover {
  color: #999;
}

.site_name a:active,
.main_menu a:active,
.home_btn a:active {
  color: #ff0;
}

/* ボタン ホバー時 */

.home_btn a:hover {
  color: #fff;
  background-color: #ccc;color: #333;
}

/* === メディアクエリ =============== */

@media (min-width:600px) {
  body {
    line-height: 2;
  }
  h2 {
    margin: 1rem 0;
    padding: 0.3rem 1rem;
    font-size: 120%;
  }
}

@media (min-width:1025px) {
  .container {
    width: 1025px;
    margin: 0 auto;
  }
}
