@charset "utf-8";

/*--------------------------------------------
■［base］
--------------------------------------------*/

div#bodybox {
	background-color: var(--color-white);
	padding-top: 100px;
	overflow-x: hidden;
	position: relative;
}
div#bodybox:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 100vh;
	height: 100dvh;
	position: fixed;
	background-color: var(--color-white);
	pointer-events: none;
	animation-name: fadeOut;
	animation-delay: 1s;
	animation-duration: 1s;
	z-index: 999;
	animation-fill-mode: both;
	background-image: url(../img/loading.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 36px;
}
@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	} to {
		opacity: 0;
	}
}
main {
	width: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
div.main-container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}
div.main-container.w980px {
	max-width: 980px;
}
div.main-container hr {
	margin: 2em 0;
	height: 1px;
	background-color: var(--color-gray1);
	border: none;
}


/*--------------------------------------------
■［TITLE］
--------------------------------------------*/

div#title {
	background-color: var(--color-purple2);
	color: var(--color-white);
	padding: 2vw;
}
div#title h1 {
	font-family: var(--font-ja);
	font-size: 30px;
	font-weight: 700;
}
div#title p#description {
	display: none;
}


/*--------------------------------------------
■［パンくず］
--------------------------------------------*/
nav#breadcrumbs {
	background-color:  var(--color-lgray1);
}
nav#breadcrumbs ul {
	display: flex;
	align-items: center;
	padding: 0.5rem;
	margin: 0 auto;
	overflow-x: auto;
	white-space: nowrap;
}

nav#breadcrumbs ul > li {
	display: inline-block;
	font-size: 0.86rem;
	margin: 0;
	padding: 0;
	color: var(--color-mute);
	line-height: 1.2;
	vertical-align: top;
}
nav#breadcrumbs ul:not(.flow) > li + li:before {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	content: "navigate_next";
	width: 1em;
	height: 1em;
	line-height: 1;
	margin: 0 0.5em;
	display: inline-block;
	vertical-align: middle;
}
nav#breadcrumbs ul > li a {
	color: var(--color-def);
	text-decoration: none;
}


/*--------------------------------------------
■［本文共通］
--------------------------------------------*/
main section {
	display: block;
	position: relative;
}
main section article {
	padding: 80px 3vw;
	display: block;
	position: relative;
}
main section article h2 {
	font-size: 30px;
	text-align: center;
	margin: 3em 0 2em 0;
	font-weight: 700;
	font-family: var(--font-ja);
	color: var(--color-purple2);
}
main section#section-home article h2 {
	font-size: 38px;
	margin: 0 0 2em 0;
	font-weight: 700;
	font-family: var(--font-en);
	color: var(--color-purple1);
}
main section#section-home article h2 strong {
	font-family: var(--font-ja);
	color: var(--color-purple2);
	font-weight: 500;
	display: block;
	font-size: 1rem;
	line-height: 1;
}
main section article h2:first-child {
	margin-top: 0;
}

.accordion {
	cursor: pointer;
	position: relative;
}
.accordion:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	content: "add_circle";
	width: 1em;
	height: 1em;
	line-height: 1;
	position: absolute;
	right: 0.5em;
	top: 0;
	bottom: 0;
	margin: auto;
}
.accordion.active:after {
	content: "remove_circle_outline";
}


iframe.gmap {
	width: 100%;
	aspect-ratio: 16/9;
}

/*--------------------------------------------
■［タブメニュー］
--------------------------------------------*/

ul.tab-menu {
	display: flex;
	padding: 0 10px;
	line-height: 1;
	z-index: 0;
	position: relative;
}
ul.tab-menu li {
	padding: 0 3px;
	min-width: 10em;
}
ul.tab-menu li a,
ul.tab-menu li button {
	display: block;
	background-color: var(--color-white);
	border-bottom: none;
	color: var(--color-purple1);
	border: 1px solid var(--color-purple1);
	border-bottom: none;
	padding: 1em;
	border-radius: 0.3em 0.3em 0 0;
	font-size: 1.1em;
	letter-spacing: 0.05em;
	text-indent: 0.05em;
	width: 100%;
	height: 100%;
	text-align: center;
	font-weight: bold;
}
body.mypage ul.tab-menu li a,
body.mypage ul.tab-menu li button {
	color: var(--color-orange1);
	border-color: var(--color-orange1);
}
ul.tab-menu li a.active,
ul.tab-menu li button.active {
	background-color: var(--color-purple1);
	color: var(--color-white);
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
}
body.mypage ul.tab-menu li a.active,
body.mypage ul.tab-menu li button.active {
	background-color: var(--color-orange1);
	color: var(--color-white);
}
ul.tab-menu li a:disabled,
ul.tab-menu li button:disabled {
	background-color: var(--color-gray1);
	color: var(--color-white);
	border-color: var(--color-gray1);
}
div.tab-contents {
	border-top: 3px solid var(--color-purple1);
	z-index: 1;
	position: relative;
}
body.mypage div.tab-contents {
	border-color: var(--color-orange1);
}
ul.tab-menu div.tab-contents {
	border-top: 3px solid var(--color-orange1);
}
div.tab-contents > div[data-tabcontents] {
	display: none;
	padding: 2em;
	background-color: var(--color-lpurple1);
}
div.tab-contents > div[data-tabcontents].active {
	display: block;
}



/*--------------------------------------------
■［モーダル］
--------------------------------------------*/

div.modal {
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	display: none;
	background-color: rgba(0, 0, 0, 0.6);
}

div.modal-container {
	max-width: 90%;
	max-height: 90vh;
	width: 980px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 0;
	z-index: 1200;
	cursor: default;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
div#mw-dialog div.modal-container {
	width: 580px;
}
div.modal-container p.close {
	position: absolute;
	right: 0;
	top: -50px;
	line-height: 1;
	z-index: 10;
}
div.modal-container p.close button {
	width: 40px;
	height: 40px;
	text-align: center;
	background-image: url(../img/icon_close_white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px;
}
div.modal-container div.modal-content {
	background-color: var(--color-white);
	padding-bottom: 0;
	position: relative;
	border-radius: 0.3rem;
	overflow: hidden;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
div.modal-container div.modal-content>div.modal-sc {
	overflow-y: auto;
	max-height: calc(90vh - (40px + 2em + 3em));
	padding: 20px;
	padding-bottom: calc(60px + 3.6em);
}
div.modal-container div.modal-content>div.modal-sc:last-child {
	padding-bottom: 20px;
}
div.modal-container div.modal-content > nav.btnarea {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-lpurple1);
	margin: 0;
	padding: 20px;
	display: flex;
	gap: 0 10px;
}
div.modal-container div.modal-content > nav.btnarea p {
	width: 100%;
	max-width: calc(50% - 5px);
}
div.modal-container div.modal-content > nav.btnarea p .btn {
	display: block;
	width: 100%;
}
div.modal-container div.modal-content h3 {
	font-size: 1.2em;
	font-weight: bold;
	margin: 0;
	position: relative;
	color: var(--color-purple1);
	line-height: 1.3;
	text-align: left;
	padding: 2rem 1rem 0 1rem;
}

/*--------------------------------------------
■［ページャー］
--------------------------------------------*/
nav.pager ul {
	margin: 2em 0;
	font-size: 0;
	text-align: center;
	justify-content: center;
	align-items: center;
	display: flex;
}
nav.pager ul li {
	margin: 5px;
}
nav.pager ul li button {
	display: block;
	color: var(--color-orange1);
	min-width: 3em;
	height: 3em;
	margin: 0;
	padding: 0;
	background-color: var(--color-white);
	vertical-align: top;
	font-size: 0.86rem;
	line-height: 3em;
	text-decoration: none;
	border: 1px solid var(--color-gray1);
	border-radius: 0.2em;
}
nav.pager ul li button.current {
	opacity: 1 !important;
	background-color: var(--color-lorange1);
	color: var(--color-def);
	filter: none;
}

nav.pagination-container {
	margin: 2em 0;
}
nav.pagination-container ul.pagination {
	display: flex;
	justify-content: center;
	line-height: 1;
}
nav.pagination-container ul.pagination > li {
	border: 1px solid var(--color-purple1);
}
nav.pagination-container ul.pagination > li:first-child {
	border-radius: 3px 0 0 3px;
	overflow: hidden;
}
nav.pagination-container ul.pagination > li:last-child {
	border-radius: 0 3px 3px 0;
	overflow: hidden;
}
nav.pagination-container ul.pagination > li + li {
	border-left: none;
}
nav.pagination-container ul.pagination > li a {
	display: block;
	padding: 1em;
	text-decoration: none;
	color: var(--color-purple1);
	height: 100%;
}
nav.pagination-container ul.pagination > li.current a {
	color: var(--color-white);
	background-color: var(--color-purple1);
}
nav.pagination-container ul.pagination > li.next a:before,
nav.pagination-container ul.pagination > li.prev a:before,
nav.pagination-container ul.pagination > li.last a:before,
nav.pagination-container ul.pagination > li.first a:before {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
}
nav.pagination-container ul.pagination > li.first a:before {
	content: "first_page";
}
nav.pagination-container ul.pagination > li.last a:before {
	content: "last_page";
}
nav.pagination-container ul.pagination > li.prev a:before {
	content: "chevron_left";
}
nav.pagination-container ul.pagination > li.next a:before {
	content: "chevron_right";
}


/*--------------------------------------------
■［ページナビ］
--------------------------------------------*/
nav#pagenavi {
	position: sticky;
	bottom: 1em;
	left: 0;
	right: 0;
}
nav#pagenavi ul {
	display: flex;
	margin-bottom: 2em;
}
nav#pagenavi li {
	width: 100%;
	text-align: center;
}
nav#pagenavi li button {
	padding: 0.6em;
	background-color: #fff;
	width: auto;
	color: #367ecf;
	border: 2px solid #367ecf;
	height: 100%;
	border-radius: 0.3em;
}
nav#pagenavi li button:disabled {
	color: #d9dbde;
	border-color: #d9dbde;
	opacity: 1;
}
nav#pagenavi li:nth-child(2) button {
	background-color: #367ecf;
	color: #fff;
}
nav#pagenavi li:nth-child(1) {
	text-align: left;
}
nav#pagenavi li:nth-child(3) {
	text-align: right;
}
nav#pagenavi li:nth-child(2) button:disabled {
	background-color: #d9dbde;
}


/*--------------------------------------------
■［CMS］
--------------------------------------------*/
div.post p {
	margin: 1em 0;
}
div.post blockquote {
	margin: 0 0 1em 0;
	border: 3px solid var(--color-lpurple1);
	padding: 1em;
}
div.post ul {
	margin: 1em 0;
}
div.post ul > li {
	margin: 0 0 0.3em 2em;
	position: relative;
	line-height: 1.5;
}
div.post ul > li:before {
	content: "●";
	color: var(--color-def);
	font-size: 0.6em;
	position: absolute;
	left: -2em;
	margin-top: 0.6em;
}
div.post ol {
	margin: 1em 0 1em 2em;
	padding: 0;
	list-style-type: decimal;
}
div.post ol > li {
	margin: 0 0 0.5em 0.5em;
}
div.post dl {
	margin: 0 0 1.5em 0;
}
div.post dl > dt {
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 0.3em;
}
div.post dl > dd {
	margin: 0 0 1em 2em;
}
div.post h1 {
	font-size: 1.6em;
	font-weight: bold;
	margin: 3em 0 1.5em 0;
	text-align: left;
}
div.post h2 {
	font-size: 1.4em;
	font-weight: bold;
	margin: 3em 0 1.5em 0;
	text-align: left;
}
div.post h3 {
	font-size: 1.3em;
	font-weight: bold;
	margin: 2em 0 1em 0;
	text-align: left;
}
div.post h4 {
	font-size: 1.2em;
	font-weight: bold;
	margin: 2em 0 1em 0;
	text-align: left;
}
div.post h5 {
	font-size: 1.1em;
	font-weight: bold;
	margin: 1.5em 0 0.5em 0;
	text-align: left;
	position: relative;
	padding-left: 1.3em;
}
div.post h5:before {
	content: "●";
	color: var(--color-purple1);
	position: absolute;
	left: 0;
}
div.post h6 {
	font-size: 1em;
	font-weight: bold;
	margin: 1em 0 0.5em 0;
	text-align: left;
}


/*--------------------------------------------
■［YouTube］
--------------------------------------------*/
div.youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}
div.youtube iframe {
	width: 100%;
	height: 100%;
}

/*--------------------------------------------
■［レスポンシブ］
--------------------------------------------*/
@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 1023px) {

	/*--------------------------------------------
	■［base］
	--------------------------------------------*/

	main {
		padding: 0;
	}


	/*--------------------------------------------
	■［タイトル］
	--------------------------------------------*/

	div#title {
		padding: 25px 10px;
	}
	div#title h1 {
		font-size: 20px;
	}
	div#title h2 {
		font-size: 4vw;
		padding: 0.6em;
	}

	/*--------------------------------------------
	■［パンくず］
	--------------------------------------------*/
	nav#breadcrumbs ul {
		padding: 2vw;
	}

	/*--------------------------------------------
	■［本文共通］
	--------------------------------------------*/
	main section article {
		padding: 5vw 3vw;
	}
	main section article h2 {
		margin: 2em 0 1em 0;
	}
	main section article h2:first-child {
		margin-top: 0;
	}

	/*--------------------------------------------
	■［タブメニュー］
	--------------------------------------------*/
	ul.tab-menu {
		overflow-x: auto;
	}
	ul.tab-menu li {
		padding: 0 2px;
		min-width: inherit;
	}
	ul.tab-menu li a,
	ul.tab-menu li button {
		padding: 0.6em;
		letter-spacing: 0;
		font-size: 1rem;
		height: 100%;
		white-space: nowrap;
	}
	div.tab-contents > div[data-tabcontents] {
		padding: 3vw;
	}


	/*--------------------------------------------
	■［モーダル］
	--------------------------------------------*/
	div.modal-container div.modal-content>div.modal-sc {
		padding-bottom: calc(5em + (2.2em + 4px));
	}

}

@media screen and (max-width: 1024px) {
	div#bodybox {
		padding-top: 60px;
	}
}
@media screen and (max-width: 767px) {

	/*--------------------------------------------
	■［本文共通］
	--------------------------------------------*/
	main section article {
		padding: 5vw 3vw;
	}
	main section article h2 {
		font-size: 24px;
	}
	main section#section-home article h2 {
		font-size: 28px;
	}
}