@charset "utf-8";

/*======================================

	Component CSS
	Copyright (c) 2026, PROACTIVE Inc. All rights reserved.

=======================================*/

:root {
	--wrap--width: 1200px;
	--main--width: 928px;
	--aside--width: 272px;

	/* colors */
	--main--color: #fbc510;
	--sub--color: #fff3c3;
	--color-primary-pale: #fff8de;
	--color-white: #fff;
	--color-link: #00f;
	--red: #ff4500;
	--text--color: #333;
}

html,
body {
	min-height: 100%;
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
	height: -webkit-fill-available;
	min-width: var(--wrap--width);
}

body {
	font-family: "Yu Gothic", "游ゴシック", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", sans-serif;
	font-weight: 500;
	line-height: 1.8;
	color: var(--text--color);
	min-height: 100vh;
	min-height: -webkit-fill-available;
	position: relative;
	display: flex;
	flex-direction: column;
}

body::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../img/bg.jpg") center top / 100% auto repeat-y;
	opacity: 0.25;
	z-index: -1;
}

@media print {
	html {
		width: 1200px;
		transform: scale(0.9);
		transform-origin: top left;
		margin-left: auto;
		margin-right: auto;
	}
}

/**--------------------------------------
	01. BASIC_STRUCTURE
---------------------------------------**/
.wrapper {
	flex: 1;
	width: var(--wrap--width);
	margin: 0 auto;
	display: flex;
}

aside {
	width: var(--aside--width);
	padding: 1rem 1rem 0;
}

article {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	width: var(--main--width);
}

section {
	margin: 2rem auto 5rem;
}

.inner {
	margin: 0 auto;
}

.br--all::before {
	content: "\A";
	white-space: pre;
}

.bk {
	display: inline-block;
}

dl dt {
	font-weight: 500;
}

img {
	width: 100%;
	height: auto;
}

/*-- Link --*/
a {
	color: #00f;
	text-decoration: underline;
	word-break: break-all;
}

@media (any-hover: hover) {
	a:hover {
		color: #f90;
		transition: 0.4s;
	}
	a[href]:hover {
		cursor: pointer;
	}
	a:hover img {
		opacity: 0.7;
		transition: 0.4s;
	}
}

/*-- To top --*/
#pageTop {
	display: none;
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 200;
}

#pageTop a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	background-color: var(--sub--color);
	border: 1px solid var(--main--color);
	text-decoration: none;
	border-radius: 0.5rem;
	color: var(--text--color);
	font-size: 1.25rem;
}

#pageTop a .material-symbols-outlined {
	color: var(--text--color);
	font-size: 1.5rem;
	line-height: 1;
}

@media (any-hover: hover) {
	#pageTop a:hover {
		background-color: var(--color-white);
	}
}

/*----- 01-01. HEADER -----**/
header {
	width: var(--wrap--width);
	margin: 0 auto;
	padding: 2rem 0 1.5rem;
}

header a,
header a:hover {
	text-decoration: none;
}

/*----- 01-02. GLOVAL NAVI -----**/
nav ul li a {
	text-decoration: none;
	display: block;
}

nav ul li a {
	border: 1px solid var(--main--color);
	background-color: var(--sub--color);
	border-radius: 0.5rem;
	padding: 1.5rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1rem;
	transition: background-color 0.3s;
}

nav ul li a,
nav ul li a:not([href]) {
	color: var(--text--color);
}

@media (any-hover: hover) {
	nav ul li a[href]:hover {
		background-color: #fff;
		color: var(--text--color);
	}
}

/*----- 01-03. FOOTER -----**/
footer {
	background-color: var(--color-primary-pale);
	padding: 3rem 0 1rem;
	line-height: 1.65;
	color: #000;
}

footer a,
footer a:hover {
	color: #000;
}

footer .inner {
	padding: 0 2rem;
}

.footer-contact {
	width: fit-content;
	margin: 0 auto;
}

.footer-inquiry-title {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	padding-bottom: 0.25rem;
	border-bottom: 1px solid var(--main--color);
	line-height: 1.3;
}

.footer-inquiry {
	display: flex;
	justify-content: center;
	column-gap: 8rem;
	margin-bottom: 3rem;
}

.footer-inquiry dt {
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	line-height: 1.4;
	position: relative;
}

.footer-inquiry dt::before {
	content: "";
	position: absolute;
	width: 1rem;
	height: 0.5rem;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--main--color);
}

footer dl dd {
	margin: 0;
}

.copy {
	background-color: transparent;
	text-align: center;
	font-size: 0.8rem;
}

/**--------------------------------------
	02. CONTENTS
---------------------------------------**/
.contents {
	padding: 2rem 2rem 3rem;
	background-color: var(--color-white);
	flex: 1;
}

main {
	display: flex;
	flex: 1;
	background-color: transparent;
}

.main-img + .contents {
	padding-top: 1rem;
}

.main-img img {
	width: 100%;
}

/* Title */
.title--sec1,
.title--sec2,
.title--sec3,
.title--sec4 {
	line-height: 1.5;
	font-weight: 500;
}

.title--sec1 {
	font-size: 2rem;
	margin: 1rem 0 2rem;
	letter-spacing: 0.2rem;
}

.title--sec2 {
	position: relative;
	font-size: 1.5rem;
	padding: 0.75rem 1rem 0.75rem 2.625rem;
	margin-bottom: 2rem;
	border: 1px solid var(--main--color);
	border-radius: 1rem 0 1rem 0;
	color: var(--text--color);
}

.title--sec2::before {
	content: "";
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background-color: var(--main--color);
	border: none;
}

.title--sec3 {
	font-size: 1.25rem;
	padding: 0.5rem 0 0.5rem 0.5rem;
	margin-bottom: 1rem;
	border-bottom: 2px dotted var(--main--color);
}

/*-- File Link icon mini --*/
.pdf-icon::after {
	background: url(../img/icon_pdf.svg) no-repeat;
}
.doc-icon::after {
	background: url(../img/icon_doc.svg) no-repeat;
}
.xls-icon::after {
	background: url(../img/icon_xls.svg) no-repeat;
}
.ppt-icon::after {
	background: url(../img/icon_ppt.svg) no-repeat;
}
.link-icon::after {
	background: url(../img/icon_link.svg) no-repeat;
}

.pdf-icon::after,
.doc-icon::after,
.xls-icon::after,
.ppt-icon::after,
.link-icon::after {
	content: "";
	display: inline-block;
	width: 1rem;
	height: 1rem;
	background-size: contain;
	vertical-align: middle;
	margin-left: 0.5rem;
	margin-right: 0.25rem;
}

/**--------------------------------------
	03. PARTS
---------------------------------------**/
.box {
	padding: 1.5rem 2rem;
}

.box ul,
.box ol,
.box ul li:last-child,
.box ol li:last-child,
.box dl dd:last-child {
	margin-bottom: 0;
}

.box--R {
	border: 1px solid var(--red);
}

.box--Gry {
	border: 1px solid #ccc;
}

.box--bg {
	background-color: var(--sub--color);
	border-radius: 10px;
}

/*----- 03-01. LIST -----**/
/*日付用*/
.date-info {
	overflow: hidden;
}
.date-info dt,
.date-info dd {
	float: left;
}
.date-info dt {
	width: 9em;
	margin: 0;
}
.date-info dd {
	width: calc(100% - 9em);
	margin: 0 0 1rem;
}

.date-info dd:last-child {
	margin-bottom: 0;
}

/*----- 03-02. TABLE -----**/
.nowrap {
	white-space: nowrap;
}

.tbl-v--mid tr th,
.tbl-v--mid tr td {
	vertical-align: middle;
}

.tbl-bdr tr th,
.tbl-bdr tr td {
	border: 1px solid #ccc;
}

.tbl-bdr tr th {
	background-color: var(--main--color);
	text-align: center;
	border: 1px solid #aaa;
}

.tbl--list {
	border-collapse: separate;
	border-spacing: 0 0.75rem;
}

.tbl--list tr th {
	background-color: var(--color-primary-pale);
	padding: 0.25em 1em;
	border-bottom: 1px solid var(--main--color);
}

.tbl--list tr td {
	padding-left: 1em;
}

.tbl--list-2 tr th {
	background-color: #f1efdf;
	border-bottom: 1px solid #ccc9bb;
}

.area-center {
	margin: 0 auto;
}

.area-over {
	width: 100%;
	overflow-x: auto;
	padding: 0.5em 0;
}

.area-over::-webkit-scrollbar {
	height: 6px;
}

.area-over::-webkit-scrollbar-thumb {
	background: #999;
	border-radius: 5px;
}

.area-over::-webkit-scrollbar-track-piece {
	background: #efefef;
}

/*----- 03-03. TEXT -----**/
.ft-s--S {
	font-size: 0.9rem;
}

.ft-s--SS {
	font-size: 0.85rem;
}

.ft-s--L {
	font-size: 1.1rem;
}

.ft-s--LL {
	font-size: 1.25rem;
}

/*Text-カラー*/
.ft-c--R {
	color: var(--red);
}

/*----- 03-04. BUTTON -----**/
.btn {
	display: inline-block;
	margin: 0.5rem auto;
	padding: 1.2rem 4rem;
	background-color: var(--sub--color);
	border: solid 1px var(--main--color);
	color: #333;
	text-decoration: none;
	border-radius: 1rem;
}

.btn[href] {
	box-shadow: 1px 2px 4px #888;
}

@media (any-hover: hover) {
	.btn[href]:hover {
		background-color: #fff;
		box-shadow: 1px 2px 8px #888;
	}
	.btn:hover {
		color: #333;
	}
}
