@charset "utf-8";

/*======================================

	Component CSS
	Copyright (c) 2026-, PROACTIVE Inc. All rights reserved.

=======================================*/

:root {
	--max--width: 1120px;
	--article--width: 1120px;

	/* color */
	--main--color: #00855d;
	--lightgreen: #e8fbf5;
	--red: #ff4500;
	--white: #fff;
}

html,
body {
	display: flex;
	flex-direction: column;
}

html {
	scroll-behavior: smooth;
	height: -webkit-fill-available;
	font-size: 100%;
}

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
	line-height: 1.8;
	color: #111;
	min-height: 100vh;
	min-height: -webkit-fill-available;
}

img {
	max-width: 100%;
	height: auto;
}

/**--------------------------------------
	01. BASIC_STRUCTURE
---------------------------------------**/
main {
	flex: 1;
}

section section:last-of-type {
	margin-bottom: 2.5rem;
}

@media screen and (min-width: 1025px) {
	main {
		margin-top: 226px;
	}
	article {
		max-width: var(--article--width);
		width: calc(100% - 4rem);
		margin: 0 auto;
	}
	section {
		margin: 2rem auto 5rem;
	}
	.inner {
		margin: 0 auto;
		max-width: var(--max--width);
		width: calc(100% - 4rem);
	}
	:target {
		scroll-margin-top: 102px;
	}
}
@media screen and (max-width: 1024px) {
	article {
		width: 100%;
	}
	section {
		margin: 2rem auto 4rem;
	}
	h2 + section {
		margin-top: 0;
	}
	:target {
		scroll-margin-top: 98px;
	}
}

strong {
	color: #e67300;
	font-weight: bold;
}

del {
	text-decoration-color: #eb6101;
}

.br--all::before {
	content: "\A";
	white-space: pre;
}

.bk {
	display: inline-block;
}

@media screen and (min-width: 1025px) {
	.br--pc::before {
		content: "\A";
		white-space: pre;
	}
}
@media screen and (max-width: 599px) {
	.br--sp::before {
		content: "\A";
		white-space: pre;
	}
}

/*-- 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 --*/
@media screen and (min-width: 1025px) {
	#pageTop {
		display: none;
		position: fixed;
		bottom: 1.5rem;
		right: 1.5rem;
		z-index: 200;
	}

	#pageTop a {
		display: block;
		z-index: 999;
		width: 2.5rem;
		height: 2.5rem;
		background-color: var(--main--color);
		text-decoration: none;
		position: relative;
		border-radius: 0.5rem;
	}

	#pageTop a span {
		color: var(--white);
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
}

@media (any-hover: hover) {
	#pageTop a:hover {
		opacity: 0.7;
	}
}

@media screen and (max-width: 1024px) {
	#pageTop,
	#pageTop .material-symbols-outlined {
		display: none !important;
	}
}

/*----- 01-01. HEADER -----**/
header {
	line-height: 1;
	width: 100%;
	z-index: 1;
	background-color: var(--white);
	border-top: 8px solid var(--main--color);
}

header a,
header a:hover {
	text-decoration: none;
}

@media screen and (min-width: 1025px) {
	header {
		position: fixed;
	}
	header .inner {
		height: 102px;
		display: flex;
		align-items: center;
	}
	header .inner img {
		height: 60px;
	}
}
@media screen and (max-width: 1024px) {
	header {
		border-bottom: 4px solid var(--main--color);
	}
	header .inner {
		height: 88px;
		margin: 0 1rem;
		display: flex;
		align-items: center;
	}
	header .inner img {
		max-height: 48px;
		width: auto;
	}
}

/*----- 01-02. GLOVAL NAVI -----**/
nav ul li a {
	text-decoration: none;
	display: block;
}

@media screen and (min-width: 1025px) {
	nav {
		border-bottom: 4px solid var(--main--color);
		box-sizing: content-box;
	}
	nav ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	nav ul li {
		text-align: center;
		width: calc(100% / 6);
		max-width: 200px;
	}
	nav > ul li:last-of-type {
		width: calc(100% / 2);
		max-width: 600px;
	}
	nav ul li a {
		padding: 1.25rem 0;
		width: 100%;
	}
	nav ul li a,
	nav ul li a:not([href]) {
		color: #333;
	}
	.nav-bg {
		background-color: var(--lightgreen);
	}
}
@media screen and (min-width: 1025px) and (any-hover: hover) {
	nav .nav-bg ul li a[href]:hover {
		background-color: var(--white);
		color: #111;
	}
	nav > ul li a[href]:hover {
		background-color: var(--lightgreen);
		color: #111;
	}
}
@media screen and (max-width: 1024px) {
	#g-nav {
		position: fixed;
		top: 0;
		left: 100vw;
		width: 100vw;
		height: calc(100% - 4rem);
		overflow-y: auto;
		transition: 0.7s;
		background-color: var(--lightgreen);
		padding: 1rem 0;
		z-index: 5;
	}
	nav ul li a {
		padding: 1.5rem 1rem;
		color: #111;
		border-bottom: 1px solid #707070;
		font-size: 1.2rem;
		text-align: center;
		line-height: 1.5;
	}
	nav ul li a:not([href]) {
		color: #707070;
	}
	/* #nav スライドアニメーション */
	#g-nav.open {
		-moz-transform: translateX(-100vw);
		-webkit-transform: translateX(-100vw);
		transform: translateX(-100vw);
	}
}

/*----- 01-03. FOOTER -----**/
footer {
	background-color: var(--lightgreen);
}

footer dl dt {
	border-bottom: 1px solid var(--main--color);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	font-size: 1.1rem;
	line-height: 1.6rem;
}

footer dl dd {
	margin: 0 0 1rem;
}

.copy {
	margin-bottom: 1rem;
	text-align: center;
	line-height: 1rem;
}

@media screen and (min-width: 1025px) {
	footer .inner {
		margin: 3rem auto 2rem;
	}
}
@media screen and (max-width: 1024px) {
	footer {
		padding-bottom: 4rem;
	}
	footer .inner {
		margin: 2rem 1rem;
	}
	footer dl dd {
		margin: 0;
	}
}

/*----- 01-04. BOTTOM NAV -----**/
.btm-nav span.material-symbols-outlined {
	vertical-align: middle;
	font-size: 2.25rem;
}

@media screen and (min-width: 1025px) {
	.btm-nav {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.btm-nav {
		position: fixed;
		bottom: 0;
		width: 100%;
		height: 4rem;
		background-color: #333;
		color: #fff;
		z-index: 100;
		cursor: pointer;
	}
	.btm-nav > ul {
		display: flex;
		flex-wrap: wrap;
	}
	.btm-nav > ul > li {
		width: calc(100% / 3);
		height: 4rem;
		display: flex;
		align-items: center;
	}
	.btm-nav > ul > li a,
	.btm-nav > ul > li #nav-toggle {
		color: #fff;
		text-decoration: none;
		width: 100%;
		text-align: center;
	}
}

/**--------------------------------------
	02. CONTENTS
---------------------------------------**/
.contents {
	padding-bottom: 3rem;
}

.contents-top {
	padding-bottom: 2rem;
}

@media screen and (min-width: 1025px) {
	.contents {
		margin-top: 5rem;
	}
}
@media screen and (max-width: 1024px) {
	.contents {
		margin: 4rem 1rem 0;
	}
}

/* Title */
.title--sec1,
.title--sec2,
.title--sec3,
.title--sec4 {
	line-height: 1.5;
}

.title--sec1 {
	font-size: 2rem;
	position: relative;
	text-align: center;
	margin-bottom: 4rem;
}

.title--sec1::after {
	position: absolute;
	bottom: -1rem;
	left: calc(50% - 2.5rem);
	width: 80px;
	height: 6px;
	content: "";
	border-top: solid 2px var(--main--color);
	border-bottom: solid 2px var(--main--color);
}

.title--sec2 {
	font-size: 1.5rem;
	padding: 0.75rem 1rem 0.75rem 2rem;
	border: 1px solid var(--main--color);
	background-color: #fff;
	position: relative;
	margin-bottom: 2rem;
}
.title--sec2::before {
	position: absolute;
	top: calc(50% - 0.95rem);
	left: 1rem;
	height: 28px;
	width: 6px;
	background: var(--main--color);
	content: "";
	border-radius: 6px;
}

.title--sec3 {
	font-size: 1.25rem;
	padding: 0.5rem 0 0.5rem 1.5rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--main--color);
	position: relative;
}
.title--sec3::before {
	position: absolute;
	content: "";
	width: 0.75rem;
	height: 0.75rem;
	left: 4px;
	top: 48%;
	border-radius: 1rem;
	transform: translateY(-50%);
	background-color: var(--main--color);
}

.title--sec4 {
	font-size: 1.15rem;
	margin-bottom: 1rem;
	border-bottom: 1px dotted #aaa;
}

@media screen and (max-width: 1024px) {
	.title--sec1 {
		font-size: 1.7rem;
	}
	.title--sec2 {
		font-size: 1.3rem;
		margin-bottom: 1.5rem;
	}
}

/*-- 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
---------------------------------------**/
.img-responsive {
	max-width: 100%;
	height: auto;
}

.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--dbl {
	border: 6px double #cfcfcf;
	padding: 2rem;
}

@media screen and (max-width: 1025px) {
	.box {
		padding: 1rem 1.5rem;
	}
}

/*----- 03-01. LIST -----**/
.dl--bold > dt {
	font-weight: bold;
}

/*日付用*/
@media screen and (min-width: 1025px) {
	.date-info {
		overflow: hidden;
	}
	.date-info dt,
	.date-info dd {
		float: left;
	}
	.date-info dt {
		width: 12em;
		margin: 0;
	}
	.date-info dd {
		width: calc(100% - 12em);
		margin: 0 0 1rem;
	}
}
@media screen and (max-width: 1024px) {
	.date-info dd {
		margin: 0 0 1em;
	}
}

/*----- 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;
	padding: 0.75em 1em;
}

.tbl-bdr tr th {
	background-color: var(--lightgreen);
	text-align: center;
	border: 1px solid #aaa;
}

.tbl--list {
	border-collapse: separate;
	border-spacing: 0 0.75rem;
}

.tbl--list tr th {
	background-color: var(--lightgreen);
	border-bottom: 1px solid var(--main--color);
}

.table-w100 table {
	width: 100%;
}

.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;
}

@media screen and (min-width: 1025px) {
	.tbl--list tr th {
		padding: 0.25em 1em;
	}
	.tbl--list tr td {
		padding-left: 1em;
	}
}
@media only screen and (max-width: 1024px) {
	.tbl--list {
		width: 100%;
	}
	.tbl--list tr th,
	.tbl--list tr td {
		width: 100%;
		display: block;
	}
	.tbl--list tr td {
		padding: 0.5em;
	}
	.area-over > table tr th,
	.area-over > table tr td {
		white-space: nowrap;
	}
}

/*----- 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;
}

.paragraph p {
	margin-bottom: 1rem;
}

/*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(--main--color);
	border: 1px solid var(--main--color);
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
}

.btn[href] {
	box-shadow: 1px 2px 10px #888;
}

@media (any-hover: hover) {
	.btn[href]:hover {
		background-color: var(--white);
		color: var(--main--color);
		box-shadow: 2px 4px 15px #888;
	}
	.btn:hover {
		color: #fff;
	}
}

.btn-area {
	text-align: center;
	margin-bottom: 4rem;
}

@media screen and (min-width: 1025px) {
	.btn-area a {
		min-width: 500px;
	}
}
@media only screen and (max-width: 1024px) {
	.btn-area a {
		width: 100%;
	}
}
@media only screen and (max-width: 599px) {
	.btn-single {
		text-align: center;
	}
}
