@charset "UTF-8";
@import url(../css/component/eventInfoFormTemplate/reset.css);
@import url(../css/component/eventInfoFormTemplate/common.css);
@import url(../css/component/eventInfoFormTemplate/utility.css);
@import url(../css/component/eventInfoFormTemplate/event_form.css);
@import url(../css/component/eventInfoFormTemplate/select.css);
@import url(../css/component/eventInfoFormTemplate/postGallery.css);
:root {
	--color-pink01: #ec7bb3;
	--color-pink02: #fff0f0;
	--color-pink03: #ffdbee;
	--color-pink04: #e96290;
	--color-blue01: #00a9bd;
	--color-blue02: #dcf5ff;
	--color-blue03: #43609f;
	--color-blue04: #1bc1e8;
	--color-blue05: #d8fffe;
	--color-green01: #d8fffe;
}

/* ========================================================================
utility（utility.css上書き分もあり）
======================================================================== */
.textGreen {
	color: var(--color-blue01);
}

.secTtl {
	background: var(--color-blue03);
}
.secTtl span {
	position: relative;
}
.secTtl span::before,
.secTtl span::after {
	content: "";
	position: absolute;
	top: calc(50% - 23px);
	height: 45px;
	border-left: #ffffff solid 4px;
}
.secTtl span::before {
	left: 0;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
	margin-left: -1em;
}
.secTtl span::after {
	right: 0;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	margin-right: -1em;
}

.btnPrimary {
	background: var(--color-pink04);
	-webkit-box-shadow: 0 0.3em 0 rgba(0, 0, 0, 0.5),
		0 0.3em 0 var(--color-blue01);
	box-shadow: 0 0.3em 0 rgba(0, 0, 0, 0.5), 0 0.3em 0 var(--color-pink04);
	font-size: 1.9em;
}

.btnPrimary:hover {
	-webkit-box-shadow: 0 0.1em 0 rgba(0, 0, 0, 0.5),
		0 0.1em 0 var(--color-blue01);
	box-shadow: 0 0.1em 0 rgba(0, 0, 0, 0.5), 0 0.1em 0 var(--color-blue01);
}

.btnSecondary {
	background: var(--color-blue04);
	border: 1px solid var(--color-blue04);
}

.btnSecondary:hover {
	color: var(--color-blue04);
}

.btnSecondary:hover::before {
	border-left: 0.5em solid var(--color-blue04);
}

@media screen and (max-width: 767px) {
	.secTtl {
		padding: 0.8em 0.5em;
	}
	.btnPrimary {
		text-align: center;
		font-size: 1.8em;
		padding-block: 0.6em;
	}
}
/* ========================================================================
mv
======================================================================== */
.mv {
	overflow: hidden;
}

.mv_text {
	background-color: #dbffff;
	text-align: center;
	position: relative;
	height: 500px;
}

@media screen and (max-width: 767px) {
	.mv_text {
		height: auto;
	}
}
.mv_text h1 {
	width: 1920px;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
	.mv_text h1 {
		width: auto;
		position: static;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
.mv_text img {
	width: 100%;
}

.mv_note {
	font-size: 1.8em;
	text-align: center;
	background: var(--color-blue01);
	color: #fff;
	font-weight: bold;
	padding: 0.8em;
	line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.mv_note {
		font-size: 1.3em;
	}
}
/* ========================================================================
topMessage
======================================================================== */
.topMessage {
	text-align: center;
	padding: 60px 10px;
	background: var(--color-pink03);
}

.topMessage_text {
	line-height: 2;
	font-weight: bold;
	color: var(--color-blue03);
	font-size: 1.9em;
	margin-top: 0;
}

.topMessage_note {
	border: 4px solid var(--color-blue03);
	display: inline-block;
	border-radius: 10px;
	margin: 1em auto 0;
	background-color: #fff;
	color: var(--color-blue03);
	font-size: 1.9em;
	font-weight: bold;
	width: 575px;
	padding-block: 0.2em;
	max-width: 100%;
}

@media screen and (max-width: 767px) {
	.topMessage {
		padding: 40px 0;
	}
	.topMessage_text,
	.topMessage_note {
		font-size: 1.4em;
	}
	.topMessage_note {
		width: 70%;
	}
}

/* ========================================================================
postGallery（上書き分）
======================================================================== */
.postGallery {
	background: repeating-linear-gradient(
		120deg,
		#fff,
		#fff 1em,
		var(--color-blue05) 1em,
		var(--color-blue05) 3em
	);
}
/* 投稿カードのテーマ表示 */
.postGalleryCard_theme {
	margin-top: 0.5em;
	font-size: 0.9em;
	font-weight: bold;
}

@media (max-width: 768px) {
	.postGalleryCard_theme {
		font-size: 1em;
	}
}
/* ========================================================================
postSend
======================================================================== */
.postSend {
	padding: 60px 10px;
}

@media (max-width: 767px) {
	.postSend {
		padding: 40px 0px;
	}
}
.postSend .inner {
	max-width: 600px;
	margin: 0 auto;
}

.postSend_recruitment {
	text-align: center;
}

.postSend_recruitment p {
	display: inline-block;
	position: relative;
	margin-bottom: 0.5em;
	font-size: 1.3em;
	font-weight: bold;
	color: var(--color-pink04);
}

.postSend_recruitment p:after,
.postSend_recruitment p:before {
	content: "";
	position: absolute;
	top: calc(50% - 15px);
	height: 30px;
	border-left: var(--color-pink04) solid 4px;
}

.postSend_recruitment p:before {
	left: 0;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
	margin-left: -1em;
}

.postSend_recruitment p:after {
	right: 0;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	margin-right: -1em;
}

.postSend_note {
	margin: 0.5em auto 0;
	padding: 0;
}

.postSend_noteTtl {
	text-align: center;
	margin-top: 3em;
}

.postSend_note li {
	font-size: 1em;
	text-indent: -1em;
	padding-left: 1em;
}

.postSend_note li + li {
	margin-top: 0.2em;
}

.postSend_note li {
	font-size: 1em;
	text-indent: -1em;
	padding-left: 1em;
}

@media (max-width: 767px) {
	.postSend_note li {
		text-indent: 0;
		padding-left: 0;
	}

	.postSend_recruitment p:after,
	.postSend_recruitment p:before {
		top: calc(50% - 20px);
		height: 45px;
	}

	.postSend_recruitment p:before {
		margin-left: -1.5em;
	}

	.postSend_recruitment p:after {
		margin-right: -1.5em;
	}
}
/* ========================================================================
sendInquiry
======================================================================== */
.sendInquiry {
	padding: 60px 10px;
	background: var(--color-green01);
}

@media (max-width: 767px) {
	.sendInquiry {
		padding: 40px 10px;
	}
}
.sendInquiry img {
	width: 18em;
	margin: 3.5em auto 0em;
}

@media (max-width: 767px) {
	.sendInquiry img {
		width: 9em;
		margin: 2em auto 0;
	}
}
.sendInquiry_text {
	text-align: center;
	line-height: 2;
	font-weight: bold;
	font-size: 1.4em;
}

@media (max-width: 767px) {
	.sendInquiry_text {
		font-size: 1.3em;
		line-height: 1.8;
	}
}
.sendInquiry_btn {
	margin-top: 2em;
	text-align: center;
}

@media (max-width: 767px) {
	.sendInquiry_btn {
		margin-top: 1em;
	}
}

.sendInquiry_btn .btnSecondary {
	max-width: 23em;
	margin: 0 auto;
}

/* ========================================================================
rPost select.css上書き分
======================================================================== */
.rPostBtn .btnSecondary {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* ========================================================================
tertiary
======================================================================== */

.tertiary {
	padding: 60px 10px;
	background: var(--color-pink03);
}
.tertiary img {
	width: 38.5em;
	margin: 3.5em auto 0em;
}
.tertiary_text {
	text-align: center;
	line-height: 2;
}
.tertiary_text span {
	font-weight: bold;
	font-size: 1.4em;
}

@media (max-width: 767px) {
	.tertiary {
		padding: 40px 0;
	}
	.tertiary img {
		margin: 2em auto 0;
	}

	.tertiary_text {
		line-height: 1.8;
	}
	.tertiary_text span {
		font-size: 1.3em;
	}
}
/* ========================================================================
テーマフィルター
======================================================================== */
.theme-filter {
	margin-bottom: 30px;
}

.filter-form {
	margin-top: 1em;
	padding: 1em 2em;
	border-radius: 8px;
}

.filter-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.filter-label {
	font-size: 1.5em;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
	line-height: 1.4;
}

.filter-label ruby {
	ruby-align: center;
}

.filter-label rt {
	font-size: 0.5em;
	color: #333;
}
.select_wrapper {
	position: relative;
}

.select_wrapper::after {
	content: "";
	position: absolute;
	top: 22px;
	right: 12px;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-top: 8px solid #00aefc;
	border-bottom: 0;
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: none; /* 追加：矢印部分のマウスイベントを無効化 */
}

/* @media (any-hover: hover) {
	.select_wrapper:hover::after,
	.theme-select:hover + .select_wrapper::after {
		border-top-color: #ffff97;
	}
	.theme-select:hover ~ .select_wrapper::after {
		border-top-color: #ffff97;
	}
} */



select {
	-webkit-appearance: none;
	appearance: none;
}
.theme-select {
	padding: 12px 16px;
	border: 4px solid #dbf0ff;
	border-radius: 0.2em;
	font-size: 16px;
	background: white;
	min-width: 280px;
	color: #00aefc;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: bold;
	text-align: center;
}
/* @media (any-hover: hover) {
	.theme-select:hover {
		border-color: #00aefc;
		color: #ffff97;
		background-color: #00aefc;
	}

	.theme-select:focus {
		border-color: #00aefc;
		color: #ffff97;
		background-color: #00aefc;
	}
} */


@media (any-hover: none) {
	.theme-select:active {
		border-color: #00aefc;
		color: #ffff97;
		background-color: #00aefc;
	}
}

.theme-select:focus-visible {
	outline: none;
}

@media (max-width: 768px) {
	.filter-form {
		margin-top: 0;
		padding: 15px;
	}

	.filter-content {
		flex-direction: column;
		gap: 10px;
	}

	.filter-label {
		font-size: 18px;
		text-align: center;
	}

	.filter-label rt {
		letter-spacing: 0.3em;
	}

	.theme-select {
		width: 100%;
		font-size: 13px;
		padding-block: 8px;
	}
	.select_wrapper::after {
		top: 18px;
		right: 10px;
		border-right: 6px solid transparent;
		border-left: 6px solid transparent;
		border-top: 6px solid #00aefc;
	}
}
