@charset "utf-8";
/* -------------------------
         全体共通
-------------------------- */
body{
	margin:0;
	background:#fffbea;
	color:#5a4032;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight:400;
}
root{
	text: #5a4032;
	text-strong:#3a260e;
	brand:#e6c600;
	y:#ffeb99;
	y2:#ffd54f;
}
html, body {
	width: 100%;
}

main h1{
	text-align:left;
	font-size:2.5rem; 
	color:#5A4032; 
	font-weight:700;
	margin-bottom: 40px;
}

.content{ 
	max-width:1000px;
	background: #FFFFFF;
	border-radius: 10px;
	border: solid 3px #CAA400;
	margin: 150px auto 50px;
	padding:0px 20px 0px;
	font-size: 19px;
  }
.content .content__section{
	margin-bottom: 70px;
}
.content__list{
	list-style: none;
}
.content img{
	width: 70%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.content h2{
	font-size:1.4rem; 
	margin:0 0 10px; 
	color:#5a4032; 
	font-weight:700;
	border-left:6px solid #e6c600;
	padding-left:10px;
}
.content__text{
	text-indent: 1em;
}
.content__text__space__up{
	text-indent: 1em;
	margin-top: 36px;
}
.content__text__space__down{
	text-indent: 1em;
	margin-bottom: 36px;
}
.content__subsubtitle{
	margin-bottom: -20px;
}
.content__flex{
	display: flex;
}
.content__flex img{
	width: 45%;
}

.image__space{
	padding: 30px 0px;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

/* ---ヘッダー--- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%; 
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 10px 0;
	border-bottom: 3px solid #caa400;
	z-index: 1000;
	font-weight: 700;
	height: 65px;
}

header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	height: 10px;
	pointer-events: none;
}

.logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.logo img {
	width: 200px;
	height: auto;
	margin-left: 20px;
}

/*---nav-menu---*/
#nav-menu {
	flex: 1 1 auto;
	text-align: left;
	width: 70%;
}

#nav-menu ul {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: flex;
	gap: 20px;
	flex-wrap: nowrap;
	font-size: 1rem;
}

#nav-menu a {
	color: #5a4032;
	text-decoration: none;
	padding: 6px 0;
	border-radius: 8px;
	transition: all .25s ease;
	font-size: 18px;
}

#nav-menu a:hover {
	background: #ffe27a;
	box-shadow: 0 2px 6px rgba(0,0,0,.1);
	transform: translateY(-1px);
}

#nav-menu a[aria-current="page"] {
	background: rgba(255,235,153,.8);
	box-shadow: 0 0 0 2px #ffe27a inset;
	border-radius: 8px;
}

/*---ハンバーガーメニュー---*/
.menu-toggle-checkbox {
	display: none;
}

.menu-toggle {
	width: 30px;
	height: 22px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	z-index: 1200;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
}

.menu-toggle span {
	display: block;
	width: 26px;
	height: 3px;
	background: #5a4032;
	border-radius: 3px;
	transition: 0.4s;
}

/*---ハンバーガーアニメーション---*/
.menu-toggle-checkbox:checked + .menu-toggle span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}
.menu-toggle-checkbox:checked + .menu-toggle span:nth-child(2) {
	opacity: 0;
}
.menu-toggle-checkbox:checked + .menu-toggle span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/*---メニュー開閉（スマホ）---*/
#nav-menu {
	display: none;
}

.menu-toggle-checkbox:checked ~ #nav-menu {
	display: flex;
	flex-direction: column;
}

/*---PC（1450px以上）---*/
@media (min-width:1450px) {
	.menu-toggle {
		display: none !important;
  }

  #nav-menu {
	  display: flex !important;
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  transform: translate(-50%, -50%);
  }

  #nav-menu ul {
	  display: inline-flex;
	  gap: 20px;
  }
}

/*---タブレット・スマホ（1450px以下）---*/
@media (max-width:1450px) {
	header {
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		padding: 10px 0px 10px 0px;
  }

  .logo {
	  position: static; 
	  transform: none;
	  margin: 0 auto;
  }

  .logo img {
	  height: 80px;
	  width: auto;
  }

  .menu-toggle {
	  display: flex !important;
	  gap: 5px;
  }

  #nav-menu {
	  position: absolute;
	  background: #ffeb99;
	  border: 1px solid #e6c600;
	  border-radius: 8px;
	  top: 50px;
	  width: 100%;
	  padding: 10px 0;
	  box-shadow: 0 6px 14px rgba(0,0,0,.18);
	  z-index: 1100;
	  margin-top: 100px;
	  margin-left: 20px;
  }

  #nav-menu ul {
	  flex-direction: column;
	  gap: 10px;
	  padding: 0 10px;
  }

  #nav-menu a {
	  display: block;
	  padding: 8px 10px;
  }

}

/*---サブナビゲーション---*/
.toc {
	position: fixed;
	top: 88px;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 50px;
	background: #ffffff;
	border-bottom: 3px solid #caa400;
	display: flex;
	align-items: center;
	justify-content: center;  
}
.toc ul {
	list-style: none;
	margin: 0;
	padding: 0 16px;
	display: flex;
	gap: 18px;
	flex-wrap: nowrap;
	font-size: 0.98rem;
	position: relative; 
}
.toc li{
	margin: auto 0;
}

.toc a {
	color:#5a4032;
	text-decoration: none;
	padding: 6px 8px;
	border-radius: 6px;
	font-weight: 700;
	font-size:18px; 
}
.toc a:hover {
	background-color: #ffe27a;
	color:#3a260e;
	text-decoration: none;
}
.toc a[aria-current="page"]{
	background:rgba(255,235,153,.8);
	shadow:0 0 0 2px #ffe27a inset;
	border-radius:8px;
}
.toc2 {
	position: fixed;
	top: 140px;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 50px;
	background: #ffffff;
	border-bottom: 3px solid #caa400;
	display: flex;
	align-items: center;
	justify-content: center;  
}
.toc2 ul {
	list-style: none;
	margin: 0;
	padding: 0 16px;
	display: flex;
	gap: 18px;
	flex-wrap: nowrap;
	font-size: 0.98rem;
	position: relative;     
}
.toc2 li{
	margin: auto 0;
}
.toc2 a {
	color:#5a4032;
	text-decoration: none;
	padding: 6px 8px;
	border-radius: 6px;
	font-weight: 700;
	font-size:18px; 
}
.toc2 a:hover {
	background-color: #ffe27a;
	color:#3a260e;
	text-decoration: none;
}
.toc2 a[aria-current="page"]{
	background:rgba(255,235,153,.8);
	shadow:0 0 0 2px #ffe27a inset;
	border-radius:8px;
}
.toc-indicator {
	position: absolute;
	height: 4px;
	border-radius: 999px;
	background: #CAA400;
	bottom: -6px;
	left: 0;
	width: 0;
	transition: left .25s ease, width .25s ease;
}
@media (max-width: 1450px) {
	.toc {
		justify-content: space-between;
		overflow-x: auto; 
		overflow-y: hidden;
	}
	
	.toc ul {
		min-width: max-content; 
		font-size: 0.9rem;
	}
	.toc2 {
		justify-content: space-between;
		overflow-x: auto; 
		overflow-y: hidden;
	}
	
	.toc2 ul {
		min-width: max-content; 
		font-size: 0.9rem;
	}
}


/*---サイトマップ（sitemap）---*/

.sitemap {
	padding:40px 0 20px;
	color:var(--text);
}
.sitemap .map-inner{
	max-width:1500px;
	margin:0 auto;
	padding:0 40px;
	display:flex;
	flex-wrap:wrap; 
	justify-content:center;
	align-items:flex-start;
	gap:0px 0px;        
}
.map-col{
	text-align:left;
	min-width:150px;
}

.map-title {
	font-weight:700;
	color:#5a4032;
	margin:0 0 4px !important;
}
.map-title a {
	color:#5a4032;
	text-decoration:none;
	font-size:15px;
}

.map-list{
	list-style:none;
	margin:0 !important;
	padding:0 !important;
}
.map-list li{
	margin:2px 0 !important;
}
.map-list a{
	color:#5a4032;
	text-decoration:none;
	font-size:0.95rem;
}

@media (max-width:1000px){
	.sitemap .map-inner{
		gap:20px 20px;
	}
	.map-col{
		min-width:45%;
	}
}

@media (max-width:600px){
	.map-col{
		min-width:100%;
	}
}
@media (max-width:480px){
  .map-col{ min-width:100%; }
}



/*---フッター---*/
footer{
	text-align:center;
	padding:20px;
	background:#ffd54f;
	color:var(--text);
	font-size:1rem;
	font-weight:400;
}
footer a{ 
	color:var(--text);
	text-decoration:none;
	margin:0 8px; }
footer a:hover{
	text-decoration:underline;
}
.copy{
  margin-top:25px;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:6px;
	font-size:.85rem;
}
.footer-links{ 
	display:flex; 
	gap:12px;
}
.footer-links a{
	color:var(text);
	text-decoration:none;
	font-size:.9rem;
}
.footer-links a:hover{
	text-decoration:underline;
}
.divider{ 
	opacity:.6; 
}


/* -------------------------
          index
-------------------------- */
/* hero（PC横並び）--- */
.hero {
	max-width:1100px;
	margin:120px auto 40px;
	padding:0 20px;
	display:flex;
	gap:20px;
	align-items:flex-start;
	justify-content:center;
}

.hero__image img {
	width: 100%;
	max-width: 600px;
	height: auto;
	display: block;
}

.hero__updates {
	width: 390px;
	background:#fffdf0;
	border:1px solid rgba(230,198,0,.4);
	border-radius:10px;
	overflow:hidden;
	padding:0;
	height: 290px;
}

.hero__updates .bar {
	display:flex;
	align-items:center;
	gap:10px;
	background: #970000;
	border-radius:4px;
	padding:0px 10px;
	max-height: 40px;
	color: #ffffff;
}

.hero__updates .scroll {
	max-height: 265px;
	overflow-y: auto;
	overflow-x: hidden;
	padding:4px 10px;
}

.hero__updates .list {
	list-style:none;
	margin:8px 0 0;
	padding:0 4px 0;
	font-size:.95rem;
}

.hero__updates .list li {
	display:flex;
	gap:12px;
	align-items:baseline;
	padding:6px 0;
	border-bottom:1px dotted rgba(90,64,50,.2);
}

.hero__updates .list time {
	width:90px;
	flex-shrink:0;
	color:#7a604f;
}

/* スクロールバー */
.hero__updates .scroll::-webkit-scrollbar {
	width: 6px;
}
.hero__updates .scroll::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.18);
	border-radius: 6px;
}
.hero__domain{
	line-height: 5px;
}
.hero__domain a{
	color: #000;text-decoration: none;
}

@media (max-width: 900px) {
	.hero {
		flex-direction: column;
		align-items: center;
  }
	.hero__updates {
		width: 100%;
		max-width: 500px;
  }
}

.intro {
	max-width: 1000px;
	padding: 0 20px; 
	margin:0 auto 50px;
	background: #FFFFFF;
	border-radius: 10px;
	border: solid 3px #CAA400;
}

.intro__section {
	margin-bottom: 80px;
}

.intro__title {
	font-size: 1.5rem;
	font-weight: 700;
	border-left: 6px solid #e6c600;
	padding-left: 10px;
	margin-bottom: 14px;
}

.intro__subtitle{
	margin-left: 19px;
	margin-bottom: -20px;
}

.intro__text {
	font-size: 19px;;
	line-height: 1.9;
	margin-bottom: 12px;
	text-indent: 1em;
}

.intro__text-p {
	font-size: 19px;;
	line-height: 1.9;
	margin-bottom: -5px;
	margin-left: 19px;
	text-indent: 1em;
}

.intro__image {
	width: 70%;
	max-width: 1000px;
	display: block;
	margin: 0 auto;
}

/* -------------------------
       sitemap.html
-------------------------- */
.sitemap-wrap{
	max-width:1200px;
	margin:0 auto;
}
.sitemap-heading{
	text-align:center;
	font-size:2.1rem;
	font-weight:700;
	color:#5a4032;
	margin:10px 0 30px;
}
.sitemap-table{
	border-top:2px solid #e0c36a;
}
.site-row{
	display:flex;
	align-items:flex-start;
	padding:14px 0;
	border-bottom:1px solid #f2e3af;
}
.site-row:nth-child(odd){
	background:#fffdf0;
}
.site-row-label{
	flex:0 0 190px;
	padding-right:16px;
	font-weight:700;
	color:#b03324;
	white-space:nowrap;
}
.site-row-label a{
	color: #602100;
	text-decoration:none;
}
.site-row-label a:hover{
	text-decoration:underline;
}
.site-row-links{
	flex:1 1 auto;
	display:flex;
	flex-wrap:wrap;
	gap:6px 22px;
	font-size:.96rem;
}
.site-row-links a{
	color:#5a4032;
	text-decoration:none;
}
.site-row-links a::before{
	content:"・";
	margin-right:2px;
}
.site-row-links a:hover{
	text-decoration:underline;
}
@media(max-width:900px){
	main{
		padding:0 16px 60px;
	}
	.site-row{
		flex-direction:column;
		padding:12px 6px;
	}
	.site-row-label{
		flex:none;
		padding-right:0;
		margin-bottom:4px;
	}
	.site-row-links{
		gap:4px 18px;
	}
}
@media(max-width:600px){
	.sitemap-heading{
		font-size:1.8rem;
				}
	.site-row-links{
		flex-direction:column;
					gap:2px 0;
	}
}
