@media screen and (min-width: 601px) {

.front-forum-list {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.front-forum-list > li {
	margin-bottom: 2%;
	width: 49%;
}
.front-forum-list .form-content-box {
	background-color: #FFF7E3;
	padding: 30px 25px 90px;
	box-sizing: border-box;
	height: 100%;
	border-radius: 12px;
	position: relative;
}
.front-forum-list h2 {
	font-size: 20px;
	margin: 0 0 20px;
	padding: 0 0 15px;
	text-align: center;
	color: #444;
	background: none;
	border: none;
	position: relative;
}
.front-forum-list h2 a {
	color: #444;
	display: block;
	position: relative;
}
.front-forum-list h2 a:hover {
	color: #f80;
	text-decoration: none;
}
.front-forum-list h2:after {
	width: 100%;
	height: 5px;
	border-radius: 8px;
	position: absolute;
	content: "";
	background-color: #E9DEC3;
	left: 0;
	bottom: 0;
}
.front-forum-list h2 .count {
	position: absolute;
	right: 0;
	bottom: 4px;
	color: #836449;
	font-size: 10px;
	letter-spacing: 0.5px;
	padding: 2px 10px;
	background: #E9DEC3;
	border-radius: 12px;
}
.front-forum-list .forum-link-btn {
	text-align: center;
	position: absolute;
	width: 100%;
	display: block;
	left: 0;
	bottom: 30px;
}
.front-forum-list .forum-link-btn a {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 1px;
	color: #fff;
	background-color: #f80;
	padding: 7px 40px;
	border-radius: 40px;
}
.forum-link-btn a:hover {
	text-decoration: none;
	opacity: 0.7;
}
.forum-topic-list {
	margin: 0;
}
.forum-topic-list > li {

}
.forum-topic-list > li a {
	color: #444;
}
.pickup-topic-tag {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 35px;
	padding: 18px 22px;
	background: #FFF3F3;
	border-radius: 12px;
	box-shadow: 0 0 3px #F96E6E;
}
.pickup-topic-tag dt {
	font-size: 13px;
	font-weight: bold;
	width: 80px;
	text-align: center;
}
.pickup-topic-tag dd {
	width: calc(100% - 80px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 6px 10px;
}
.pickup-topic-tag-list {
	display: flex;
	flex-wrap: wrap;
	max-height: 31px;
	overflow: hidden;
}
.pickup-topic-tag-toggle-input {
	display: none;
}
.pickup-topic-tag-toggle-input:checked + .pickup-topic-tag-list {
	max-height: none;
}
.pickup-topic-tag-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 3px;
	padding: 4px 0;
	color: #333;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 12px;
	line-height: 1.6;
	white-space: nowrap;
}
.pickup-topic-tag-toggle__open:after,
.pickup-topic-tag-toggle__close:after {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 6px;
	border-right: solid 1.5px currentColor;
	border-bottom: solid 1.5px currentColor;
	content: "";
	transform: rotate(45deg);
	transform-origin: center;
	position: relative;
}
.pickup-topic-tag-toggle__open:after {
	top: -1px;
}
.pickup-topic-tag-toggle__close:after {
	top: 2.5px;
	transform: rotate(225deg);
}
.pickup-topic-tag-toggle:hover {
	color: #d9687c;
	text-decoration: underline;
}
.pickup-topic-tag-toggle__open,
.pickup-topic-tag-toggle__close {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	gap: 0;
	height: 1.6em;
	line-height: 1;
	width: 6.8em;
}
.pickup-topic-tag-toggle__close {
	display: none;
}
.pickup-topic-tag-toggle-input:checked ~ .pickup-topic-tag-toggle .pickup-topic-tag-toggle__open {
	display: none;
}
.pickup-topic-tag-toggle-input:checked ~ .pickup-topic-tag-toggle .pickup-topic-tag-toggle__close {
	display: inline-flex;
}
.pickup-topic-tag-list-item {
	margin: 3.5px 0 3.5px 7px;
}
.pickup-topic-tag-list-item a {
	display: block;
	color: #444;
	background-color: #fff;
	border: solid 1px #f80;
	padding: 1px 9px 1px 10px;
	border-radius: 30px;
	font-size: 12px;
}
.pickup-topic-tag-list-item a:hover {
	color: #fff;
	background-color: #f80;
	border-color: #f80;
	text-decoration: none;
}
.bbs-section-heading {
	display: block;
	width: fit-content;
	margin: 4px auto 10px;
	padding: 0 0 9px;
	color: #333;
	background: none;
	border: none;
	font-size: 24px;
	font-weight: normal;
	line-height: 1.4;
	position: relative;
	text-align: center;
}
.bbs-unanswered-guide {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 25px;
	padding: 24px 28px;
	border: solid 2px #f2c577;
	border-radius: 12px;
	background: #fffaf0;
	box-shadow: 0 8px 22px rgba(160, 118, 46, 0.12);
}
.bbs-unanswered-guide__content {
	flex: 1;
}
.bbs-unanswered-guide__label,
.bbs-unanswered-hero__label {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 10px;
	color: #5c3b1e;
	background: transparent;
	border: none;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.03em;
}
.bbs-unanswered-guide .bbs-unanswered-guide__label,
.bbs-unanswered-hero .bbs-unanswered-hero__label {
	color: #d6761f;
}
.bbs-unanswered-guide__label:before,
.bbs-unanswered-hero__label:before {
	width: 34px;
	height: 34px;
	background: url("../../images/page/front-page/welcome_mental_top.webp") center center / contain no-repeat;
	content: "";
}
.bbs-unanswered-guide h2 {
	margin: 0 0 8px;
	padding: 0;
	color: #5c4322;
	background: none;
	border: none;
	font-size: 20px;
	line-height: 1.45;
}
.bbs-unanswered-guide p {
	margin: 0;
	color: #5d5447;
	font-size: 14px;
	line-height: 1.8;
}
.bbs-unanswered-guide__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 150px;
	padding: 10px 18px;
	color: #fff;
	background: #f08c2e;
	border-radius: 999px;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 0 5px 12px rgba(240, 140, 46, 0.25);
}
.bbs-unanswered-guide__button:hover {
	color: #fff;
	opacity: 0.86;
	text-decoration: none;
}
.bbs-unanswered-guide__button em {
	margin-left: 9px;
	padding: 2px 9px;
	color: #de6f00;
	background: #fff;
	border-radius: 999px;
	font-size: 12px;
	font-style: normal;
}
.bbs-unanswered-hero {
	margin: 0 0 28px;
	padding: 28px 32px;
	background: #fffaf0;
	border: solid 2px #f2c577;
	border-radius: 12px;
}
.bbs-unanswered-hero__text {
	margin: 0;
	color: #4c463f;
	line-height: 1.9;
}
.bbs-unanswered-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}
.bbs-unanswered-hero__link,
.bbs-unanswered-hero__button,
.bbs-unanswered-empty a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 999px;
	font-weight: bold;
	text-decoration: none;
}
.bbs-unanswered-hero__link,
.bbs-unanswered-empty a {
	color: #a36b1f;
	background: #fff;
	border: solid 1px #efc678;
}
.bbs-unanswered-hero__button {
	color: #fff;
	background: #f08c2e;
}
.bbs-unanswered-hero__link:hover,
.bbs-unanswered-hero__button:hover,
.bbs-unanswered-empty a:hover {
	opacity: 0.86;
	text-decoration: none;
}
.topic-list--unanswered {
	margin-top: 16px;
}
.topic-list--unanswered .reply-count {
	color: #de6f00;
	font-weight: bold;
}
.bbs-unanswered-empty {
	margin: 24px 0;
	padding: 28px;
	text-align: center;
	background: #fffaf0;
	border: solid 1px #efc678;
	border-radius: 12px;
}
.bbs-unanswered-empty p {
	margin: 0 0 16px;
	color: #5d5447;
}
.forum-view {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 16px;
	align-items: center;
	margin: 0 0 28px;
	line-height: 1;
}
.forum-view .forum-view-item {
	position: relative;
	width: auto;
	min-width: 0;
	margin: 0;
}

}



@media screen and (max-width: 600px) {

.front-forum-list {
	flex-direction: column;
}
.front-forum-list > li {
	width: auto;
	margin-bottom: 20px;
}
.front-forum-list .form-content-box {
	background-color: #FFF7E3;
	padding: 25px 20px 85px;
	box-sizing: border-box;
	height: 100%;
	border-radius: 12px;
	position: relative;
}
.front-forum-list h2 {
	font-size: 19px;
	margin: 0 0 20px;
	padding: 0 0 15px;
	text-align: center;
	color: #444;
	background: none;
	border: none;
	position: relative;
}
.front-forum-list h2 a {
	color: #444;
	display: block;
	position: relative;
}
.front-forum-list h2 a:hover {
	color: #f80;
	text-decoration: none;
}
.front-forum-list h2:after {
	width: 100%;
	height: 5px;
	border-radius: 8px;
	position: absolute;
	content: "";
	background-color: #E9DEC3;
	left: 0;
	bottom: 0;
}
.front-forum-list h2 .count {
	position: absolute;
	right: 0;
	bottom: 3px;
	color: #836449;
	font-size: 9px;
	letter-spacing: 0.5px;
	padding: 2px 8px;
	background: #E9DEC3;
	border-radius: 12px;
}
.forum-link-btn {
	text-align: center;
	position: absolute;
	width: 100%;
	display: block;
	left: 0;
	bottom: 30px;
}
.forum-link-btn a {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 1px;
	color: #fff;
	background-color: #f80;
	padding: 7px 40px;
	border-radius: 40px;
}
.forum-link-btn a:hover {
	text-decoration: none;
	opacity: 0.7;
}
.forum-topic-list {
	margin: 0;
}
.forum-topic-list a {
	color: #444;
}
.pickup-topic-tag {
	margin-bottom: 35px;
	padding: 17px 12px;
	background: #fff6f3;
	background: #FFF3F3;
	border-radius: 12px;
	box-shadow: 0 0 3px #F96E6E;
}
.pickup-topic-tag dt {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 8px;
}
.pickup-topic-tag dd {
	display: block;
}
.pickup-topic-tag-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-height: 34px;
	overflow: hidden;
}
.pickup-topic-tag-toggle-input {
	display: none;
}
.pickup-topic-tag-toggle-input:checked + .pickup-topic-tag-list {
	max-height: none;
}
.pickup-topic-tag-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: fit-content;
	margin: 10px auto 0;
	padding: 4px 0;
	color: #a04f5f;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 12px;
	line-height: 1.6;
}
.pickup-topic-tag-toggle__open:after,
.pickup-topic-tag-toggle__close:after {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 6px;
	border-right: solid 1.5px currentColor;
	border-bottom: solid 1.5px currentColor;
	content: "";
	transform: rotate(45deg);
	transform-origin: center;
	position: relative;
}
.pickup-topic-tag-toggle__open:after {
	top: -1px;
}
.pickup-topic-tag-toggle__close:after {
	top: 2.5px;
	transform: rotate(225deg);
}
.pickup-topic-tag-toggle:hover {
	color: #d9687c;
	text-decoration: underline;
}
.pickup-topic-tag-toggle__open,
.pickup-topic-tag-toggle__close {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	gap: 0;
	height: 1.6em;
	line-height: 1;
	width: 6.8em;
}
.pickup-topic-tag-toggle__close {
	display: none;
}
.pickup-topic-tag-toggle-input:checked ~ .pickup-topic-tag-toggle .pickup-topic-tag-toggle__open {
	display: none;
}
.pickup-topic-tag-toggle-input:checked ~ .pickup-topic-tag-toggle .pickup-topic-tag-toggle__close {
	display: inline-flex;
}
.pickup-topic-tag-list-item {
	margin: 3px;
}
.pickup-topic-tag-list-item a {
	display: block;
	color: #444;
	background-color: #fff;
	border: solid 1px #ccc;
	padding: 2px 9px 2px 10px;
	border-radius: 30px;
	font-size: 12px;
	letter-spacing: 0.2px;
}
.pickup-topic-tag-list-item a:hover {
	color: #fff;
	background-color: #f80;
	border-color: #f80;
	text-decoration: none;
}
.bbs-section-heading {
	display: block;
	width: fit-content;
	margin: 0 auto 18px;
	padding: 0 0 8px;
	color: #333;
	background: none;
	border: none;
	font-size: 21px;
	font-weight: normal;
	line-height: 1.4;
	position: relative;
	text-align: center;
}
.forum-view {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	align-items: center;
	margin: 0 0 24px;
	line-height: 1;
}
.forum-view .forum-view-item {
	position: relative;
	width: auto;
	min-width: 0;
	margin: 0;
}
.bbs-unanswered-guide {
	margin: 24px 0 30px;
	padding: 20px 17px;
	border: solid 2px #f2c577;
	border-radius: 12px;
	background: #fffaf0;
	box-shadow: 0 7px 18px rgba(160, 118, 46, 0.1);
}
.bbs-unanswered-guide__label,
.bbs-unanswered-hero__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 8px;
	color: #5c3b1e;
	background: transparent;
	border: none;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 0.03em;
}
.bbs-unanswered-guide .bbs-unanswered-guide__label,
.bbs-unanswered-hero .bbs-unanswered-hero__label {
	color: #d6761f;
}
.bbs-unanswered-guide__label:before,
.bbs-unanswered-hero__label:before {
	width: 30px;
	height: 30px;
	background: url("../../images/page/front-page/welcome_mental_top.webp") center center / contain no-repeat;
	content: "";
}
.bbs-unanswered-guide h2 {
	margin: 0 0 8px;
	padding: 0;
	color: #5c4322;
	background: none;
	border: none;
	font-size: 18px;
	line-height: 1.45;
}
.bbs-unanswered-guide p {
	margin: 0;
	color: #5d5447;
	font-size: 13px;
	line-height: 1.75;
}
.bbs-unanswered-guide__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(78%, 260px);
	margin: 16px auto 0;
	padding: 10px 18px;
	box-sizing: border-box;
	color: #fff;
	background: #f08c2e;
	border-radius: 999px;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 0 5px 12px rgba(240, 140, 46, 0.22);
}
.bbs-unanswered-guide__button:hover {
	color: #fff;
	opacity: 0.86;
	text-decoration: none;
}
.bbs-unanswered-guide__button em {
	margin-left: 8px;
	padding: 2px 8px;
	color: #de6f00;
	background: #fff;
	border-radius: 999px;
	font-size: 11px;
	font-style: normal;
}
.bbs-unanswered-hero {
	margin: 0 0 24px;
	padding: 20px 17px;
	background: #fffaf0;
	border: solid 2px #f2c577;
	border-radius: 12px;
}
.bbs-unanswered-hero__text {
	margin: 0;
	color: #4c463f;
	font-size: 14px;
	line-height: 1.8;
}
.bbs-unanswered-hero__actions {
	margin-top: 17px;
}
.bbs-unanswered-hero__link,
.bbs-unanswered-hero__button,
.bbs-unanswered-empty a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 10px;
	padding: 10px 18px;
	box-sizing: border-box;
	border-radius: 999px;
	font-weight: bold;
	text-decoration: none;
}
.bbs-unanswered-hero__link,
.bbs-unanswered-empty a {
	color: #a36b1f;
	background: #fff;
	border: solid 1px #efc678;
}
.bbs-unanswered-hero__button {
	color: #fff;
	background: #f08c2e;
}
.bbs-unanswered-hero__link:hover,
.bbs-unanswered-hero__button:hover,
.bbs-unanswered-empty a:hover {
	opacity: 0.86;
	text-decoration: none;
}
.topic-list--unanswered {
	margin-top: 14px;
}
.topic-list--unanswered .reply-count {
	color: #de6f00;
	font-weight: bold;
}
.bbs-unanswered-empty {
	margin: 20px 0;
	padding: 22px 16px;
	text-align: center;
	background: #fffaf0;
	border: solid 1px #efc678;
	border-radius: 12px;
}
.bbs-unanswered-empty p {
	margin: 0 0 14px;
	color: #5d5447;
}

}
