@charset "utf-8";
/* ========================================
		共通ここから
======================================== */

:root {
	--color-body-1: #373132;
	--color-gray-1: #d9d4d5;
	--color-gray-2: #fff7f8;
	--color-gray-3: #ebe9e9;
	--color-gray-4: #686263;
	--color-red-1: #c41727;
	--color-red-2: #fff7f8;
	--color-red-3: #a4343d;
	--color-red-4: #e93f4e;
	--color-red-5: #990000;
	--color-brown: #6c5210;
	--color-blue-green: #1B8615;
	--color-blue-1: #0056B3;
	--color-blue-2: #2A3F9D;
	--font-family: "Zen Maru Gothic", serif;
	--container: 1200px;
	--padding: 16px;
	--scroll-margin: 165px;
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--color-body-1);
	font-family: var(--font-family);
}

body.no-scroll {
	overflow: hidden;
	touch-action: pinch-zoom;
}

::after,
::before,
* {
	--font-size: calc((var(--fsz) / 16) * 1rem);
	font-size: var(--font-size);
}

p {
	letter-spacing: 0;
}

.container {
	padding-right: var(--padding);
	padding-left: var(--padding);
	max-width: calc(var(--container) + var(--padding) + var(--padding));
}

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

a {
	text-decoration: none;
	color: var(--color-body-1);
}

a:hover {
	opacity: 0.6;
}

.header {
	border-bottom: 1px solid var(--color-gray-1);
	position: sticky;
	top: 0;
	background-color: #fff;
	z-index: 20;
}

.site-logo {
	display: block;
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.site-logo {
		margin-right: auto;
		max-width: 130px;
	}
}

.header-top {
	display: flex;
	align-items: center;
	max-width: 1405px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 15px;
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width: 992px) {
	.header-top {
		justify-content: space-between;
	}
}

@media (max-width: 991px) {
	.header-top {
		padding: 8px 32px;
	}
}

.header-search {
	display: flex;
	align-items: center;
}

@media (max-width: 991px) {
	body:not(.no-scroll) .global-nav {
		opacity: 0;
		visibility: hidden;
	}
	body.no-scroll .global-nav {
		transition: opacity 0.5s, visibility 0.5s;
	}
	.global-nav {
		position: fixed;
		top: 70px;
		left: 0;
		bottom: 0;
		background-color: #fff;
		width: 100%;
		z-index: 2;
		overflow: auto;
	}
	.global-menu,
	.menu-list {
		height: 100%;
	}
}

#searchform {
	margin-left: 25px;
	height: 50px;
}

.formarea {
	position: relative;
	padding-right: 65px;
	height: 100%;
}

#searchform form {
	height: 100%;
}

#sp_searchform {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	background-color: #fff;
	width: 100%;
	transition: opacity 0.5s, visibility 0.5s;
	top: 80px;
	left: 0;
	padding: 25px 0;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
	#sp_searchform {
		top: 70px;
	}
}

#sp_searchform form {
	height: 50px;
}

#sp_searchform .formarea {
	text-align: center;
}

#sp_searchform.active {
	opacity: 1;
	visibility: visible;
}

.formarea .btn_submit {
	position: absolute;
	border-radius: 0 10px 10px 0;
	background-color: var(--color-body-1);
	color: #fff;
	border: none;
	height: 100%;
	padding-right: 16px;
	padding-left: 16px;
}

.formarea .formtxtarea {
	border: 1px solid var(--color-gray-1);
	border-radius: 10px 0 0 10px;
	height: 100%;
	box-sizing: border-box;
	width: 240px;
	padding-left: 15px;
}

@media (max-width: 991px) {
	.formarea .formtxtarea {
		width: 280px;
	}
}

.formarea .formtxtarea::placeholder {
	font-family: var(--font-family);
}

.question-link {
	color: var(--color-body-1);
	font-weight: 700;
	display: flex;
	align-items: center;
}

.menu-list {
	display: flex;
	padding-left: 0;
	gap: 65px;
	justify-content: center;
	/* padding-bottom: 10px; */
	margin-bottom: 0;
}

@media (max-width: 1200px) {
	.menu-list {
		gap: 30px;
	}
}

.menu-list li {
	list-style: none;
}

.menu-list li a {
	display: block;
	padding: 10px;
	padding-bottom: 20px;
	font-weight: 700;
	color: var(--color-body-1);
}

.menu-list li a.active {
	border-bottom: 4px solid var(--color-red-1);
}

@media (max-width: 991px) {
	.menu-list li a.active {
		border-bottom: none;
	}
}

@media (max-width: 991px) {
	.menu-list li a {
		padding-left: 50px;
	}
	.menu-list {
		justify-content: flex-start;
		padding-top: 30px;
	}

	.menu-list {
		flex-direction: column;
	}
	.menu-list-item:last-child {
		padding-bottom: 30px;
	}
}

.top-hero {
	padding-bottom: 40px;
	text-align: center;
}

@media (max-width: 991px) {
	.top-hero {
		padding-bottom: 30px;
	}
}


.bg-gray {
	background-color: var(--color-gray-2);
}
.bg-pink {
	background-color: var(--color-red-2);
}

.line-title {
	--fsz: 28;
	font-size: var(--font-size);
	font-weight: 700;
	padding-left: 40px;
	position: relative;
	margin: 0 0 1.5rem;
}

.line-title:before {
	content: "";
	display: block;
	background-image: url(../images/icon-line.svg);
	background-repeat: no-repeat;
	width: 32px;
	height: 4px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-size: contain;
}

.section-title {
	--fsz: 36;
	font-weight: 700;
	font-size: var(--font-size);
	display: flex;
	gap: 8px;
	align-items: center;
}

@media (max-width: 991px) {
	.section-title {
		--fsz: 20;
	}
}

.section-title::before {
	content: "";
	display: block;
	background-image: url(../images/icon-ribon.svg);
	background-repeat: no-repeat;
	width: 56px;
	aspect-ratio: 1;
	height: auto;
	flex: 0 0 auto;
	background-size: contain;
}

@media (max-width: 991px) {
	.section-title::before {
		width: 32px;
		aspect-ratio: 1;
		height: auto;
		background-size: cover;
		padding-left: 35px;
	}
}

.footer {
	background-color: var(--color-body-1);
	padding: 40px 0 80px 0;
}

@media (max-width: 991px) {
	.footer {
		padding: 40px 0 40px 0;
	}
}

.footer .container {
	--container: 1280px;
}

.footer-title {
	color: #fff;
	--fsz: 24;
	margin-bottom: 24px;
	text-align: center;
}

@media (max-width: 991px) {
	.footer-title {
		--fsz: 16;
	}
}

.address {
	line-height: 1.5;
	margin-bottom: 40px;
	color: #fff;
	text-align: center;
}

@media (max-width: 991px) {
	.address {
		--fsz: 14;
	}
}

.footer-nav {
	display: grid;
	gap: 39px;
	grid-template-columns: repeat(7, auto);
	margin-bottom: 40px;
}

@media (max-width: 991px) {
	.footer-nav {
		display: none;
	}
}

.footer-nav-lists h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-nav-lists ul {
	padding-left: 0;
}

.footer-nav-lists ul li {
	list-style: none;
}

.footer-nav-lists ul li a {
	color: #fff;
	--fsz: 14;
	text-decoration: underline;
	line-height: 1.2;
}

.footer-nav-lists ul li a:hover {
	text-decoration: none;
}

.footer-nav-lists ul li:not(:last-child) {
	margin-bottom: 10px;
}

.footer-contact {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-contact :where(ul, li) {
	display: contents;
}

@media (max-width: 991px) {
	.footer-contact {
		flex-direction: column;
		align-items: center;
		gap: 16px;
		margin-bottom: 24px;
	}
}

.footer-contact a {
	color: #fff;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.footer-contact a:after {
	content: "";
	background-image: url(../images/icon-arrowcircle-white.svg);
	background-repeat: no-repeat;
	display: block;
	width: 24px;
	height: 24px;
	margin-left: 5px;
}

.footer-other-link {
	display: flex;
	gap: 40px;
	justify-content: center;
	margin-bottom: 40px;
}

.footer-other-link :where(ul, li) {
	display: contents;
}

@media (max-width: 991px) {
	.footer-other-link {
		flex-direction: column;
		gap: 16px;
		align-items: center;
		--fsz: 14;
	}
}

.footer-other-link a {
	--fsz: 14;
	color: #fff;
	text-decoration: underline;
}

.footer-other-link a:hover {
	text-decoration: none;
}

.footer-copyright {
	--fsz: 14;
	max-width: 100%;
	width: max-content;
	margin-right: auto;
	margin-left: auto;
	color: #fff;
	margin-bottom: 0;
}

.news-row a {
	color: var(--color-body-1);
	text-decoration: underline;
}

.news-row a:hover {
	text-decoration: none;
}

.news-date {
	display: flex;
	margin-bottom: 24px;
	align-items: center;
	gap: 10px;
}

.news-date .time {
	font-weight: bold;
}

.news-title a {
	text-decoration: underline;
}
.news-title{
	margin-bottom: 0;
}
.cat-label {
	display: inline-block;
	border: 1px solid;
	border-radius: 50px;
	padding: 3px 10px;
	font-weight: bold;
}

.kyusyoku.cat-label {
	color: #b5368b;
	border-color: #b5368b;
}
.saiyo.cat-label {
	color: #007ea8;
	border-color: #007ea8;
}
.keiyaku.cat-label {
	color: #1b8615;
	border-color: #1b8615;
}
.zigyo.cat-label {
	color: #2a3f9d;
	border-color: #2a3f9d;
}
.sonota.cat-label {
	color: #a64f19;
	border-color: #a64f19;
}

/* .news-item a {
	color: var(--color-body-1);
} */

.news-list {
	padding-left: 0;
}

.news-list li {
	list-style: none;
	border-bottom: 1px solid var(--color-gray-1);
	padding: 24px;
}

.news-list li:first-child {
	border-top: 1px solid var(--color-gray-1);
}

.other-info {
	padding: 65px 0;
	position: relative;
}

@media (max-width: 991px) {
	.other-info {
		padding: 50px 0 40px 0;
	}
}

.other-info::before,
.other-info:after {
	content: "";
	position: absolute;
	display: block;
	width: 146px;
	height: 153px;
	background-repeat: no-repeat;
}

.other-info::before {
	background-image: url(../images/other-item-yellow.svg);
	left: 0;
	bottom: 0;
}
.other-info::after {
	background-image: url(../images/other-item-pink.svg);
	top: 0;
	right: 0;
}

@media (max-width: 991px) {
	.other-info::after,
	.other-info::before {
		content: none;
	}
}

.sp-header-search,
.sp-menu-btn {
	border: 1px solid var(--color-gray-1);
	width: 64px;
	height: 54px;
	text-align: center;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	--fsz: 14;
	font-weight: bold;
	color: var(--color-body-1);
}

.sp-header-search:hover,
.sp-menu-btn:hover {
	color: var(--color-body-1);
	cursor: pointer;
}

@media (min-width: 992px) {
	.sp-header-search,
	.sp-menu-btn {
		display: none;
	}
}

@media (max-width: 991px) {
	.header-search {
		display: none;
	}
	.sp-header-search {
		margin-right: 5px;
	}
}

.sp-btn-line {
	position: relative;
	width: 18px;
	height: 24px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sp-menu-btn .sp-btn-line span {
	height: 2px;
	background-color: var(--color-body-1);
	display: block;
	width: 100%;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
	position: relative;
	border-radius: 5px;
}
.sp-menu-btn .sp-btn-line span:first-child {
	top: 0;
}
.sp-menu-btn .sp-btn-line span:nth-child(2) {
	margin-top: 4px;
}
.sp-menu-btn .sp-btn-line span:last-child {
	margin-top: 4px;
}

.sp-menu-btn.active .sp-btn-line span:nth-of-type(1) {
	transform: rotate(45deg);
	top: 7px;
}

.sp-menu-btn.active .sp-btn-line span:nth-of-type(2) {
	opacity: 0;
}

@-webkit-keyframes active-menu06-bar02 {
	100% {
		height: 0;
	}
}

@keyframes active-menu06-bar02 {
	100% {
		height: 0;
	}
}
.sp-menu-btn.active .sp-btn-line span:nth-of-type(3) {
	transform: rotate(-45deg);
	bottom: 5px;
}

@media screen and (min-width: 992px) {
	.sp-menu-btn {
		display: none;
	}
}

.tel-link {
	color: #fff;
}

@media (min-width: 768px) {
	.tel-link {
		pointer-events: none;
	}
}

.breadcrumbs {
	background-color: #f7f7f7;
	padding: 24px 0;
	margin-bottom: 0;
	--fsz: 14;
}

.breadcrumbs a {
	color: var(--color-blue-1);
	text-decoration: underline;
	margin: 0 8px;
}

.breadcrumbs a:first-child{
	margin-left: 0;
}

.page-content {
	padding: 35px 0 80px 0;
}

.page-flex-content {
	order: 2;
	flex: 1 0 0%;
}

.page-flex-content .page-content {
	padding-top: 0;
}

@media (max-width: 991px) {
	.page-flex-content .page-content {
		padding-bottom: 0;
	}
	.page-content {
		padding-bottom: 45px;
	}
	.page-flex-content{
		max-width: 100%;
	}
}

.page-title {
	--fsz: 48;
	font-size: var(--font-size);
	font-weight: bold;
}

@media (max-width: 991px) {
	.page-title {
		--fsz: 28;
		line-height: 1.4;
	}
}

.page-title.section-title {
	--fsz: 36;
	margin-bottom: 24px;
}

.page-title.bottom-space {
	margin-bottom: 48px;
}

@media (max-width: 991px) {
	.page-title.section-title {
		--fsz: 20;
	}
}

.btn {
	color: #fff;
	border-radius: 10px;
	padding: 11px 15px;
	text-align: center;
	font-weight: 700;
	position: relative;
}

.btn.red:hover {
	color: #fff;
}

/* 
.btn.arrow::after {
	content: "";
	background-image: url(../images/icon-arrowcircle-white.svg);
	background-repeat: no-repeat;
	display: block;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 18px;
} */

.btn.white.arrow::after {
	background-image: url(../images/icon-arrowcircle.svg);
}

.page-lead {
	margin-top: 16px;
	margin-bottom: 0;
	--fsz: 24;
}

@media (max-width: 991px) {
	.page-lead {
		--fsz: 16;
	}
}


.sidebar {
	width: 280px;
	order: 1;
}


.sidebar h2 {
	--fsz: 20;
	font-size: var(--font-size);
	font-weight: bold;
	margin-bottom: 16px;
	padding-left: 8px;
}

.sidebar ul li a {
	display: block;
	padding: 13px 8px;
	color: var(--color-body-1);
	--fsz: 14;
	display: flex;
	align-items: center;
	gap: 16px;
	padding-right: 8px;
	justify-content: space-between;
}

.sidebar ul li a.active {
	position: relative;
	font-weight: bold;
}

.sidebar ul li a.active::before {
	content: "";
	display: block;
	width: 8px;
	height: 100%;
	background-color: var(--color-body-1);
	position: absolute;
	left: -8px;
	top: 0;
}

.sidebar ul li a:after {
	content: "";
	display: block;
	mask-image: url(../images/icon-arrowcircle.svg);
	width: 17px;
	height: 17px;
	background-color: var(--color-body-1);
	mask-size: contain;
	flex: 0 0 auto;
}

.sidebar-item {
	background-color: var(--color-gray-3);
	border-radius: 8px;
	padding: 16px 8px 8px;
}

.sidebar-item:not(:last-child) {
	margin-bottom: 24px;
}

.sidebar-item > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-item > ul li {
	background-color: #fff;
}

.sidebar-item > ul li + li {
	margin-top: 4px;
}

.sidebar-item > ul li > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-item > ul li > ul li {
	border-top: 1px solid var(--color-gray-3);
	margin: 0;
}

.sidebar-item > ul li > ul li a {
	color: var(--color-gray-4);
	display: inline-block;
	padding: 5px .5rem 5px 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	--fsz: 14;
}

.page-flex {
	display: flex;
	gap: 80px;
	position: relative;
	order: 2;
}

@media (max-width: 767px) {
	.page-flex {
		gap: 24px;
	}
}

@media (max-width: 991px) {
	.page-flex {
		flex-direction: column;
	}
	.sidebar {
		order: 2;
		width: 100%;
		max-width: 100%;
	}
	.page-flex-content {
		width: 100%;
	}
}

.arrow-icon {
	width: 17px;
	aspect-ratio: 1;
	background-color: var(--fill);
	border-radius: 50%;
	line-height: 0;
	height: auto;
	flex: 0 0 auto;
}

.icon {
	aspect-ratio: 1;
	display: inline-block;
	height: auto;
	/* -webkit-mask: no-repeat center center / contain; */
	mask: no-repeat center center / cover;
}

.icon.black {
	background-color: var(--color-body-1);
}

.icon.sub-black {
	background-color: var(--color-gray-4);
}
.icon.red {
	background-color: var(--color-red-1);
}
.icon.white {
	background-color: #fff;
}

.icon.arrow {
	mask-image: url(../images/icon-arrowcircle.svg);
	width: 100%;
}

.search-card-text .arrow-icon,
.btn.arrow .arrow-icon {
	width: 20px;
}

/* ========================================
		共通ここまで
======================================== */

/* ========================================
		TOPページここから
======================================== */
.top-title-wrapper {
	padding-top: 40px;
	text-align: center;
	padding-bottom: 50px;
	padding-right: 15px;
	padding-left: 15px;
}

@media (max-width: 991px) {
	.top-title-wrapper {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

.top-title-wrapper h2.top-title {
	--fsz: 56;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 0;
	font-size: var(--font-size);
}

@media (max-width: 991px) {
	.top-title-wrapper h2.top-title {
		--fsz: 28;
	}
}

.top-title-wrapper .top-title span {
	color: var(--color-red-1);
}

.top-title-wrapper p {
	--fsz: 28;
	font-weight: 500;
	margin: 0;
}

@media (max-width: 991px) {
	.top-title-wrapper p {
		--fsz: 16;
		font-weight: normal;
	}
}

.top-about {
	padding: 65px 0;
}

@media (max-width: 991px) {
	.top-about {
		padding: 50px 0;
	}
}

.top-about-logo {
	margin: 25px 0;
}

@media (max-width: 991px) {
	.top-about-logo {
		margin: 30px 0 25px 0;
	}
}

.top-about p {
	--fsz: 24;
	line-height: 1.5em;
}

@media (max-width: 991px) {
	.top-about p {
		--fsz: 16;
	}
}

.top-theme-search {
	padding: 65px 0;
}

@media (max-width: 991px) {
	.top-theme-search {
		padding: 50px 0 40px 0;
	}
}

.nav-tabs {
	border: none;
}

.nav-tabs .nav-link {
	background-color: var(--color-gray-3);
	color: var(--color-body-1);
}

.nav-tabs .nav-link.active {
	background-color: var(--color-red-1);
	color: #fff;
	position: relative;
}

.nav-tabs .nav-link.active::before {
	--fsz: 32;
	content: "▼";
	display: block;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--color-red-1);
}

@media (max-width: 991px) {
	.nav-tabs .nav-link.active::before {
		--fsz: 16;
		bottom: -13px;
	}
}

.nav-tabs .nav-item {
	width: 50%;
}

.nav-tabs .nav-item .nav-link {
	width: 100%;
	border: none;
	--fsz: 20;
	font-size: var(--font-size);
	font-weight: 700;
	padding: 18px 0;
}

@media (max-width: 991px) {
	.nav-tabs .nav-item .nav-link {
		--fsz: 16;
		padding: 6px 0;
	}
}

#tabpane_1 {
	border-radius: 8px 0 0 8px;
}

#tabpane_2 {
	border-radius: 0 8px 8px 0;
}

.tab-pane {
	padding: 80px 25px 25px 25px;
}

@media (max-width: 991px) {
	.tab-pane {
		padding: 30px 25px 25px 25px;
	}
}

.tab-content {
	border-right: 1px solid #d9d4d5;
	border-bottom: 1px solid #d9d4d5;
	border-left: 1px solid #d9d4d5;
	border-radius: 0 0 10px 10px;
}

.tab-grid ul li{
		border: 1px solid #d9d4d5;
	text-align: center;
	padding-top: 25px;
	padding-bottom: 25px;
	border-radius: 8px;
	position: relative;
	list-style: none;
	margin-top: 0;
}

.tab-grid ul li img{
	margin-bottom: 25px;
}

.tab-grid ul li a{
		display: flex;
	color: var(--color-body-1);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	gap: 10px;
	text-decoration: none;
}


.tab-grid ul li a::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.tab-grid ul li a:after{
	content: "";
	display: block;
	background-image: url(../images/icon-arrowcircle.svg);
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
}

.tab-grid ul li:hover img{
	opacity: .6;
}

/* .top-theme-search-card {
	border: 1px solid #d9d4d5;
	text-align: center;
	padding-top: 25px;
	padding-bottom: 25px;
	border-radius: 8px;
} */

.top-theme-search-card a {
	display: block;
	color: var(--color-body-1);
	font-weight: 700;
}

@media (max-width: 767px) {
	.top-theme-search-card a {
		display: flex;
		--fsz: 14;
		gap: 15px;
	}
	.top-theme-search-card {
		padding-left: 16px;
		padding-top: 16px;
		padding-bottom: 16px;
		padding-right: 16px;
		text-align: left;
	}
	.top-theme-search-card a img {
		max-width: 40px;
	}
}

.top-theme-search-card p {
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	gap: 10px;
}

/* .tab-grid ul li a{
		margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	gap: 10px;
}
.top-theme-search-card .search-card-text {
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	gap: 10px;
} */

@media (max-width: 767px) {
	.top-theme-search-card p {
		margin-top: 0;
		margin-left: 20px;
		width: 100%;
		justify-content: space-between;
		text-align: left;
		--fsz: 14;
	}
	.top-theme-search-card .search-card-text {
		margin-top: 0;
		width: 100%;
		justify-content: space-between;
	}
}

@media (max-width: 991px) {
	.line-title {
		--fsz: 20;
		font-size: var(--font-size);
		padding-left: 0;
		font-weight: 600;
		margin-bottom: 1rem;
	}
	.line-title::before {
		content: none;
	}
}

.tab-grid ul{
	display: grid;
	gap: 25px;
	grid-template-columns: repeat(3, 1fr);
	padding-left: 0;
}

@media (max-width: 991px) {
	.tab-grid ul{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.tab-grid ul{
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

.top-tab .tab-inner {
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	.top-tab .tab-inner {
		margin-bottom: 24px;
	}
}

.top-theme-search-lead {
	--fsz: 24;
	margin-bottom: 50px;
	margin-top: 16px;
}

@media (max-width: 991px) {
	.top-theme-search-lead {
		--fsz: 16;
		margin-top: 30px;
		margin-bottom: 24px;
	}
}

.top-popular-keyword {
	border: 1px solid var(--color-gray-1);
	background-color: #fff;
	border-radius: 10px;
	padding: 30px 25px;
}

.top-popular-keyword-grid {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	position: relative;
}

@media (max-width: 991px) {
	.top-popular-keyword-grid {
		gap: 16px;
		margin-top: 34px;
	}
}

.top-popular-keyword-grid a {
	display: flex;
	gap: 5px;
	color: var(--color-body-1);
	border: 1px solid var(--color-gray-1);
	border-radius: 12px;
	padding: 9px 24px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

@media (max-width: 991px) {
	.top-popular-keyword-grid a {
		--fsz: 14;
		padding: 8px 16px;
	}
}

.top-popular-keyword-grid a span {
	font-weight: 700;
	display: inline-block;
	color: var(--color-red-1);
}

#keyword {
	padding: 65px 0;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.top-popular-keyword {
	position: relative;
}

.bigribon {
	position: absolute;
	top: -230px;
	left: -320px;
	z-index: -1;
}

@media (max-width: 991px) {
	.bigribon {
		max-width: 265px;
		top: -125px;
		left: -100px;
	}
}

.top-service-grid ul li {
	border: 1px solid var(--color-gray-1);
	padding: 24px;
	border-radius: 10px;
	color: var(--color-body-1);
	list-style: none;
	position: relative;
}

.top-service-grid ul li img{
	margin-bottom: 20px;
}

.top-service-grid ul li:hover{
	opacity: .7;
}

.top-service-grid ul li :last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.top-service-grid ul li {
		padding: 16px;
	}
}

.top-service-grid ul li a::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.top-service-grid ul li a:hover{
	opacity: 1;
}

.business-link {
	color: var(--color-body-1);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	margin-bottom: 10px;
	gap: 5px;
}

.business-link:after {
	content: "";
	display: block;
	background-image: url(../images/icon-external.svg);
	background-repeat: no-repeat;
	width: 22px;
	height: 22px;
}

.business-card-tag {
	font-weight: 700;
	background-color: var(--color-gray-3);
	color: var(--color-body-1);
	border-radius: 50px;
	display: inline-block;
	padding: 3px 10px;
}

.top-service-grid ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding-left: 0;
}

@media (max-width: 991px) {
	.top-service-grid ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 767px) {
	.top-service-grid ul {
		grid-template-columns: 1fr;
	}
}

.top-service,
.top-news {
	padding: 65px 0;
}

@media (max-width: 767px) {
	.top-service,
	.top-news {
		padding: 50px 0;
		padding-bottom: 40px;
	}
}

.top-service h2 {
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	.top-service h2 {
		margin-bottom: 26px;
	}
}

.top-news h2 {
	text-align: center;
	margin-bottom: 40px;
}

.top-news dl:nth-last-child(2) {
	border-bottom: 1px solid var(--color-gray-1);
}

.btn {
	color: #fff;
	border-radius: 10px;
	padding: 11px 15px;
	text-align: center;
	font-weight: 700;
	position: relative;
}

.btn.red {
	background-color: var(--color-red-1);
}

.btn.white {
	background-color: #fff;
	color: var(--color-body-1);
	border: 1px solid var(--color-gray-1);
}


.btn.arrow {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

/* .btn.arrow::after {
	content: "";
	background-image: url(../images/icon-arrowcircle-white.svg);
	background-repeat: no-repeat;
	display: block;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 18px;
} */

.btn.white.arrow::after {
	background-image: url(../images/icon-arrowcircle.svg);
}

.other-info h2 {
	margin-bottom: 70px;
}

@media (max-width: 991px) {
	.other-info h2 {
		margin-bottom: 50px;
	}
}

.sns {
	display: flex;
	gap: 120px;
	justify-content: center;
	margin-bottom: 70px;
}

@media (max-width: 991px) {
	.sns {
		gap: 24px;
		margin-bottom: 40px;
	}
}

.sns-link {
	text-align: center;
	text-decoration: underline;
	display: grid;
	color: var(--color-body-1);
	gap: 10px;
	place-items: center;
}

.sns-link:hover {
	text-decoration: none;
}

.sns-link span {
	display: block;
	color: var(--color-body-1);
	margin-top: 10px;
}

.other-banner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(auto, 496px));
	gap: 30px 50px;
	justify-content: center;
	position: relative;
	z-index: 2;
}

@media (max-width: 767px) {
	.other-banner {
		flex-direction: column;
		gap: 8px;
		align-items: center;
	}
}

/* ========================================
		TOPページここまで
======================================== */

/* ========================================
		news.cssここから
======================================== */

.archive-news-link {
	margin: 40px 0;
	text-align: center;
}

@media (max-width: 991px) {
	.archive-news-link {
		--fsz: 14;
	}
}

/* ========================================
		news.cssここまで
======================================== */

/* ========================================
		よくある質問ここから
======================================== */

.page-faq .page-title {
	margin-bottom: 95px;
}

.inquiry-tab .tab-content {
	border: none;
}

.inquiry-tab .tab-pane {
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0;
	padding-top: 50px;
}

.inquiry-anchor {
	margin-bottom: 35px;
	display: flex;
	gap: 24px;
}

.inquiry-anchor a {
	width: 100%;
	text-align: center;
	font-weight: bold;
	color: var(--color-body-1);
	border: 1px solid var(--color-gray-1);
	border-radius: 8px;
	padding: 1rem 0;
	display: flex;
	justify-content: center;
	gap: 5px;
}

.inquiry-tab-inner .section-title {
	margin-bottom: 20px;
}

.inquiry-cat:not(:last-child) {
	margin-bottom: 40px;
}

.accordion {
	--border-bottom-left-radius: .5rem;
	--bs-accordion-active-color: var(--color-body-1);
	margin: 0 0 1rem;
}

.accordion:not(:has(+ .accordion)) {
	margin-bottom: 80px;
}

@media(max-width:991px) {
.accordion:not(:has(+ .accordion)) {
	margin-bottom: 60px;
}
}

.accordion-item {
	border-color: var(--color-gray-1);
}

.accordion-button {
	font-weight: 500;
	padding: 34px 24px;
	gap: .5rem;
	cursor: pointer;
}

.accordion-button::before {
	--fsz: 24;
	content: "Q";
	font-weight: 700;
	line-height: 1;
}

.accordion-button::after {
	aspect-ratio: 1;
	background: url(../images/icon-plus.svg) no-repeat center center/contain;
	content: '';
	display: inline-block;
	width: 32px;
	height: auto;
}

.accordion-button:not(.collapsed) {
	background-color: transparent;
}

.accordion-button:not(.collapsed):not(:focus) {
	box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
	background-image: url(../images/icon-minus.svg);
}

.accordion-body {
	position: relative;
	padding: 0 1.5rem 1.5rem;
	display: flex;
	align-items: flex-start;
	padding-top: 0;
	gap: .5rem;
}

.accordion-body::before {
	--fsz: 24;
	content: "A";
	font-weight: 700;
	color: var(--color-red-1);
	line-height: 1;
}


@media(max-width:767px) {
.inquiry-tab .nav-tabs .nav-item .nav-link {
	--fsz: 14;
}
.inquiry-tab .tab-pane {
	padding-top: 30px;
}
.inquiry-anchor {
	gap: .5rem;
}
.inquiry-anchor a {
	--fsz: 14;
}
.accordion-button {
	padding: 1.5rem;
}
.accordion-button::after {
	width: 24px;
}
}

/* ========================================
		よくある質問ここまで
======================================== */

/* ========================================
		お問い合わせここから
======================================== */

.contact-top,
.contact-form {
	border: 1px solid var(--color-gray-1);
	border-radius: 8px;
	padding: 32px;
}

@media (max-width: 767px) {
	.contact-top,
	.contact-form {
		padding: 24px;
	}
}

.contact-top {
	margin-bottom: 24px;
}

.contact-section-title {
	--fsz: 36;
	font-weight: bold;
	display: flex;
	gap: 8px;
	align-items: center;
margin-top: 0;
}

@media (max-width: 767px) {
	.contact-section-title {
		--fsz: 20;
	}
}

.contact-section-title::before {
	content: "";
	display: block;
	background-image: url(../images/icon-phone.svg);
	width: 56px;
	aspect-ratio: 1;
	height: auto;
	flex: 0 0 auto;
}

.contact-form .contact-section-title::before {
	background-image: url(../images/icon-email.svg);
}

@media (max-width: 767px) {
	.contact-section-title::before {
		width: 32px;
		background-size: contain;
	}
}

.contact-department {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 32px;
	margin-bottom: 32px;
	gap: 24px;
	align-items: flex-start;
  padding-left: 0;
}

@media (max-width: 767px) {
	.contact-department {
		grid-template-columns: 1fr;
	}
}

.department-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

@media (max-width: 767px) {
	.department-item {
		gap: 8px;
	}
}

.department-item::before {
	content: "";
	background-image: url(../images/icon-line.svg);
	background-repeat: no-repeat;
	width: 24px;
	height: 4px;
	background-size: contain;
	flex: 0 0 auto;
}

.page-inquiry .page-title {
	margin-bottom: 40px;
}

span.hissu{
  color: var(--color-red-1);
  font-weight: bold;
}


form#mailformpro label{
  font-weight: bold;
}

form#mailformpro input,
form#mailformpro select{
  padding: 10px;
}

form#mailformpro .btn{
  padding: 10px 30px;
}

/* ========================================
		お問い合わせここまで
======================================== */

/* ========================================
		テーマ別で探すここから
======================================== */

.page-link h2.section-title {
	margin-bottom: 25px;
}

@media (max-width: 991px) {
	.page-link h2.section-title {
		margin-bottom: 10px;
	}
}

.gray-box {
	border-radius: 12px;
	border: 4px solid var(--color-gray-1);
	padding: 24px;
	margin-bottom: 40px;
}

.gray-box-title {
	--fsz: 20;
	font-size: var(--font-size);
	border-bottom: 1px solid var(--color-gray-1);
	padding-bottom: 10px;
	margin: 0 0 20px;
	font-weight: bold;
}

.box-column {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, 1fr);
}

.box-column.full {
	grid-template-columns: 1fr;
}

@media (max-width: 767px) {
	.box-column {
		grid-template-columns: 1fr;
	}
}

.regist-tag {
	--fsz: 14;
	border: 1px solid var(--color-red-3);
	color: var(--color-red-3);
	border-radius: 50px;
	padding: 4px 11px;
	font-weight: 500;
}

.regist-tag.brown {
	border-color: var(--color-brown);
	color: var(--color-brown);
}

.regist-tag.blue-green {
	border-color: var(--color-blue-green);
	color: var(--color-blue-green);
}
.regist-tag.red {
	border-color: var(--color-red-1);
	color: var(--color-red-1);
}
.regist-tag.blue {
	border-color: var(--color-blue-2);
	color: var(--color-blue-2);
}

.gray-box-text {
	margin: 0;
}

.external-link,
.gray-box .box-column .box-column-item a {
	display: block;
	text-decoration: underline;
	color: var(--color-body-1);
	display: inline-flex;
	gap: 4px;
	align-items: center;
	font-weight: 500;
	margin-bottom: 8px;
}

@media (max-width: 767px) {
	.external-link,
	.gray-box .box-column .box-column-item a {
		--fsz: 14;
	}
}

.external-link:after,
.gray-box .box-column .box-column-item a::after {
	content: "";
	display: block;
	width: 24px;
	height: auto;
	aspect-ratio: 1;
	background-image: url(../images/icon-external.svg);
	flex: 0 0 auto;
}



.theme-link-column ul{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding-left: 0;
}

.theme-link-column ul:not(:last-child) {
	margin-bottom: 70px;
}

@media (max-width: 767px) {
	.theme-link-column ul {
		grid-template-columns: 1fr;
	}
}

.theme-link-column ul li {
	border-radius: 8px;
	border: 1px solid var(--color-gray-1);
	padding: 16px;
	display: block;
	text-decoration: none !important;
	position: relative;
	color: var(--color-gray-4);
	font-weight: 700;
	margin-top: 0;
}

.theme-link-column ul li:hover{
	opacity: .6;
}

.theme-link-column ul li:hover a{
	opacity: 1;
}


@media (max-width: 767px) {
	.external-link {
		--fsz: 14;
	}
}


.theme-link-column ul li a {
	margin-bottom: 20px;
	font-weight: 500;
	text-decoration: none;
	word-break: break-all;
	margin-top: 15px;
	display: flex;
	color: var(--color-body-1);
		gap: 4px;
	align-items: center;
	font-weight: 500;
	margin-bottom: 20px;
}

@media(max-width:768px) {
	.theme-link-column ul li a{
		--fsz:14;
	}
}

.theme-link-column ul li a::after{
	content: "";
	display: block;
	width: 24px;
	height: auto;
	aspect-ratio: 1;
	background-image: url(../images/icon-external.svg);
	flex: 0 0 auto;
}

.theme-link-column ul li span{
	display: inline-block;
}

.theme-link-column ul li a::before{
	    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.box-column-item p{
	margin: 0;
}

.box-column-item p:first-of-type{
	margin-top: 40px;
	margin-bottom: 0;
}

@media(max-width:575px) {
	.box-column-item p:first-of-type{
		margin-top: 20px;
	}
}

/* ========================================
		テーマ別で探すここまで
======================================== */

/* ========================================
		入札情報ここから
======================================== */

#nyuusatsu .section-title {
	align-items: flex-start;
	margin-bottom: 5px;
}

#nyuusatsu .page-title {
	margin-bottom: 48px;
}

.post-time {
	color: var(--color-gray-4);
	padding-left: 64px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-gray-1);
}

@media (max-width: 991px) {
	.post-time {
		padding-left: 45px;
	}
}

.post-content {
	padding: 24px 0;
}

.post-footer-contact {
	border: 1px solid var(--color-gray-1);
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	line-height: 1.5;
}

/* ========================================
		入札情報ここまで
======================================== */

/* ========================================
		沿革ここから
======================================== */
/*
.history-table {
	display: flex;
	border-top: 1px solid var(--color-gray-1);
}

@media (max-width: 767px) {
	.history-table {
		flex-direction: column;
	}
}

.history-table:last-child {
	border-bottom: 1px solid var(--color-gray-1);
}

.history-day {
	background-color: var(--color-gray-3);
	width: 200px;
	flex: 0 0 auto;
	padding: 16px;
	display: flex;
	align-items: center;
	font-weight: bold;
}

@media (max-width: 767px) {
	.history-day {
		width: 100%;
		border-bottom: 1px solid var(--color-gray-1);
	}
}

.history-content {
	padding: 16px;
	padding-left: 48px;
}

@media (max-width: 767px) {
	.history-content {
		padding-left: 16px;
	}
}
*/

.basic-info-lists {
	padding-left: 0;
}

.basic-info-lists li {
	list-style: none;
	display: flex;
}

.basic-info {
	margin-bottom: 100px;
}

.basic-info-lists li:not(:last-child) {
	margin-bottom: 10px;
}

.basic-info-lists li span {
	display: block;
	width: 90px;
}

.num-list-menu {
	padding-left: 1rem;
}

.num-list-inner {
	padding-left: 1rem;
}

.num-list-inner li {
	list-style-type: disc;
}

.num-list-inner li:not(:last-child) {
	margin-bottom: 5px;
}

.num-list-item {
	margin-bottom: 15px;
}

.outline-subtitle {
	--fsz: 18;
	font-size: var(--font-size);
}

.link-underline {
	text-decoration: underline;
}

/* ========================================
		沿革ここまで
======================================== */

/* ========================================
		助成金を活用したいここから
======================================== */

.zyoseikin-link a {
	--fsz: 14;
	text-align: center;
	padding: 16px;
	border: 1px solid var(--color-gray-1);
	border-radius: 8px;
	color: var(--color-body-1);
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	text-decoration: none;
}

.zyoseikin-link ul {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, 1fr);
}

.zyoseikin-link ul li {
	margin-top: 0;
}

@media (max-width: 767px) {
	.zyoseikin-link ul {
		grid-template-columns: 1fr;
	}
}

.zyoseikin-link a::after {
	aspect-ratio: 1;
	background: url(../images/icon-arrow-down.svg) no-repeat center center/contain;
	content: '';
	display: inline-block;
	height: auto;
	width: 18px;
	flex: 0 0 auto;
}

.update-time {
	margin-bottom: 24px;
	color: var(--color-body-1);
}

/* ========================================
		助成金を活用したいここまで
======================================== */

/* ========================================
		取材申し込みの流れここから
======================================== */

.interview-box {
	display: flex;
	align-items: center;
	border-radius: 8px;
	border: 1px solid var(--color-gray-1);
	padding: 16px;
	gap: 40px;
	padding-left: 0;
}

@media (max-width: 991px) {
	.interview-box {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 16px;
		gap: 16px;
	}
}

.interview-num {
	position: relative;
	display: flex;
	gap: 12px;
	align-items: center;
	--fsz: 28;
	font-weight: bold;
}

.interview-num::before {
	content: "";
	width: 4px;
	height: 40px;
	display: block;
	background-color: var(--color-red-4);
	border-radius: 2px;
}

.pdf-link {
	color: var(--color-body-1);
	text-decoration: underline;
}

.interview-list-menu {
	padding-left: 1rem;
	margin-bottom: 24px;
}

.interview-list-menu li:not(:last-child) {
	margin-bottom: 16px;
}

.interview-text a[href*=".pdf"] {
	display: flex;
	gap: 8px;
	align-items: center;
}

.interview-text a[href*=".pdf"]::after {
	content: "";
	display: block;
	width: 24px;
	aspect-ratio: 1;
	height: auto;
	background-image: url(../images/icon-file.svg);
	background-repeat: no-repeat;
	background-size: contain;
	flex: 0 0 auto;
}

.interview-flow-icon {
	margin: 16px 0;
	text-align: center;
}

.interview-title {
	--fsz: 20;
	font-size: var(--font-size);
	font-weight: bold;
	margin-bottom: 16px;
}

@media (max-width: 767px) {
	.interview-title {
		--fsz: 16;
	}
}

.interview-footer-title {
	--fsz: 20;
	font-weight: bold;
	margin-bottom: 16px;
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

/* ========================================
		取材申し込みの流れここまで
======================================== */

/* ========================================
		貸出施設
======================================== */

.column-box {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(auto, 588px));
	gap: 24px;
	justify-content: center;
}

.facility-link-item {
	border: 1px solid var(--color-gray-1);
	border-radius: 8px;
	display: grid;
	grid-template-columns: 1fr auto auto;
	padding: 24px 28px;
	align-items: center;
	gap: 21px;
	font-weight: bold;
	--fsz: 20;
}

.facility-link-item::after {
	aspect-ratio: 1;
	background-color: var(--color-red-1);
	content: '';
    display: inline-block;
    height: auto;
    -webkit-mask: url(../images/icon-arrowcircle.svg) no-repeat center center / contain;
    mask: url(../images/icon-arrowcircle.svg) no-repeat center center / contain;
	width: 24px;
}

@media (max-width: 575px) {
	.facility-link-item {
		grid-template-columns: auto 24px;
	}
	.facility-link-item img {
		grid-column: 1 / -1;
	}
}

.facility-text {
	--fsz: 24;
	margin-bottom: 0;
	margin-top: 16px;
}

.facility-link-item .arrow-icon {
	width: 24px;
}

@media (max-width: 991px) {
	.facility-text {
		--fsz: 16;
		margin-bottom: 40px;
	}
}

/* ========================================
		貸出施設ここまで
======================================== */

:where(.box, .contact-box) {
	border: 1px solid var(--color-gray-1);
	border-radius: 0.5rem;
	text-align: center;
	padding: 1.5rem;
	margin: 1rem 0;
}

:not([class*="box"]) + [class*="box"] {
	margin-top: 40px;
}

:is(.box, .contact-box, .flow-box) p {
	margin-bottom: 0;
}

:where(.box, .contact-box) h2 {
	--fsz: 20;
	align-items: center;
	display: flex;
	font-size: var(--font-size);
	font-weight: 700;
	gap: 8px;
	justify-content: center;
}

.contact-box h2::before {
	aspect-ratio: 1;
	background: url(../images/icon-phone.svg) no-repeat center center/contain;
	content: "";
	display: inline-block;
	height: auto;
	width: 40px;
}

.flow-box {
	border: 1px solid var(--color-gray-1);
	border-radius: 0.5rem;
	padding: 1rem 1rem 1rem;
	margin: 1rem 0 calc(53px + 2rem);
	position: relative;
	display: grid;
	gap: 1rem 2.5rem;
	align-items: center;
}

.flow-box::after {
	aspect-ratio: 62/53;
	background: url(../images/icon-flow-arrow.svg) no-repeat center center/contain;
	content: "";
	display: block;
	width: 62px;
	position: absolute;
	left: 50%;
	bottom: calc(-53px - 1rem);
	transform: translateX(-50%);
}

.flow-box:not(:has(+ .flow-box)) {
	margin-bottom: 40px;
}

.flow-box:not(:has(+ .flow-box))::after {
	content: none;
}

.flow-box h2 {
	display: contents;
	--fsz: 20;
	font-size: var(--font-size);
	font-weight: 700;
	margin: 0 0 1rem;
}

.flow-box-num {
	--fsz: 28;
	align-items: center;
	display: flex;
	grid-row: span 2;
	gap: 8px;
	min-height: 40px;
}

.flow-box-num::before {
	background-color: var(--color-red-4);
	border-radius: 50px;
	content: "";
	display: block;
	height: 40px;
	width: 4px;
}

@media (min-width: 768px) {
	.flow-box {
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
	}
	.flow-box-num {
		margin: 0 0 0 -1rem;
	}
}

@media (max-width: 767px) {
	.flow-box h2 {
		--fsz: 16;
	}
}

/* .history-table :where(th, td) {
	border-left: 0;
	border-right: 0;
} */

@media (min-width: 768px) {
	.history-table th {
		white-space: nowrap;
	}
}

@media (max-width: 767px) {
	.history-table :where(th, td) {
		display: block;
		margin-top: -1px;
	}
}

.grant-table {
	--fsz: 14;
	table-layout: fixed;
}

.grant-table :where(th, td) {
	padding: 0.5rem;
}

.grant-table :where(th, td):first-child {
	width: 40px;
}

@media(max-width:767px) {
	.js-scrollable table {
		width: 767px;
	}
}

.page-title-area {
	margin-bottom: 70px;
}

a:where(.page-content *)[href="#"][id] {
	pointer-events: none;
	text-decoration: none;
}

.detail-title-area{
	padding-bottom: 12px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--color-gray-1);
}

.detail-title-area .date {
	margin-bottom: 0;
	margin-left: 64px;
}

.page-content [style="text-decoration: underline;"] {
	font-weight: bold;
}

.site-title {
	display: contents;
}

.kengaku-caution{
	border:1px solid var(--color-gray-1);
	border-radius: 8px;
	padding: 30px 15px;
	margin-bottom: 30px;
	margin-top: 50px;
}

form#mailformpro label{
	white-space: normal!important;
}

form#mailformpro label.hissu{
	display: flex;
	gap: 5px;
	align-items: center;
}

form#mailformpro label.hissu::after{
	content: "*必須";
	display: block;
	font-size: var(--font-size);
	--fsz: 16;
	color: var(--color-red-1);
	font-weight: bold;
}

@media(max-width:768px) {
	form#mailformpro label.hissu::after{
		--fsz: 12;
	}
}

.submitbox input{
	border-radius: 8px;
	--fsz:16;
	font-size: var(--font-size);
}

input.mfp_element_all{
	max-width: 100%;
}

input.mfp_element_submit:hover{
	opacity: .6;
	box-shadow: none;
}

form input.mfp_element_submit, form input.mfp_element_reset, form input.mfp_element_button, form button.mfp_next, form button.mfp_prev, form .mfp_element_submit:hover{
	text-shadow: none;
    background: var(--color-red-1);
    border: none;
}

input.mfp_element_text, input.mfp_element_number, select.mfp_element_select-one, input.mfp_element_email, input.mfp_element_tel, textarea.mfp_element_textarea, input.mfp_element_date, input.mfp_element_password{
	box-shadow: none;
	border: 1px solid var(--color-gray-1);
}

[id] {
	scroll-margin-top: var(--scroll-margin);
}

@media (max-width: 991px) {
	:root {
		--scroll-margin: 75px;
	}
}

.accordion-button [id] {
	scroll-margin-top: calc(var(--scroll-marign) + 35px);
}

