/*# sourceMappingURL=style.css.map */

:root {
	--primary-font: "Founders Grotesk", "Noto Sans JP", sans-serif;
	--quote-font: "Merriweather", "Noto Sans JP", serif;
	--main-line-height: 1.25;
	--secondary-line-heigh: 1.35;
	--secondary-line-heigh-compact: 1.1;
}

:root {
	--white-pure: #fff;
	--black-pure: #000;
	--red-brand: #ff0037;
	--gray-light: #f5f5f5;
	--gray-deep: #494952;
	--blue-brand: #0092ff;
}

:root {
	--content-size: 5vw;
	--side-spacing: 1.5rem;
	--standard-container-width: 100%;
	--page-padding: .75rem;
}

@media (min-width: 768px) {
	:root {
		--content-size: 2.08vw;
		--standard-container-width: 720px;
		--side-spacing: 2.5rem;
		--page-padding: 0;
	}
}

@media (min-width: 1024px) {
	:root {
		--content-size: 18px;
		--standard-container-width: 960px;
	}
}

@media (min-width: 1440px) {
	:root {
		--standard-container-width: 1240px;
	}
}

html {
	height: 100%;
	font-size: 15px;
	overflow-x: hidden;
	line-height: var(--main-line-height);
}

@media (min-width: 768px) {
	html {
		font-size: var(--content-size);
	}
}

body {
	min-height: 100vh;
	position: relative;
	font-family: var(--primary-font);
	max-width: 100vw;
	height: 100%;
}

.container {
	width: 100%;
	padding: 0 .75rem;
}

@media (min-width: 768px) {
	.container {
		padding: 0 4.75rem;
	}
}

@media (min-width: 1440px) {
	.container {
		max-width: var(--standard-container-width);
		padding: 0;
		margin: auto;
	}
}

.container-narrow {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

a {
	color: var(--red-brand);
	cursor: pointer;
}

p {
	font-size: 1.25rem;
	line-height: var(--main-line-height);
	padding-bottom: .5rem;
	margin-bottom: .5rem;
	font-weight: 400;
}

@media (min-width: 768px) {
	p {
		font-weight: 300;
	}
}

h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	h1 {
		font-size: 2.04rem;
	}
}

h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	h2 {
		font-size: 2.04rem;
	}
}

h3 {
	font-size: 1.5rem;
}

@media (min-width: 768px) {
	h3 {
		font-size: 1.8rem;
	}
}

h4, h5 {
	font-size: 1rem;
}

@media (min-width: 768px) {
	h4, h5 {
		font-size: 1.45rem;
	}
}

strong {
	line-height: .8em;
}

.brand-button, .dark-brand-button {
	background-color: var(--red-brand);
	border: 2px solid var(--red-brand);
	color: var(--white-pure);
	text-decoration: none;
	padding: .75rem;
	font-size: 1rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	width: -moz-max-content;
	width: max-content;
	min-width: 8rem;
	position: relative;
	transition: color .6s, border-color .6s;
	cursor: pointer;
}

.brand-button:before, .dark-brand-button:before {
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: var(--black-pure);
	width: 0;
	transition: width .6s;
}

.brand-button:after, .dark-brand-button:after {
	content: " ";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: var(--black-pure);
	width: 0;
	transition: width .6s;
}

.brand-button:hover, .brand-button:active, .dark-brand-button:hover, .dark-brand-button:active {
	color: var(--white-pure);
	border-color: var(--white-pure);
}

.brand-button:hover:before, .brand-button:active:before, .dark-brand-button:hover:before, .dark-brand-button:active:before {
	width: 100%;
}

.brand-button:hover:after, .brand-button:active:after, .dark-brand-button:hover:after, .dark-brand-button:active:after {
	width: 100%;
}

.brand-button span, .dark-brand-button span {
	position: relative;
	z-index: 1;
}

.brand-button svg, .dark-brand-button svg {
	fill: var(--white-pure);
	margin-right: 1rem;
	width: 1rem;
	height: 1rem;
	position: relative;
	z-index: 1;
	transition: fill .6s;
}

.dark-brand-button {
	background-color: var(--black-pure);
	border: 2px solid var(--black-pure);
	color: var(--white-pure);
}

.dark-brand-button:before {
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: var(--red-brand);
	width: 0;
	transition: width .6s;
}

.dark-brand-button:after {
	content: " ";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: var(--red-brand);
	width: 0;
	transition: width .6s;
}

.dark-brand-button:hover, .dark-brand-button:active {
	color: var(--white-pure);
	border-color: var(--red-brand);
}

.dark-brand-button:hover:before, .dark-brand-button:active:before {
	width: 100%;
}

.dark-brand-button:hover:after, .dark-brand-button:active:after {
	width: 100%;
}

.regular-button {
	background-color: var(--white-pure);
	color: var(--black-pure);
	border: 2px solid var(--black-pure);
	text-decoration: none;
	padding: .75rem;
	font-size: 1rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	width: -moz-max-content;
	width: max-content;
	min-width: 8rem;
	position: relative;
	transition: color .6s, border-color .6s;
	cursor: pointer;
}

.regular-button:before {
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: var(--black-pure);
	width: 0;
	transition: width .6s;
}

.regular-button:after {
	content: " ";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: var(--black-pure);
	width: 0;
	transition: width .6s;
}

.regular-button:hover, .regular-button:active {
	color: var(--white-pure);
	border-color: var(--white-pure);
}

.regular-button:hover:before, .regular-button:active:before {
	width: 100%;
}

.regular-button:hover:after, .regular-button:active:after {
	width: 100%;
}

.regular-button:hover svg, .regular-button:active svg {
	fill: var(--white-pure);
}

.regular-button svg, .regular-button img {
	margin-right: 1rem;
	width: 1rem;
	height: 1rem;
	position: relative;
	z-index: 1;
	transition: fill .6s;
}

.regular-button span {
	position: relative;
	z-index: 1;
}

.past-event-button {
	background-color: #b9b9b9;
	color: var(--white-pure);
	fill: var(--white-pure);
	border-color: #b9b9b9;
}

.past-event-button:before {
	display: none;
}

.past-event-button:after {
	display: none;
}

.past-event-button:hover {
	background-color: #b9b9b9;
	color: var(--white-pure);
	fill: var(--white-pure);
	border-color: #b9b9b9;
}

.transparent-white-brand-button {
	text-decoration: none;
	display: inline-block;
	background-color: transparent;
	color: var(--white-pure);
	border: 2px solid var(--white-pure);
	border-radius: .5rem;
	padding: .75rem;
	transition: color .6s, border-color .6s, background-color .6s;
}

.transparent-white-brand-button.brand-button--xl {
	padding: .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
}

@media (min-width: 1024px) {
	.transparent-white-brand-button.brand-button--xl {
		padding: .75rem 1.45rem;
		font-size: 1.6rem;
		font-weight: 400;
		line-height: 1;
	}
}

.transparent-white-brand-button span {
	vertical-align: text-top;
}

.transparent-white-brand-button:hover, .transparent-white-brand-button:focus {
	border-color: var(--red-brand);
	background-color: var(--red-brand);
	color: var(--white-pure);
}

.tns-item {
	-webkit-transform: translate3d(0, 0, 0);
}

.grecaptcha-badge {
	display: none;
}

.post-password-form {
	max-width: 40rem;
	text-align: center;
	margin: AUTO;
}

.post-password-form_group {
	display: flex;
	justify-content: center;
}

.post-password-form_group input[type=password] {
	font-size: 1.1rem;
	padding: .25rem;
}

.post-password-form_group .brand-button {
	font-size: 1rem;
	min-width: auto;
	padding: .5rem 1rem;
}

.wp-block-image.image-hero-new.size-full img {
	width: 100%;
}

.faq-accordion {
	list-style: none;
	display: flex;
	flex-flow: column;
}

.faq-accordion__step {
	border-top: 1px solid #dfe0e1;
	padding: .69rem 0;
}

@media (min-width: 1024px) {
	.faq-accordion__step {
		padding: .65rem 0;
	}
}

.faq-accordion__step:last-child {
	border-bottom: 1px solid #dfe0e1;
}

.faq-accordion__step_label {
	position: relative;
	padding: .5rem 0;
	display: flex;
}

@media (min-width: 1024px) {
	.faq-accordion__step_label {
		align-items: center;
	}
}

.faq-accordion__step_label .step-title {
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding-right: .75rem;
}

@media (min-width: 1024px) {
	.faq-accordion__step_label .step-title {
		padding-right: 3rem;
	}
}

.faq-accordion__step_label .step-title__main {
	font-size: 1.27rem;
	font-weight: 800;
	line-height: var(--main-line-height);
}

@media (min-width: 1024px) {
	.faq-accordion__step_label .step-title__main {
		font-weight: 800;
		font-size: 1.47rem;
		line-height: var(--main-line-height);
	}
}

.faq-accordion__step_label .step-indicator {
	margin-left: auto;
	margin-right: -.25rem;
	font-size: 1.5rem;
	color: var(--black-pure);
	display: flex;
	align-items: center;
}

@media (min-width: 1024px) {
	.faq-accordion__step_label .step-indicator {
		font-size: 1.75rem;
	}
}

.faq-accordion__step_label .step-indicator svg {
	width: 1.8rem;
	height: 1.8rem;
}

.faq-accordion__step_label .step-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.faq-accordion__step_content {
	transition: max-height .6s, opacity .6s;
	max-height: 0px;
	overflow: hidden;
	opacity: 0;
}

.faq-accordion__step_content-container {
	max-width: 90%;
}

@media (min-width: 1024px) {
	.faq-accordion__step_content-container {
		font-size: 1.22rem;
		line-height: var(--main-line-height);
	}
}

.faq-accordion__step_content-container p {
	margin-top: 0rem;
	margin-bottom: .75rem;
}

@media (min-width: 1024px) {
	.faq-accordion__step_content-container p {
		margin-bottom: .75rem;
	}
}

.faq-accordion__step_content-container ul {
	padding-left: 1.2rem;
	margin-bottom: .3rem;
}

.faq-accordion__step.active-step .faq-accordion__step_content {
	max-height: 10000px;
	opacity: 1;
}

@media (min-width: 1024px) {
	.faq-accordion__step.active-step .faq-accordion__step_content {
		max-height: 100vh;
	}
}

.course-form {
	background-color: #f4f4f4;
	padding: 1rem 1.2rem;
	height: -moz-max-content;
	height: max-content;
	transition: transform .6s;
	max-width: 100%;
}

@media (min-width: 768px) {
	.course-form {
		max-width: 20.3rem;
	}
}

@media (min-width: 1024px) {
	.course-form {
		padding: 1rem 1.8rem;
	}
}

.course-form.event-form .course-form__title {
	text-align: left;
}

.course-form.rental-form {
	margin-top: -82%;
}

.course-form.rental-form .course-form__pre-title {
	margin: .5rem 0 0;
}

.course-form.rental-form .course-form__title {
	text-align: left;
	line-height: var(--main-line-height);
	font-size: 2rem;
	margin-bottom: 0;
}

.course-form__pre-title {
	margin-top: .7rem;
	font-size: 1.16rem;
	font-weight: 700;
}

.course-form__title {
	color: var(--black-pure);
	text-align: center;
	font-size: 1.95rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

@media (min-width: 1024px) {
	.course-form__title {
		font-size: 1.75rem;
	}
}

.course-form__image {
	width: 100%;
	height: auto;
	opacity: 1;
	max-height: 1200px;
	margin-bottom: .75rem;
	transition: opacity .7s, max-height .6s, transform .6s;
}

@media (min-width: 1024px) {
	.course-form__image {
		margin-bottom: 1rem;
	}
}

.course-form__form {
	display: flex;
	flex-flow: column;
	margin-bottom: .85rem;
}

.course-form__form_input {
	font-size: 1.1rem;
	padding: .8rem;
	margin-bottom: .5rem;
	border: 1px solid #dfe0e1;
	border-radius: 0;
	max-width: 100%;
}

@media (min-width: 1024px) {
	.course-form__form_input {
		padding: .85rem;
	}
}

.course-form__form_submit {
	font-size: 1rem;
	font-weight: 800;
	padding: .85rem;
	min-height: 3.1rem;
	width: 100%;
}

@media (min-width: 1024px) {
	.course-form__form_submit {
		min-height: 3.25rem;
	}
}

.course-form__policy {
	color: #8a8b8f;
	font-style: italic;
	font-weight: 700;
	font-size: .84rem;
	line-height: var(--main-line-height);
}

.course-form.sticky-start {
	transform: translateY(5%);
}

.course-form.sticky-start .course-form__image {
	opacity: 0;
	max-height: 0px;
	transform: scaleX(1.3);
}

.header {
	background-color: var(--black-pure);
	padding: .65rem 0;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 15;
	line-height: 1;
}

@media (min-width: 1024px) {
	.header {
		padding: 0;
	}
}

.header__group {
	display: flex;
}

.header__logo-area {
	width: 6rem;
	display: flex;
}

@media (min-width: 1024px) {
	.header__logo-area {
		width: 12rem;
		padding: 1rem 0;
	}
}

.header__logo-area .custom-logo-link {
	display: flex;
	align-items: center;
}

.header__logo-area .custom-logo-link img {
	width: 6rem;
	max-width: 100%;
	height: auto;
}

@media (min-width: 1024px) {
	.header__logo-area .custom-logo-link img {
		width: 12rem;
	}
}

.header__menu-area {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
}

@media (min-width: 1024px) {
	.header__menu-area {
		flex-flow: column;
	}
}

.header__menu-area_top {
	display: flex;
}

@media (min-width: 1024px) {
	.header__menu-area_top {
		margin: 0 0 auto auto;
	}
}

.header__menu-area_top .header-menu-top {
	display: none;
}

@media (min-width: 1024px) {
	.header__menu-area_top .header-menu-top {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
}

.header__menu-area_top .header-menu-top .nav-menu {
	display: flex;
	list-style: none;
}

.header__menu-area_top .header-menu-top .nav-menu .menu-item {
	margin-right: 1rem;
}

.header__menu-area_top .header-menu-top .nav-menu .menu-item.current-menu-item a {
	color: var(--red-brand);
}

.header__menu-area_top .header-menu-top .nav-menu .menu-item a {
	text-decoration: none;
	color: var(--white-pure);
	font-size: .9rem;
	transition: color .6s;
}

.header__menu-area_top .header-menu-top .nav-menu .menu-item a:hover, .header__menu-area_top .header-menu-top .nav-menu .menu-item a:focus {
	color: var(--red-brand);
}

.header__menu-area_top .become-member-form {
	display: none;
}

@media (min-width: 1024px) {
	.header__menu-area_top .become-member-form {
		display: flex;
		margin-right: 1rem;
	}
}

.header__menu-area_top .become-member-form__form {
	display: flex;
}

.header__menu-area_top .become-member-form__input {
	padding: 0 .3rem 0 .9rem;
	color: var(--white-pure);
	background-color: var(--gray-deep);
	border: none;
}

.header__menu-area_top .become-member-form__input::-moz-placeholder {
	color: var(--white-pure);
}

.header__menu-area_top .become-member-form__input::placeholder {
	color: var(--white-pure);
}

.header__menu-area_top .become-member-form__button {
	color: var(--white-pure);
	background-color: var(--red-brand);
	border: none;
	padding: .35rem 1rem;
	font-size: .85rem;
}

.header__menu-area_top .become-member-form .brand-button {
	padding: .2rem;
	text-align: center;
}

.header__menu-area_top .search-main {
	display: none;
	align-items: center;
	justify-content: center;
	height: 100%;
}

@media (min-width: 1024px) {
	.header__menu-area_top .search-main {
		display: flex;
	}
}

.header__menu-area_top .search-main svg {
	fill: var(--white-pure);
	width: 1rem;
	height: 1rem;
}

@media (min-width: 1024px) {
	.header__menu-area_bottom {
		margin-bottom: 1.2rem;
	}
}

.header__menu-area_bottom .header-menu-bottom {
	display: none;
}

@media (min-width: 1024px) {
	.header__menu-area_bottom .header-menu-bottom {
		display: block;
	}
}

.header__menu-area_bottom .header-menu-bottom .nav-menu {
	display: flex;
	list-style: none;
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item {
	position: relative;
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item:not(:last-child) {
	margin-right: 2.9rem;
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item.current-menu-item a {
	border-bottom: 2px solid var(--white-pure);
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item:hover .sub-menu, .header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item:focus .sub-menu {
	visibility: visible;
	opacity: 1;
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item:hover a, .header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item:focus a {
	border-bottom: 2px solid var(--white-pure);
	z-index: 1;
	position: relative;
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item a {
	text-decoration: none;
	color: var(--white-pure);
	font-weight: 800;
	font-size: 1rem;
	transition: color .6s;
	padding-bottom: .25rem;
}

@media (min-width: 1279px) {
	.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item a {
		font-size: 1.25rem;
	}
}

@media (min-width: 1440px) {
	.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item a {
		font-size: 1.34rem;
	}
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item > a[href="#"] {
	cursor: default;
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item .sub-menu {
	visibility: hidden;
	opacity: 0;
	transition: opacity .6s;
	list-style: none;
	padding: 1.35rem 0 .5rem 0;
	top: calc(100% + .25rem + 2px);
	background-color: #000;
	position: absolute;
	left: 0;
	min-width: 100%;
	line-height: 1.2;
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item .sub-menu .menu-item {
	padding: .45rem 1rem;
	min-width: 100%;
	transition: background-color .6s;
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item .sub-menu .menu-item:hover, .header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item .sub-menu .menu-item:focus, .header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item .sub-menu .menu-item.current-menu-item {
	border-bottom: 0;
	background-color: rgba(255, 255, 255, .38);
}

.header__menu-area_bottom .header-menu-bottom .nav-menu .menu-item .sub-menu .menu-item a {
	font-size: 1.1rem;
	border-bottom: 0;
	padding-bottom: 0;
}

.header .mobile-area {
	margin-right: 1.2rem;
}

@media (min-width: 1024px) {
	.header .mobile-area {
		display: none;
	}
}

.header .mobile-area__button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.header .mobile-area__button svg {
	width: 2rem;
	height: 1rem;
	fill: var(--white-pure);
}

.header .mobile-area__menu {
	display: none;
	flex-flow: column;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: calc(100vh - 100%);
	overflow-y: scroll;
	background-color: var(--black-pure);
}

.header .mobile-area__menu .header-menu-bottom {
	padding: 1rem;
}

.header .mobile-area__menu .header-menu-bottom .nav-menu {
	list-style: none;
}

.header .mobile-area__menu .header-menu-bottom .nav-menu .menu-item {
	margin-bottom: 1rem;
	position: relative;
	width: -moz-max-content;
	width: max-content;
}

.header .mobile-area__menu .header-menu-bottom .nav-menu .menu-item.current-menu-item > a {
	color: var(--red-brand);
}

.header .mobile-area__menu .header-menu-bottom .nav-menu .menu-item.submenu-mobile-open .sub-menu {
	padding-top: 1rem;
	visibility: visible;
	max-height: 1200px;
	transition: max-height .4s;
}

.header .mobile-area__menu .header-menu-bottom .nav-menu .menu-item .submenu-mobile-toggler {
	margin-left: 1rem;
}

.header .mobile-area__menu .header-menu-bottom .nav-menu .menu-item .submenu-mobile-toggler svg {
	width: 1rem;
	height: 1rem;
	fill: var(--white-pure);
}

.header .mobile-area__menu .header-menu-bottom .nav-menu .menu-item .sub-menu {
	visibility: hidden;
	max-height: 0;
	overflow: hidden;
	padding-left: 1rem;
	transition: max-height .1s;
}

.header .mobile-area__menu .header-menu-bottom .nav-menu .menu-item a {
	font-size: 1.4rem;
	text-decoration: none;
	color: var(--white-pure);
	transition: color .6s;
}

.header .mobile-area__menu .header-menu-bottom .nav-menu .menu-item a:hover, .header .mobile-area__menu .header-menu-bottom .nav-menu .menu-item a:focus {
	color: var(--red-brand);
}

.header .mobile-area__menu .header-menu-top {
	padding: 1rem;
	margin-top: auto;
}

.header .mobile-area__menu .header-menu-top .nav-menu {
	list-style: none;
}

.header .mobile-area__menu .header-menu-top .nav-menu .menu-item {
	margin-bottom: 1rem;
}

.header .mobile-area__menu .header-menu-top .nav-menu .menu-item.current-menu-item a {
	color: var(--red-brand);
}

.header .mobile-area__menu .header-menu-top .nav-menu .menu-item a {
	font-size: 1.4rem;
	text-decoration: none;
	color: var(--white-pure);
	transition: color .6s;
}

.header .mobile-area__menu .header-menu-top .nav-menu .menu-item a:hover, .header .mobile-area__menu .header-menu-top .nav-menu .menu-item a:focus {
	color: var(--red-brand);
}

.header .mobile-area__menu .become-member-form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.header .mobile-area__menu .become-member-form__form {
	width: 100%;
	display: flex;
}

.header .mobile-area__menu .become-member-form__input {
	font-size: .85rem;
	border-radius: 0;
	width: 50%;
	padding: 0 .3rem 0 .9rem;
	color: var(--white-pure);
	background-color: var(--gray-deep);
	border: none;
}

.header .mobile-area__menu .become-member-form__input::-moz-placeholder {
	font-size: .85rem;
	color: var(--white-pure);
}

.header .mobile-area__menu .become-member-form__input::placeholder {
	font-size: .85rem;
	color: var(--white-pure);
}

.header .mobile-area__menu .become-member-form__button {
	width: 50%;
	color: var(--white-pure);
	background-color: var(--red-brand);
	border: none;
	padding: .5rem 1rem;
	font-size: .85rem;
}

.header .mobile-area__menu .become-member-form .brand-button {
	padding: .2rem;
	display: block;
	margin: 1rem auto 0;
	text-align: center;
}

.header .mobile-area .search-mobile-form__form {
	display: flex;
}

.header .mobile-area .search-mobile-form__form_input {
	border-radius: 0;
	font-size: 1.2rem;
	width: 80%;
	padding: 1rem 0 1rem 1rem;
	color: var(--white-pure);
	background-color: var(--gray-deep);
	border: none;
}

.header .mobile-area .search-mobile-form__form_input::-moz-placeholder {
	color: var(--white-pure);
}

.header .mobile-area .search-mobile-form__form_input::placeholder {
	color: var(--white-pure);
}

.header .mobile-area .search-mobile-form__form_button {
	width: 20%;
	padding: 1rem 1rem 1rem 0;
	color: var(--white-pure);
	background-color: var(--gray-deep);
	border: none;
}

.header .mobile-area .search-mobile-form__form_button svg {
	fill: var(--white-pure);
	width: 1rem;
	height: 1rem;
}

@media (max-width: 1024px) {
	.mobile-menu-opened body {
		overflow: hidden;
	}
}

.mobile-menu-opened body .header {
	position: fixed;
	width: 100%;
}

.mobile-menu-opened body .header .mobile-area__menu {
	display: flex;
	z-index: 99999999;
	padding-bottom: 6rem;
}

.header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 15;
	height: 3rem;
}

@media (min-width: 1024px) {
	.header {
		height: 5rem;
	}
}

#primary {
	padding-top: 3rem;
}

@media (min-width: 1024px) {
	#primary {
		padding-top: 5rem;
	}
}

.footer {
	background-color: var(--black-pure);
	padding: 2.5rem 0 1.5rem;
	color: var(--gray-light);
}

@media (min-width: 1024px) {
	.footer {
		padding: 3rem 0 1.5rem;
	}
}

@media (min-width: 1024px) {
	.footer__group {
		display: grid;
		grid-template-columns: 60% 40%;
		grid-template-rows: repeat(3, 1fr);
	}
}

.footer_side--logo {
	grid-column: 1/2;
	grid-row: 1/3;
}

.footer_side--links {
	grid-column: 2/3;
	grid-row: 1/4;
}

.footer_side--copy {
	grid-column: 1/2;
	grid-row: 3/4;
}

.footer__logo-area_text {
	margin: 1.4rem 0 1rem;
	font-size: 1.1rem;
}

.footer__logo-area_text a {
	text-decoration: none;
	color: var(--gray-light);
	transition: color .6s;
}

.footer__logo-area_text a:hover, .footer__logo-area_text a:focus {
	color: var(--red-brand);
}

.footer__logo-area .custom-logo-link {
	display: block;
	width: 11.5rem;
}

.footer__logo-area .custom-logo-link img {
	width: 100%;
	height: auto;
}

.footer__about_text {
	font-size: 1.11rem;
	margin-bottom: 1.9rem;
}

@media (min-width: 1024px) {
	.footer__about_text {
		font-size: 1.13rem;
	}
}

@media (min-width: 1024px) {
	.footer__about_text {
		max-width: 67%;
	}
}

.footer__menu-group {
	display: flex;
	line-height: var(--secondary-line-heigh);
}

.footer__menu-group .footer-menu-secondary:not(:last-child) {
	margin-right: 4rem;
}

@media (min-width: 1024px) {
	.footer__menu-group .footer-menu-secondary:not(:last-child) {
		margin-right: 8.5rem;
	}
}

.footer__menu-group .footer-menu-secondary .nav-menu {
	list-style: none;
}

.footer__menu-group .footer-menu-secondary .nav-menu .menu-item {
	margin-bottom: .5rem;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.footer__menu-group .footer-menu-secondary .nav-menu .menu-item {
		font-size: 1.3rem;
	}
}

.footer__menu-group .footer-menu-secondary .nav-menu .menu-item a {
	text-decoration: none;
	color: var(--gray-light);
	transition: color .6s;
}

.footer__menu-group .footer-menu-secondary .nav-menu .menu-item a:hover, .footer__menu-group .footer-menu-secondary .nav-menu .menu-item a:focus {
	color: var(--red-brand);
}

.footer__menu-group .footer-menu-secondary .nav-menu .menu-item.current-menu-item a {
	color: var(--red-brand);
}

.footer__subscribe-area {
	margin: 2rem 0;
}

.footer__copy {
	margin-top: 1rem;
}

.footer__copy_text {
	font-size: .9rem;
	color: var(--gray-light);
}

.footer__copy_text a {
	text-decoration: none;
	color: var(--gray-light);
	transition: color .6s;
}

.footer__copy_text a:hover, .footer__copy_text a:focus {
	color: var(--red-brand);
}

.footer .footer-menu-main {
	margin-top: 1.9rem;
}

@media (min-width: 1024px) {
	.footer .footer-menu-main {
		max-width: 68%;
	}
}

.footer .footer-menu-main .nav-menu {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

@media (min-width: 1024px) {
	.footer .footer-menu-main .nav-menu {
		justify-content: space-between;
	}
}

.footer .footer-menu-main .nav-menu .menu-item {
	width: 50%;
	margin-bottom: .6rem;
}

@media (min-width: 1024px) {
	.footer .footer-menu-main .nav-menu .menu-item {
		width: -moz-max-content;
		width: max-content;
	}
}

.footer .footer-menu-main .nav-menu .menu-item a {
	font-size: 1.1rem;
	text-decoration: none;
	color: var(--gray-light);
	font-weight: 800;
	transition: color .6s;
}

.footer .footer-menu-main .nav-menu .menu-item a:hover, .footer .footer-menu-main .nav-menu .menu-item a:focus {
	color: var(--red-brand);
}

.footer .footer-menu-main .nav-menu .menu-item.current-menu-item a {
	color: var(--red-brand);
}

.social-links {
	display: flex;
	margin: 2rem 0;
}

.social-links_item {
	border: 1px solid var(--white-pure);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin-right: .6rem;
	transition: border-color .6s;
}

.social-links_item svg {
	width: 1rem;
	height: 1rem;
	fill: var(--white-pure);
	transition: fill .6s;
}

.social-links_item:hover, .social-links_item:focus {
	border-color: var(--red-brand);
}

.social-links_item:hover svg, .social-links_item:focus svg {
	fill: var(--red-brand);
}

.social-links_follow {
	display: none;
}

#goTopBtn {
	--go-top-btn-size: 2rem;
	background-color: var(--red-brand);
	width: var(--go-top-btn-size);
	height: var(--go-top-btn-size);
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 10;
	border: 0;
	cursor: pointer;
}

#goTopBtn svg {
	fill: var(--white-pure);
	width: calc(var(--go-top-btn-size) / 2);
	height: calc(var(--go-top-btn-size) / 2);
}

.events-list {
	padding: 2.5rem 0;
}

.events-list__title {
	font-size: 2.2rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 1.2rem;
	line-height: var(--secondary-line-heigh);
}

@media (min-width: 1024px) {
	.events-list__title {
		font-size: 2.5rem;
		margin-bottom: .7rem;
	}
}

.events-list__subtitle {
	font-size: 1.25rem;
	margin: auto;
	text-align: center;
	line-height: var(--main-line-height);
	margin-bottom: 2.5rem;
	display: none;
}

@media (min-width: 1024px) {
	.events-list__subtitle {
		display: block;
		max-width: 58%;
	}
}

.events-list__list-with-filters {
	position: relative;
}

@media (min-width: 1024px) {
	.events-list__list-with-filters {
		display: flex;
		justify-content: space-between;
	}
}

.events-list__list-with-filters_filters {
	position: relative;
}

.events-list__list-with-filters_filters.hide-filters {
	display: none;
}

@media (min-width: 1024px) {
	.events-list__list-with-filters_filters {
		width: 22%;
	}
	
	.events-list__list-with-filters_filters.hide-filters {
		display: block;
	}
}

@media (min-width: 1440px) {
	.events-list__list-with-filters_filters.hide-filters {
		display: block;
	}
}

.events-list__list-with-filters_filters .filter-form input, .events-list__list-with-filters_filters .filter-form select {
	-webkit-appearance: none;
	color: #494952;
	background-color: white;
	border: 1px solid #dfe0e1;
}

.events-list__list-with-filters_filters .filter-form__input-group {
	display: flex;
	flex-flow: column;
	border-bottom: 1px solid #dfe0e1;
	padding-bottom: 1.5rem;
	margin-bottom: 1rem;
	line-height: 1.15;
}

.events-list__list-with-filters_filters .filter-form__input-group:first-child .filter-form__input-group_label {
	margin-top: -5px;
}

.events-list__list-with-filters_filters .filter-form__input-group--noborder {
	display: flex;
	flex-flow: column;
	padding-bottom: 0;
	margin-bottom: 1.7rem;
}

.events-list__list-with-filters_filters .filter-form__input-group_label {
	font-size: 1.55rem;
	font-weight: 600;
	margin-bottom: 1.1rem;
}

.events-list__list-with-filters_filters .filter-form__input-group_hide-area {
	display: flex;
	flex-flow: column;
}

.events-list__list-with-filters_filters .filter-form__input-group_toggler {
	text-decoration: none;
	color: var(--black-pure);
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.events-list__list-with-filters_filters .filter-form__input-group_toggler svg {
	width: 1rem;
	height: 1rem;
}

.events-list__list-with-filters_filters .filter-form__input-group_dates {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.events-list__list-with-filters_filters .filter-form__input-group_dates_from {
	width: 48%;
	font-size: 1rem;
	padding: .5rem 1.75rem .5rem 1rem;
	background-repeat: no-repeat;
	background-position: 92% 50%;
}

@media (min-width: 1024px) {
	.events-list__list-with-filters_filters .filter-form__input-group_dates_from {
		width: 100%;
		margin-bottom: .85rem;
	}
}

@media (min-width: 1270px) {
	.events-list__list-with-filters_filters .filter-form__input-group_dates_from {
		width: 48%;
		margin-bottom: 0;
	}
}

.events-list__list-with-filters_filters .filter-form__input-group_dates_to {
	width: 48%;
	font-size: 1rem;
	padding: .5rem 1.75rem .5rem 1rem;
	background-repeat: no-repeat;
	background-position: 92% 50%;
}

@media (min-width: 1024px) {
	.events-list__list-with-filters_filters .filter-form__input-group_dates_to {
		width: 100%;
	}
}

@media (min-width: 1270px) {
	.events-list__list-with-filters_filters .filter-form__input-group_dates_to {
		width: 48%;
	}
}

.events-list__list-with-filters_filters .filter-form__input-group_checkbox-label {
	cursor: pointer;
	width: -moz-max-content;
	width: max-content;
	position: relative;
	padding-left: 2rem;
	font-size: 1.06rem;
	max-width: 100%;
}

.events-list__list-with-filters_filters .filter-form__input-group_checkbox-label:not(:last-child) {
	margin-bottom: .85rem;
}

.events-list__list-with-filters_filters .filter-form__input-group_checkbox-label:before {
	position: absolute;
	content: " ";
	width: 1.2rem;
	height: 1.2rem;
	left: 0;
	top: 0;
	border: 1px solid #ccc;
}

.events-list__list-with-filters_filters .filter-form__input-group_checkbox-label input[type=checkbox] {
	display: none;
}

.events-list__list-with-filters_filters .filter-form__input-group_checkbox-label input[type=checkbox].checked + svg {
	display: inline-block;
}

.events-list__list-with-filters_filters .filter-form__input-group_checkbox-label svg {
	display: none;
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: .2rem;
	top: .2rem;
	fill: var(--red-brand);
}

.events-list__list-with-filters_filters .filter-form__input-group_reset-link {
	text-decoration: none;
	color: var(--red-brand);
	width: -moz-max-content;
	width: max-content;
	display: block;
	margin-left: auto;
	font-size: 1rem;
	font-weight: 800;
}

.events-list__list-with-filters_filters .filter-form__input-group_input-search {
	font-size: 1rem;
	padding: .5rem 1rem;
}

.events-list__list-with-filters_filters .filter-form__input-group.group-hide {
	padding-bottom: 0;
}

.events-list__list-with-filters_filters .filter-form__input-group.group-hide .filter-form__input-group_toggler svg {
	transform: rotate(180deg);
}

.events-list__list-with-filters_filters .filter-form__input-group.group-hide .filter-form__input-group_hide-area {
	display: none;
}

.events-list__list-with-filters_filters .filter-form__mobile-collapser {
	position: absolute;
	top: 0;
	right: 0;
}

.events-list__list-with-filters_filters .filter-form__mobile-collapser svg {
	width: 1rem;
	height: 1rem;
}

@media (min-width: 1024px) {
	.events-list__list-with-filters_filters .filter-form__mobile-collapser {
		display: none;
	}
}

.events-list__list-with-filters_items {
	margin-top: 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.events-list__list-with-filters_items {
		width: 74%;
		margin-top: 0;
		transform: translateY(-2.6rem);
	}
}

.events-list__list-with-filters_items .calendar-no-content {
	text-align: center;
	padding: 1.75rem;
	font-weight: 500;
	font-size: 1.75rem;
}

.events-list__item {
	margin-bottom: 1.65rem;
	transition: background-color .6s;
	line-height: var(--secondary-line-heigh);
}

@media (min-width: 768px) {
	.events-list__item {
		height: 14.7rem;
		display: flex;
	}
}

.events-list__item a {
	font-weight: 400;
	text-decoration: none;
	color: var(--black-pure);
	transition: color .6s;
}

.events-list__item a:hover {
	text-decoration: underline;
}

.events-list__item:hover {
	background-color: var(--gray-deep);
}

.events-list__item:hover .events-list__item_text, .events-list__item:hover .events-list__item_img {
	background-color: var(--gray-deep);
}

.events-list__item:hover a, .events-list__item:hover .events-list__item_text_desc {
	color: var(--white-pure);
}

.events-list__item:hover .events-list__item_text_cat_item:after {
	background-color: var(--white-pure);
}

.events-list__item_img {
	position: relative;
	transition: background-color .6s;
	height: 11rem;
}

@media (min-width: 768px) {
	.events-list__item_img {
		height: 100%;
		width: 40%;
	}
}

@media (min-width: 1024px) {
	.events-list__item_img {
		height: unset;
		width: 46%;
	}
}

.events-list__item_img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

.events-list__item_img-link {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.events-list__item_text {
	transition: background-color .6s;
	padding: 1.3rem 1rem;
	background-color: #f5f5f5;
	min-height: 14.5rem;
}

@media (min-width: 768px) {
	.events-list__item_text {
		width: 60%;
		display: flex;
		justify-content: center;
		flex-flow: column;
	}
}

@media (min-width: 1024px) {
	.events-list__item_text {
		width: 54%;
		padding: 1rem 3rem 1rem 2.65rem;
	}
}

.events-list__item_text_title {
	font-size: 1.45rem;
	font-weight: 800;
	margin-bottom: .5rem;
	max-height: 183px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.events-list__item_text_desc {
	font-size: 1.02rem;
	transition: .6s color;
}

.events-list__item_text_cat {
	display: flex;
	margin-bottom: .5rem;
	text-transform: uppercase;
	flex-wrap: wrap;
}

.events-list__item_text_cat_item {
	font-size: .8rem;
}

.events-list__item_text_cat_item:not(:last-child) {
	padding-right: 1rem;
	position: relative;
}

.events-list__item_text_cat_item:not(:last-child):after {
	--point-size: 2px;
	position: absolute;
	content: " ";
	top: calc(50% - var(--point-size) / 2);
	right: calc(.5rem - var(--point-size) / 2);
	height: var(--point-size);
	width: var(--point-size);
	background-color: var(--black-pure);
	border-radius: 100%;
	transition: background-color .6s;
}

.events-list__link-more {
	display: none;
	width: -moz-max-content;
	width: max-content;
	margin: 2.2rem auto 2rem;
	color: var(--red-brand);
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 700;
}

.events-list__calendar-view {
	display: none;
}

.events-list__calendar-view .ec-toolbar {
	flex-wrap: wrap;
}

.events-list__calendar-view .ec-button-group {
	margin: 1rem 0;
}

.events-list.calendar-view-active .events-list__calendar-view {
	max-width: 100%;
	overflow: scroll;
	display: block;
}

.events-list.calendar-view-active .events-list__calendar-view .ec-week {
	min-width: 320px;
}

.events-list.calendar-view-active .events-list__calendar-view .ec-event-title a {
	text-decoration: none;
	color: #fff;
}

.events-list.calendar-view-active .events-list__calendar-view .ec-day, .events-list.calendar-view-active .events-list__calendar-view .ec-time {
	font-size: .8rem;
}

@media (min-width: 1024px) {
	.events-list.calendar-view-active .events-list__calendar-view .ec-day, .events-list.calendar-view-active .events-list__calendar-view .ec-time {
		font-size: 1rem;
	}
}

.events-list.calendar-view-active .events-list__list-with-filters {
	display: none;
}

.events-list.calendar-view-active .events-list__list-with-filters_mobile-collapser {
	display: none;
}

.events-list.main-archive-template .events-list__title {
	margin-bottom: 3rem;
}

.events-list .nav-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
	width: -moz-max-content;
	width: max-content;
}

.events-list .nav-links a {
	font-weight: 600;
	font-family: var(--primary-font);
	text-decoration: none;
	color: var(--gray-deep);
	display: inline-block;
	margin: 0 .5rem;
}

.events-list .nav-links a:hover, .events-list .nav-links a:focus {
	text-decoration: underline;
}

.events-list .nav-links .current {
	color: #c8c8c8;
}

.events-list_filter-switchers {
	padding-top: 1rem;
	margin: 0 0 1rem;
	border-top: 1px solid #dfe0e1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.events-list_filter-switchers .events-list__view-switcher {
	width: -moz-max-content;
	width: max-content;
	display: block;
	color: var(--red-brand);
	text-decoration: none;
	font-size: .95rem;
	font-weight: 700;
}

.events-list_filter-switchers .events-list__list-with-filters_mobile-collapser {
	font-size: .95rem;
	color: var(--black-pure);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 1024px) {
	.events-list_filter-switchers .events-list__list-with-filters_mobile-collapser {
		display: none;
	}
}

.events-list_filter-switchers .events-list__list-with-filters_mobile-collapser svg {
	width: .95rem;
	height: .95rem;
	margin-left: .5rem;
}

.events-list .calendar-list-month-separator_title {
	font-size: 1.55rem;
	font-weight: 600;
	margin: 0 0 .5rem;
	padding-bottom: .5rem;
	border-bottom: 1px solid #dfe0e1;
}

.events-list .sold-out-indicator {
	width: -moz-max-content;
	width: max-content;
	background-color: var(--red-brand);
	color: #fff;
	padding: .15rem .5rem .25rem;
	line-height: var(--main-line-height);
	font-size: .8rem;
	margin: 0 0 .5rem;
	font-weight: 500;
	border-radius: .175rem;
}

.press-releases {
	margin-bottom: 3.5rem;
}

.press-releases__title {
	text-align: center;
	font-size: 2.5rem;
	margin: .7rem 0 1.9rem;
}

@media (min-width: 1440px) {
	.press-releases__items {
		max-width: 66%;
		margin: auto;
	}
}

.press-releases__items .press-releases-item {
	padding: 1rem 0;
	border-top: 1px solid #dfe0e1;
	display: flex;
	flex-flow: column;
}

@media (min-width: 1024px) {
	.press-releases__items .press-releases-item {
		height: 10.45rem;
	}
}

.press-releases__items .press-releases-item:last-child {
	border-bottom: 1px solid #dfe0e1;
}

@media (min-width: 1024px) {
	.press-releases__items .press-releases-item {
		flex-flow: row;
	}
}

@media (min-width: 1024px) {
	.press-releases__items .press-releases-item__img {
		width: 26%;
	}
}

.press-releases__items .press-releases-item__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.press-releases__items .press-releases-item__info {
	padding: 1rem 0;
}

@media (min-width: 1024px) {
	.press-releases__items .press-releases-item__info {
		width: 74%;
		padding: 0 0 0 2.25rem;
	}
}

.press-releases__items .press-releases-item__info_top {
	display: flex;
	justify-content: space-between;
}

.press-releases__items .press-releases-item__info_top_date a {
	font-size: .97rem;
	text-transform: uppercase;
	font-weight: 800;
	color: #999;
}

.press-releases__items .press-releases-item__info_top_lang a {
	transition: .6s color;
	color: var(--black-pure);
	text-transform: uppercase;
	font-weight: 800;
	font-size: 1rem;
}

.press-releases__items .press-releases-item__info_top_lang a:not(:last-child) {
	margin-right: 1rem;
}

.press-releases__items .press-releases-item__info_top_lang a:hover {
	color: var(--red-brand);
}

.press-releases__items .press-releases-item__info_title {
	margin-top: .55rem;
	max-height: calc(100% - 1rem);
	overflow: hidden;
	line-height: var(--secondary-line-heigh);
}

.press-releases__items .press-releases-item__info_title a {
	font-size: 1.5rem;
	color: var(--black-pure);
	font-weight: 700;
	text-overflow: ellipsis;
}

.press-releases__items .press-releases-item a {
	text-decoration: none;
}

.press-releases__learn-more {
	color: var(--red-brand);
	text-decoration: none;
	display: block;
	width: -moz-max-content;
	width: max-content;
	margin: 1rem auto 0;
	font-size: 1.1rem;
	font-weight: 800;
}

.news-header {
	display: flex;
	height: auto;
	background-color: #f5f5f5;
	flex-direction: column;
	position: relative;
}

.news-header__post-title {
	color: black;
	text-decoration: none;
	font-size: 1.8rem;
	line-height: var(--main-line-height);
	font-weight: bold;
}

@media (min-width: 768px) {
	.news-header__post-title {
		font-size: 2.4rem;
	}
}

.news-header__post-title:hover {
	color: #ff0037;
	text-decoration: underline;
}

.news-header .tns-nav {
	position: absolute;
	bottom: 1rem;
	width: 100%;
	z-index: 10;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.news-header .tns-nav button {
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	border: none;
	box-shadow: 0px 0px 3px 2px rgba(255, 0, 55, .3607843137);
}

.news-header .tns-nav button.tns-nav-active {
	background-color: #ff0037;
}

.news-header .header-slide {
	position: relative;
}

@media (min-width: 768px) {
	.news-header .container {
		padding-top: 3rem;
		padding-bottom: 3rem;
		min-height: 620px;
	}
}

.news-header__intro p {
	font-family: var(--primary-font);
	font-weight: 300;
}

.news-header__text {
	display: flex;
	width: 100%;
	justify-content: center;
	flex-direction: column;
	gap: 1rem;
	padding-top: 2rem;
}

@media (min-width: 768px) {
	.news-header__text {
		width: 40%;
		padding-top: 0;
	}
}

.news-header__text .news-list__item_text_cat_item {
	color: black;
	display: inline;
	text-decoration: none;
	border: 1px solid black;
	border-radius: 30px;
	padding: .1rem .5rem;
	width: -moz-max-content;
	width: max-content;
}

.news-header__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

@media (min-width: 768px) {
	.news-header__img {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		z-index: 1;
		width: 55%;
	}
}

.news-header .header-slider-controls a {
	position: absolute;
	width: 1.6rem;
	height: 2.2rem;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--white-pure);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	opacity: .5;
}

.news-header .header-slider-controls a svg {
	width: 1rem;
	height: 1rem;
}

.news-header .header-slider-controls a:focus {
	box-shadow: 0px 0px 3px 2px var(--red-brand);
	outline: none;
}

.news-header .header-slider-controls a.header-slider-prev {
	left: 1rem;
}

.news-header .header-slider-controls a.header-slider-next {
	right: 1rem;
}

.news-list.stories-template {
	padding: 1rem 0 0;
}

.news-list__title {
	font-size: 2.04rem;
	margin-bottom: 1rem;
	line-height: var(--secondary-line-heigh);
}

.news-list__title--big {
	font-size: 2.5rem;
}

.news-list__filters {
	padding: 2rem 0;
}

.news-list__categories a {
	display: inline-block;
	border: 1px solid black;
	padding: .25rem .5rem;
	text-decoration: none;
	color: black;
	border-radius: 99em;
	transition: all .3s;
	margin: 0 .5rem .5rem 0;
}

@media (min-width: 768px) {
	.news-list__categories a {
		padding: .5rem 1rem;
	}
}

.news-list__categories a:hover, .news-list__categories a.active {
	background-color: #ff0037;
	color: white;
	border-color: #ff0037;
}

.news-list__item {
	min-height: 10rem;
	display: flex;
	flex-flow: column;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #dfe0e1;
}

@media (min-width: 768px) {
	.news-list__item {
		flex-flow: row;
	}
}

.news-list__item_img {
	width: 100%;
	margin: 0 0 1rem 0;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.news-list__item_img {
		width: 35%;
		margin: 0 2rem 0 0;
	}
}

.news-list__item_img img {
	max-height: 10rem;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

@media (min-width: 768px) {
	.news-list__item_img img {
		max-height: 100%;
	}
}

.news-list__item_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
}

.news-list__item_text_cat {
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
}

.news-list__item_text_cat span, .news-list__item_text_cat a {
	color: black;
	text-decoration: none;
	font-size: .9rem;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 .5rem .5rem 0;
}

.news-list__item_text_title {
	font-size: 1.25rem;
	line-height: var(--main-line-height);
	font-weight: 400;
}

@media (min-width: 768px) {
	.news-list__item_text_title {
		font-size: 2rem;
		line-height: var(--main-line-height);
	}
}

.news-list__item_text_title a {
	text-decoration: none;
	color: black;
	font-weight: bold;
}

.news-list__item_text_title a:hover {
	color: #ff0037;
	text-decoration: underline;
}

.load_more_wrapper {
	text-align: center;
	margin: 1rem auto 3rem;
}

.load_more_link {
	text-decoration: none;
	font-weight: bold;
}

.news-list-outlet-date {
	display: flex;
	text-transform: uppercase;
	flex-wrap: wrap;
	font-weight: 400;
}

.news-list-outlet-date_item {
	font-size: 1rem;
}

.news-list-outlet-date_item:not(:last-child) {
	padding-right: 1rem;
	position: relative;
}

.news-list-outlet-date_item:not(:last-child):after {
	--point-size: 2px;
	position: absolute;
	content: " ";
	top: calc(50% - var(--point-size) / 2);
	right: calc(.5rem - var(--point-size) / 2);
	height: var(--point-size);
	width: var(--point-size);
	background-color: var(--black-pure);
	border-radius: 100%;
	transition: background-color .6s;
}

.course-hero {
	--course-yellow: #fdbf00;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 21.5rem;
	color: var(--white-pure);
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.course-hero .container {
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.course-hero {
		min-height: 25rem;
	}
}

.course-hero__group {
	position: relative;
	z-index: 1;
	display: flex;
	margin-bottom: 3rem;
}

@media (min-width: 1024px) {
	.course-hero__info {
		width: 65%;
	}
}

.course-hero__info .course-info__labels {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.course-hero__info .course-info__labels a {
	display: inline-block;
	background-color: var(--course-yellow);
	border-radius: .99em;
	text-decoration: none;
	color: var(--black-pure);
	padding: .15rem .5rem .25rem;
	line-height: var(--main-line-height);
	font-size: .89rem;
	margin-right: .5rem;
	margin-bottom: .5rem;
	font-weight: 600;
}

.course-hero__info .course-info__date-time {
	font-size: 1.5rem;
}

.course-hero__info .course-info__rating {
	margin-bottom: .6rem;
	display: flex;
}

@media (min-width: 1024px) {
	.course-hero__info .course-info__rating {
		margin-bottom: .1rem;
	}
}

.course-hero__info .course-info__rating_stars {
	margin-right: .6rem;
}

.course-hero__info .course-info__rating_stars svg {
	width: .85rem;
	height: .85rem;
	margin-right: .2rem;
}

.course-hero__info .course-info__title {
	font-size: 1.96rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
	.course-hero__info .course-info__title {
		font-size: 3.5rem;
	}
}

.course-hero__info .course-info .brand-button {
	font-size: 1.1rem;
	font-weight: 600;
}

.instructors {
	padding: 2.25rem 0 3rem;
	position: relative;
	background-color: #f4f4f4;
	text-align: center;
}

@media (min-width: 1024px) {
	.instructors {
		padding: 2rem 0 4rem;
	}
}

.instructors__title {
	text-align: center;
	font-size: 1.95rem;
	line-height: var(--main-line-height);
	margin-bottom: .8rem;
}

@media (min-width: 1024px) {
	.instructors__title {
		font-size: 2.73rem;
	}
}

.instructors__subtitle {
	text-align: center;
	font-size: 1.2rem;
	line-height: var(--main-line-height);
	margin-bottom: 2rem;
}

@media (min-width: 1024px) {
	.instructors__subtitle {
		font-size: 1.15rem;
		max-width: 58%;
		margin: 0 auto 2.5rem;
	}
}

.instructors__slider-wrapper {
	max-width: 100%;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.instructors__slider-wrapper {
		max-width: 90%;
	}
}

.instructors__item {
	position: relative;
	padding: 0 1.8rem;
	margin: auto;
	background-color: transparent;
	text-align: left;
}

@media (min-width: 1024px) {
	.instructors__item {
		padding: 0 .8rem;
	}
}

.instructors__item_wrapper {
	position: relative;
	padding-top: 13.5rem;
	display: flex;
	flex-flow: column;
	background-color: var(--white-pure);
}

@media (min-width: 1024px) {
	.instructors__item_wrapper {
		padding: 14rem 1rem 0;
	}
}

.instructors__item_image {
	--image-block-height: 13.5rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--gray-deep);
	height: var(--image-block-height);
	overflow: hidden;
	transition: height .6s;
	backface-visibility: hidden;
	will-change: height;
}

@media (min-width: 1024px) {
	.instructors__item_image {
		--image-block-height: 14rem;
		left: 0;
		right: 0;
	}
}

.instructors__item_image:after {
	content: " ";
	background-image: url("https://cdn-ilehgmm.nitrocdn.com/mxncOOUektmNofixoHEkNfOnSfpqwzXK/assets/images/optimized/rev-acc2bfe/japansociety.org/wp-content/themes/japan-society/front-src/components/Instructors/assets/bottom.png");
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	left: -1px;
	right: -1px;
	height: 3rem;
	backface-visibility: hidden;
}

.instructors__item_image_logo {
	opacity: 0;
	position: absolute;
	top: 2rem;
	left: 1.5rem;
	transition: opacity .6s;
}

.instructors__item_image_photo {
	display: block;
	width: 100%;
	height: var(--image-block-height);
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 1;
	transition: opacity .8s .4s;
	backface-visibility: hidden;
	position: relative;
}

.instructors__item_text {
	padding: 1rem 1.75rem;
	min-height: 10rem;
	background-color: var(--white-pure);
	display: flex;
	flex-flow: column;
	transition: color .6s .2s;
}

@media (min-width: 1024px) {
	.instructors__item_text {
		min-height: 10.5rem;
		padding: 1rem .75rem;
	}
}

.instructors__item_text_name {
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: .2rem;
	position: relative;
	z-index: 5;
}

@media (min-width: 1024px) {
	.instructors__item_text_name {
		margin-bottom: .5rem;
	}
}

.instructors__item_text_about {
	font-size: 1.1rem;
	position: relative;
	z-index: 5;
}

.instructors__item_text_link {
	margin-top: auto;
	text-decoration: none;
	color: var(--white-pure);
	font-weight: 800;
	font-size: 1rem;
	position: relative;
	z-index: 5;
	opacity: 0;
	transition: opacity .6s;
}

.instructors__item:hover .instructors__item_image {
	height: 150%;
}

.instructors__item:hover .instructors__item_image_logo {
	opacity: 1;
}

.instructors__item:hover .instructors__item_image_photo {
	opacity: 0;
	transition: opacity .3s;
}

.instructors__item:hover .instructors__item_text {
	transition: color .6s;
	color: var(--white-pure);
}

.instructors__item:hover .instructors__item_text_link {
	opacity: 1;
}

.instructors__brand-button {
	margin: 2rem auto 0;
}

.instructors__controls a {
	position: absolute;
	width: 1.6rem;
	height: 2.2rem;
	top: 50%;
	background-color: var(--white-pure);
	display: flex;
	align-items: center;
	justify-content: center;
}

.instructors__controls a svg {
	width: 1rem;
	height: 1rem;
}

.instructors__controls a:focus {
	box-shadow: 0px 0px 3px 2px var(--red-brand);
}

.instructors__controls a[aria-disabled=true] {
	opacity: .2;
}

.instructors__controls_prev {
	left: 0;
}

@media (min-width: 1024px) {
	.instructors__controls_prev {
		left: calc(100vw - ( var(--standard-container-width) + 1.5rem ) - ( 100vw - ( var(--standard-container-width) + 1.5rem ) ) / 2 - ( 100vw - ( var(--standard-container-width) + 1.5rem ) ) / 2 / 2);
	}
}

.instructors__controls_next {
	right: 0;
}

@media (min-width: 1024px) {
	.instructors__controls_next {
		right: calc(100vw - ( var(--standard-container-width) + 1.5rem ) - ( 100vw - ( var(--standard-container-width) + 1.5rem ) ) / 2 - ( 100vw - ( var(--standard-container-width) + 1.5rem ) ) / 2 / 2);
	}
}

.know-more {
	padding: 2rem 0;
}

@media (min-width: 1024px) {
	.know-more {
		padding: 4rem 0;
	}
}

.know-more__title {
	font-size: 1.9rem;
	margin-bottom: 1.6rem;
}

@media (min-width: 1024px) {
	.know-more__title {
		margin: auto;
		font-size: 2.45rem;
		margin-bottom: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.know-more .faq-accordion {
		margin: auto;
	}
}

@media (min-width: 1024px) {
	.single-courses .know-more__title {
		width: calc(100% - 22rem);
		max-width: 100%;
	}
}

@media (min-width: 1024px) {
	.single-courses .know-more .faq-accordion {
		width: calc(100% - 22rem);
		max-width: 100%;
	}
}

.section-faq-list {
	padding: 3.2rem 0;
}

.section-faq-list__title {
	font-size: 2.55rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.section-faq-list__title {
		padding-left: 31%;
	}
}

.section-faq-list__title-wrapper {
	padding: 0 1rem;
}

@media (min-width: 1245px) {
	.section-faq-list__title-wrapper {
		max-width: 1245px;
		margin: auto;
		padding: 0;
	}
}

.section-faq-list__group {
	display: flex;
	flex-flow: column;
	padding: 0 1rem;
}

@media (min-width: 768px) {
	.section-faq-list__group {
		flex-flow: row;
	}
}

@media (min-width: 1245px) {
	.section-faq-list__group {
		max-width: 1245px;
		margin: auto;
		padding: 0;
	}
}

.section-faq-list__sidebar {
	position: relative;
}

@media (min-width: 768px) {
	.section-faq-list__sidebar {
		width: 31%;
	}
}

.section-faq-list__sidebar_title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-faq-list__sidebar_list {
	list-style: none;
	margin-bottom: 3rem;
}

.section-faq-list__sidebar_list .nav-item {
	margin-bottom: .5rem;
}

.section-faq-list__sidebar_list .nav-item a {
	text-decoration: none;
	color: var(--black-pure);
	font-size: 1.25rem;
}

.section-faq-list__sidebar_list .nav-item a.active {
	font-weight: 700;
}

@media (min-width: 768px) {
	.section-faq-list__sidebar .sticky-wrapper {
		position: sticky;
		top: 2rem;
	}
}

@media (min-width: 768px) {
	.section-faq-list__main {
		width: 69%;
	}
}

.section-faq-list__main .faq-group {
	margin-bottom: 6rem;
}

.section-faq-list__main .faq-group__title {
	margin: 0 0 3rem;
	font-size: 2rem;
}
