@charset "utf-8";

/* ==================================================
   変数
-------------------------------------------------- */
:root {
	--c_main: #3f1267;
	--c_hover: #ab79d8;
	--c_text: #333;
	--c_white: #f9f7fb;
	--c_black: #1c082e;
	--c_gray: #f2eff4;
	--fw_r: 400;
	--fw_m: 500;
	--fw_b: 700;
	--ff_en: "Roboto";
}



/* ==================================================
   共通タグ
-------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	letter-spacing: .06em;
}

html {
	overflow-y: scroll;
	font-size: 62.5%;
}

body {
	background-color: #fff;
	color: var(--c_text);
	font-size: 1.8rem;
	line-height: 2;
	font-family: var(--ff_en), 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body.is__fix {
	position: fixed !important;
	width: 100%;
}

a {
	color: var(--c_text);
	text-decoration: none;
	transition: .2s linear;
}
a:hover {
	color: var(--c_hover);
}

img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	background-repeat: no-repeat;
	background-size: cover;
	font-style: italic;
	vertical-align: middle;
	shape-margin: .75rem;
}
img[src$=".svg"] {
	display: block;
	width: 100%;
	height: auto;
}
a img:hover {
	opacity: .5;
}

p + p {
	margin-top: 1em;
}

ul {
	list-style-type: none;
}

ul:not(.esc) {
	margin-top: 10px;
}

ul:not(.esc) > li {
	position: relative;
	padding-left: 20px;
}
ul:not(.esc) > li::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: calc(1rem + 4px);
	width: 6px;
	height: 6px;
	margin-right: 12px;
	border-radius: 50%;
	background-color: var(--c_text);
	vertical-align: 3px;
}

ol:not(.esc) {
	list-style-type: none;
	margin-top: 10px;
	counter-reset: num;
}

ol:not(.esc) > li {
	padding-left: 40px;
	text-indent: -40px;
}
ol:not(.esc) > li::before {
	margin-right: 9px;
	font-weight: bold;
	font-size: 1.9rem;
	content: counter(num, decimal-leading-zero) ".";
	counter-increment: num;
}

ul:not(.esc) > li:nth-of-type(n + 2),
ol:not(.esc) > li:nth-of-type(n + 2) {
	margin-top: .5em;
}

table {
	table-layout: fixed;
	width: 100%;
}

table tr {
	border-bottom: 1px solid #ccc;
}

table th {
	width: 30%;
	padding: 12px 24px;
	background-color: var(--c_main);
	color: var(--c_white);
	font-weight: normal;
	font-size: 1.7rem;
	text-align: left;
	vertical-align: top;
}
table thead th + th {
	border-left: 1px dotted #ccc;
}
table thead + tbody th {
	background-color: #f6f6f6;
}

table td {
	width: 70%;
	padding: 12px 24px;
	font-size: 1.7rem;
}
table tbody td + td {
	border-left: 1px dotted #ddd;
}

input[type="checkbox"],
input[type="radio"],
label,
button {
	cursor: pointer;
}

body input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
	background-color: #fff !important;
	color: var(--color-text) !important;
}

textarea {
	display: block;
	resize: vertical;
}

input,
textarea,
select {
/*	-webkit-appearance: none;*/
	padding: 2px 5px;
	border: 1px solid #a9a9a9;
	border-radius: 0;
	color: var(--c_text);
	font-size: 1.8rem;
	font-family: var(--ff_en), 'Noto Sans JP', sans-serif;
	line-height: 2;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

fieldset.radioArea {
	display: flex;
	flex-wrap: wrap;
	gap: .3em 2em;
	border: none;
}

.radioArea label {
	display: flex;
	align-items: center;
	gap: 0 .5em;
	position: relative;
	cursor: pointer;
}
.radioArea label::before,
.radioArea label::after {
	border-radius: 50%;
	content: '';
}
.radioArea label::before {
	width: 18px;
	height: 18px;
	border: 2px solid #dee5eb;
	box-sizing: border-box;
}
.radioArea label::after {
	position: absolute;
	top: 50%;
	left: 9px;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	background-color: #dee5eb;
}

.radioArea label:has(:checked)::after {
	background-color: var(--c_main);
	animation: anim-radio .3s linear;
}

@keyframes anim-radio {
	0% {
		box-shadow: 0 0 0 1px transparent;
	}
	50% {
		box-shadow: 0 0 0 10px #2589d033;
	}
	100% {
		box-shadow: 0 0 0 10px transparent;
	}
}

.radioArea input {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	border-width: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

input[type=checkbox] {
	display: none;
}

input[type=checkbox] + label {
	position: relative;
	padding-left: 24px;
	transition: .15s linear;
}
input[type=checkbox] + label:hover::before,
input[type=checkbox]:checked + label:hover::before {
	border-color: #68b7ed;
}
input[type=checkbox] + label::before,
input[type=checkbox] + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: .15s linear;
}
input[type=checkbox] + label::before {
	left: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #d1d1d1;
}
input[type=checkbox] + label::after {
	left: 6px;
	width: 8px;
	height: 13px;
	margin-top: -8px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(45deg);
	opacity: 0;
}
input[type=checkbox]:checked + label {
	color: #0171bd;
}
input[type=checkbox]:checked + label::before {
	border-color: #0171bd;
	background-color: #0171bd;
}
input[type=checkbox]:checked + label::after {
	opacity: 1;
}

@media print, screen and (min-width: 768px) {
	a[href*="tel:"] {
		color: var(--color-text);
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

@media only screen and (max-width: 767px) {
	* {
		word-break: normal !important;
		word-wrap: break-word;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	table:not(.sp-table) tr {
		border-bottom: 0;
	}

	table:not(.sp-table) th {
		display: block;
		width: 100%;
	}

	table:not(.sp-table) td {
		display: block;
		width: 100%;
		padding-bottom: 1em;
	}

	input[type="submit"] {
		-webkit-appearance: none;
		border-radius: 0;
	}
	input:-webkit-autofill {
		-webkit-box-shadow: 0 0 0 1000px #fff inset;
	}
}



/* ==================================================
   共通クラス
-------------------------------------------------- */
.container {
	display: block;
	width: 1140px;
	margin: 0 auto;
	padding: 0 40px;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.bold {
	font-weight: var(--fw_b);
}

.br::before {
	white-space: pre;
	content: "\A";
}

.btn {
	line-height: 0;
}

.btn a {
	display: inline-block;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 32px 80px;
	background-color: var(--c_black);
	color: var(--c_white) !important;
}
.btn a::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: var(--c_hover);
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
	z-index: -1;
}
.btn a::after {
	content: "";
	display: block;
	position: absolute;
	right: 12px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-top: 1.5px solid var(--c_white);
	border-right: 1.5px solid var(--c_white);
	transform: translateY(-50%) rotate(45deg);
}
.btn a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

.embed-youtube {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}

/* .hoverTrans {
	transition: .2s linear;
} */

.linkArea {
	cursor: pointer;
}
.linkArea:active {
	opacity: .5;
}

.mt1 {
	margin-top: 1em;
}

.tar {
	text-align: right;
}
.tac {
	text-align: center;
}

.notes {
	margin-top: 1em;
	padding-left: 1.25em;
	text-indent: -1.25em;
}
.notes::before {
	margin-right: .25em;
	color: #df5d2e;
	content: "※";
}
.notes + .notes {
	margin-top: 0;
}

.sp-swipe {
	display: none;
}

.sp-swipeArea {
	margin-top: 1em;
}

.ofi {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

.move {
	opacity: 0;
	transition: .5s linear;
}
.move.to--top {
	transform: translateY(40px);
}
.move.to--bottom {
	transform: translateY(-40px);
}
.move.to--right {
	transform: translateX(-40px);
}
.move.to--left {
	transform: translateX(40px);
}
.move.is__visible {
	opacity: 1;
	transform: translate(0);
}

.external::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-left: .3em;
	background-color: #000;
	-webkit-mask: url("../images/icon-external_link.svg") no-repeat center center / contain;
	mask-image: url("../images/icon-external_link.svg");
	mask-repeat: no-repeat;
	mask-position: center center;
	mask-size: contain;
	vertical-align: middle;
}

.pdf::after {
	content: "";
	display: inline-block;
	width: .75em;
	height: .75em;
	/* margin-left: .3em; */
	background-color: #f14c39;
	-webkit-mask: url("../images/icon-pdf.svg") no-repeat center center / contain;
	mask-image: url("../images/icon-pdf.svg");
	mask-repeat: no-repeat;
	mask-position: center center;
	mask-size: contain;
	vertical-align: middle;
}

@media print, screen and (min-width: 1161px) {
	.linkArea:hover {
		opacity: .5;
	}
}

@media only screen and (max-width: 1160px) {
	.container {
		width: 100%;
		/* padding: 0 15px; */
	}
}

@media only screen and (max-width: 767px) {
	.container {
		padding: 0 4vw;
	}

	.flex {
		flex-direction: column;
	}

	.br-sp::before {
		white-space: pre;
		content: "\A";
	}

	.sp-swipe {
		display: block;
	}
	.sp-swipe::before {
		display: inline-block;
		width: 45px;
		height: 45px;
		margin-right: 7px;
		background: url("../images/sp-swipe.png") center center no-repeat;
		background-size: contain;
		vertical-align: bottom;
		content: "";
	}

	.sp-swipeArea {
		overflow-x: scroll;
	}
	.sp-swipeArea::-webkit-scrollbar {
		height: 3px;
	}
	.sp-swipeArea::-webkit-scrollbar-track {
		background-color: #eee;
		border-radius: 3px;
	}
	.sp-swipeArea::-webkit-scrollbar-thumb {
		background-color: #666;
		border-radius: 3px;
	}

	.sp-swipeArea table th,
	.sp-swipeArea table td {
		display: table-cell;
	}
}



/* ==================================================
   共通パーツ
-------------------------------------------------- */
/* ----- ヘッダー ----- */
.gHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
	height: 80px;
	padding-left: 40px;
	background-color: var(--c_main);
}

.gLogo {
	width: 292px;
}

.gLogo img {
	transition: .2s linear;
}

@media only screen and (max-width: 640px) {
	.gHeader {
		height: 16vw;
		padding-left: 4vw;
	}

	.gLogo {
		width: 48vw;
	}
}

/* ----- グローバルナビ ----- */
.gNav {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

.gNav > button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 80px;
	padding: 0;
	border: 0;
	background-color: transparent;
	color: #ffd589;
	font-weight: var(--fw_b);
	font-size: 1rem;
	transition: .2s linear;
	aspect-ratio: 1 / 1;
}
.gNav > button:hover {
	background-color: var(--c_hover);
}

.gNavMenu .gNavMenu_line {
	display: block;
	position: relative;
	width: 24px;
	height: 2px;
	margin-bottom: 18px;
	background-color: #ffd589;
}
.gNavMenu .gNavMenu_line::before,
.gNavMenu .gNavMenu_line::after {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #ffd589;
	transition: .2s linear;
	content: "";
}
.is__active.gNavMenu .gNavMenu_line {
	background-color: transparent;
}
.gNavMenu .gNavMenu_line::before {
	top: -8px;
}
.gNavMenu .gNavMenu_line::after {
	top: 8px;
}
.is__active.gNavMenu .gNavMenu_line::before,
.is__active.gNavMenu .gNavMenu_line::after {
	top: 0;
}
.is__active.gNavMenu .gNavMenu_line::before {
	transform: rotate(45deg);
}
.is__active.gNavMenu .gNavMenu_line::after {
	transform: rotate(-45deg);
}

.gNavMenu_text {
	margin-bottom: 18px;
}

.gNavMenu_text a {
	color: #ffd589;
}

.gNav_contact {
	background: url("../images/gnav_contact.webp") center 22px / 26px auto no-repeat;
}

.gNavMenu_list {
	visibility: hidden;
	position: fixed;
	left: 0;
	top: 80px;
	z-index: 100;
	width: 100%;
	height: calc(100% - 80px);
	background-color: rgba(0, 0, 0, .3);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}
.gNavMenu.is__active + .gNavMenu_list {
	visibility: visible;
}

.gNavMenu_list > ul {
	position: fixed;
	right: -30vw;
	width: 30vw;
	height: 100%;
	margin-top: 0;
	padding: 54px 0;
	background-color: var(--c_main);
	transition: .2s linear;
}
.gNavMenu.is__active + .gNavMenu_list > ul {
	right: 0;
}

.gNavMenu_list > ul > li {
	width: 100%;
	height: auto;
	padding-left: 0;
	color: #ffd589;
	font-size: 2.7rem;
	text-align: center;
}
.gNavMenu_list > ul li::before {
	content: none;
}
.gNavMenu_list > ul > li:nth-of-type(n + 2) {
	/* margin-top: 1em; */
	margin-top: 0;
}

.gNavMenu_list > ul > li > a {
	display: block;
	padding: .5em 0;
	color: #ffd589;
}
.gNavMenu_list > ul > li > a:hover {
	background-color: var(--c_hover);
}

@media only screen and (max-width: 640px) {
	.gNav > button {
		height: 16vw;
	}

	.gNavMenu .gNavMenu_line {
		margin-bottom: 4.5vw;
	}

	.gNavMenu_text {
		margin-bottom: 2vw;
	}

	.gNav_contact {
		background-position-y: calc(50% - 6px);
	}

	.gNavMenu_list {
		top: 16vw;
		height: calc(100% - 16vw);
	}

	.gNavMenu_list > ul {
		right: -100%;
		width: 100%;
	}
}


/* ----- フッター ----- */
.gFooter {
	justify-content: space-between;
	align-items:flex-start;
	padding: 32px 160px;
	background-color: var(--c_black);
}

.gFooter a,
.copy {
	color: var(--c_white);
}
.gFooter a:hover {
	color: var(--c_hover);
}

/* PAGE TOP */
.pageTop {
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 1000;
	width: 54px;
	height: 54px;
}

.pageTop a {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: var(--c_black) url("../images/pagetop.png") center center no-repeat;
	background-size: 24px 14px;
	text-indent: 100%;
	white-space: nowrap;
}
.pageTop a:active {
	background-color: #6bc366;
}
@media print, screen and (min-width: 1025px) {
	.pageTop a:hover {
		background-color: #6bc366;
	}
}

@media only screen and (max-width: 1160px) {
	.gFooter {
		padding: 24px 40px;
	}
}

@media only screen and (max-width: 767px) {
	.gFooter {
		padding: 24px 4vw;
	}

	.copy {
		margin-top: 1em;
	}
}



/* ==================================================
   イベント
-------------------------------------------------- */
.event_article {
	/* position: relative; */
	transition: .2s linear;
}

.event_article figure {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: -1;
	background-color: var(--c_black);
	aspect-ratio: 101 / 67;
}

.event_article_sentence {
	background-color: #fff;
}

.event_article_date {
	display: inline-block;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--c_text);
	line-height: 1;
}

.event_article_title {
	font-weight: var(--fw_r);
	line-height: 1.8;
}

.event_article_title a {
	color: var(--c_text) !important;
}

.event_article_postDate {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 1.6rem;
	line-height: 1;
}
.event_article_postDate::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	margin-right: 6px;
	margin-bottom: 2px;
	background: url("../images/event_article_postdate.webp") center center / contain no-repeat;
}

@media only screen and (max-width: 767px) {
	.event_article_title {
		line-height: 1.7;
	}
}

/* 次のイベント一覧 */
.event_list .event_article {
	width: 656px;
	margin: auto;
}

.event_list .event_article_sentence {
	position: relative;
	width: calc(100% - 80px);
	margin-top: -80px;
	padding: 32px 40px 30px;
}

.event_list .event_article_title {
	margin-top: 16px;
}

.event_list .event_article_postDate {
	margin-top: 14px;
}

@media only screen and (max-width: 767px) {
	.event_list .event_article {
		width: 100%;
	}

	.event_list .event_article_sentence {
		width: calc(100% - 40px);
		margin-top: -40px;
		padding: 16px 24px 14px;
	}

	.event_list .event_article_title {
		margin-top: 16px;
	}

	.event_list .event_article_postDate {
		margin-top: 12px;
	}
}


/* 開催報告一覧 */
.report_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 32px;
	grid-template-rows: auto;
	width: 1680px;
}

.report_list .event_article {
	overflow: hidden;
}

.report_list .event_article_sentence {
	width: calc(100% - 40px);
	height: 100%;
	margin-top: -40px;
	padding: 24px 32px 22px;
}

.report_list .event_article_title {
	margin-top: 8px;
}

.report_list .event_article_postDate {
	margin-top: 8px;
}

@media only screen and (max-width: 1760px) {
	.report_list {
		width: 100%;
	}
}

@media only screen and (max-width: 1560px) {
	.report_list {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 40px;
		grid-template-rows: auto;
		row-gap: 40px;
	}
}

@media only screen and (max-width: 767px) {
	.report_list {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 40px;
	}

	.report_list .event_article_sentence {
		padding: 16px 24px 14px;
	}
}



/* ==================================================
   印刷
-------------------------------------------------- */
@page {
	margin: 10mm;
	size: 210mm 297mm; /* A4縦サイズの場合 */
}

@media print {
	* {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		width: 1190px; /* 印刷時の全ページ幅を統一（px数値はお好みで） */
		zoom: .8; /* なるべく多くのブラウザで切れないようにするため */
	}

	/* ----- 改ページをいれる場合 ----- */
	/* 各セクションで改ページが行われるようにしています */
	/* section {
		page-break-before: always;
	} */

	/* 特定のセクション（section.new-none）では改ページを入れない場合の指定 */
	section.new-none:not(:root) {
		page-break-before: avoid;
	}

	/* 特定の場所（.new-page）で改ページを入れたいときの指定 */
	.new-page {
		page-break-before: always;
	}
}
