@charset "UTF-8";
/* CSS Document */

.section-title {
	font-family: "Gveret Levin", cursive;
	font-weight: 400;
	font-style: normal;
	color: #c91f25;
}
.view-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background: #123b72;
	color: #fff;
	border-radius: 999px;
	transition:
		background 0.3s,
		color 0.3s,
		transform 0.3s;
}
.view-btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #cf1f22;
	border-radius: 50%;
	line-height: 1;
}
@media screen and (max-width:768px){
	.section-title {
		font-size: 3rem;
	}
	.view-btn {
		width: 140px;
		padding: 8px 8px 8px 16px;
	}
	.view-btn-icon {
		width: 32px;
		height: 32px;
	}
}
@media screen and (min-width:769px){
	.section-title {
		font-size: 4.8rem;
	}
	.view-btn {
		width: 250px;
		padding: 16px 16px 16px 40px;
	}
	.view-btn-icon {
		width: 40px;
		height: 40px;
	}
	.view-btn:hover {
		background: #c91f25;
		color: #fff;
	}
	.view-btn:hover .view-btn-icon {
		background: #123b72;
	}
}


/* -------------------------
topView
------------------------- */
.hero__text {
	font-weight: 700;
	color: #123f78;
	text-align: center;
	white-space: nowrap;
	letter-spacing: 0.05em;
	box-sizing: border-box;
   	margin-top: 24px;
}

.hero__slider {
	width: 100%;
	overflow: hidden;
}

.hero__track {
	display: flex;
	align-items: flex-end;
	width: max-content;
	animation: slide 20s linear infinite;
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.hero__photo {
	object-fit: cover;
	border-radius: 24px;
	flex-shrink: 0;
	display: block;
}

@keyframes slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(
			calc(
				-1 * (
					var(--card1) +
					var(--card2) +
					var(--card3) +
					var(--card4) +
					var(--gap) * 4
				)
			)
		);
	}
}

@media screen and (max-width:768px){
	.hero__text {
		font-size: 48px;
	}

	.hero__slider {
		margin-top: 56px;
	}

	.hero__track {
		--card1: 200px;
		--card2: 272px;
		--card3: 224px;
		--card4: 256px;
		--gap: 16px;
	}

	.hero__photo {
		margin-right: var(--gap);
	}

	.hero__photo1 {
		width: var(--card1);
		height: var(--card1);
	}

	.hero__photo2 {
		width: var(--card2);
		height: var(--card2);
	}

	.hero__photo3 {
		width: var(--card3);
		height: var(--card3);
	}

	.hero__photo4 {
		width: var(--card4);
		height: var(--card4);
	}
}

@media screen and (min-width: 769px) {
	.hero__text {
		font-size: 80px;
	}

	.hero__slider {
		margin-top: 56px;
	}

	.hero__track {
		--card1: 296px;
		--card2: 456px;
		--card3: 344px;
		--card4: 392px;
		--gap: 24px;
	}

	.hero__photo {
		margin-right: var(--gap);
	}

	.hero__photo1 {
		width: var(--card1);
		height: var(--card1);
	}

	.hero__photo2 {
		width: var(--card2);
		height: var(--card2);
	}

	.hero__photo3 {
		width: var(--card3);
		height: var(--card3);
	}

	.hero__photo4 {
		width: var(--card4);
		height: var(--card4);
	}
}

/* -------------------------
news
------------------------- */
.news__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.news__list {
	margin: 0 auto;
	display: flex;
}
.news__list::-webkit-scrollbar {
	display: none;
}
.news__card {
	display: block;
	flex: 1;
	color: inherit;
}
.news__thumb {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: 8px;
}
.news__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
	will-change: transform;
}
.news__card h3 {
	font-weight: 700;
}
.news__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}
.tag {
	color: #123f78;
	background: #fff;
	border-radius: 999px;
	white-space: nowrap;
}
.news__date {
	color: #123f78;
	font-weight: 700;
	white-space: nowrap;
}

@media screen and (max-width:768px){
	.news {
		padding: 56px 0 56px 24px;
	}
	.news__header {
		margin-bottom: 24px;
		padding-right: 24px;
	}
	.news__more {
		width: 140px;
		height: 48px;
	}
	.news__list {
		display: flex;
		gap: 24px;
		overflow-x: auto;
		padding-right: 24px;
		padding-bottom: 8px;
		scrollbar-width: none;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}
	.news__card {
		flex: 0 0 70%;
		scroll-snap-align: start;
	}
	.news__thumb {
		margin-bottom: 16px;
	}
	.news__card h3 {
		font-size: 16px;
	}
	.news__meta {
		font-size: 12px;
	}
	.tag {
		padding: 4px 8px;
	}
}

@media screen and (min-width: 769px) {

	.news {
		padding: 126px 0 126px;
	}
	.news__header {
		width: 1080px;
		margin: 0 auto 40px;
	}
	.news__more {
		width: 180px;
		height: 64px;
	}
	.news__list {
		width: 1080px;
		gap:40px;
	}
	.news__card article {
		transition: transform 0.3s;
	}
	.news__card:hover article {
		transform: translateY(-4px);
	}
	.news__card:hover .news__thumb img {
		transform: scale(1.08);
	}
	.news__thumb {
		margin-bottom: 16px;
	}
	.news__card h3 {
		font-size: 18px;
	}
	.news__meta {
		font-size: 12px;
	}
	.tag {
		padding: 4px 16px;
	}
}



/* -------------------------
club
------------------------- */

.club {
	background: #AF3132;
	color: #f3f1ef;
}
.club__inner {
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}
.club__content {
	position: relative;
	z-index: 2;
}
.club__catch {
	line-height: 1.45;
	font-weight: 700;
}
.club__catch span {
 	margin-left: 0.15em;
}
.club__text {
 	line-height: 1.9;
}
.club__img {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.course__title-wrap {
	text-align: center;
}
.course__title-wrap .section-title {
	color: #fff;
}
.course-card {
	color: #123f78;
	background: #fff;
	margin: 0 auto;
}
.course-card__title {
	font-family: "Gveret Levin", cursive;
	line-height: 1;
	color: #c91f25;
	margin-bottom: 8px;
}
.course-card__target {
	font-weight: 700;
	margin-bottom: 24px;
}
.course-card__text {
	line-height: 1.9;
	margin-bottom: 24px;
}
.course-card__info {
	font-size: 14px;
	line-height: 1.8;
}
.course-card__label {
 	font-weight: 700;
}
.course-card__image {
	border-radius: 8px;
	overflow: hidden;
}
.course-card__image img {
	width: 100%;
	object-fit: cover;
	display: block;
}
.schedule {
 	margin-top: 40px;
}
.schedule__title {
	font-weight: 700;
	margin-bottom: 16px;
}
.schedule__title i {
 	color: #123f78;
}
.schedule__table {
	display: grid;
	border: 1px solid #ddd;
	border-radius: 0 0 8px 8px;
}
.schedule__day {
	background: #ccc;
	text-align: center;
	font-size: 14px;
	padding: 12px 8px;
}
.schedule__body {
	min-height: 80px;
	text-align: center;
	font-size: 14px;
	line-height: 1.7;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.schedule__body span {
 	font-size: 12px;
}
.schedule__body--center {
 	align-items: center;
}


@media screen and (max-width:768px){
	.club {
		padding: 56px 0;
	}
	.club__inner{
		padding: 0 24px 220px;
	}
	.club__catch{
		margin-bottom: 24px;
		font-size:24px;
	}
	.club__catch span{
		font-size: .58em;
	}
	.club__text p + p {
		margin-top: 8px;
	}
	.club__text br{
		display: none;
	}
	.club__img1{
		width: 200px;
		left: 0;
		bottom: 0;
	}
	.club__img2{
		width: 140px;
		right: -10px;
		bottom: 60px;
	}
	.course__title-wrap {
		padding: 40px 0;
	}
	.course-card{
		padding:40px 24px;
		border-radius:16px;
		width: calc(100% - 48px);
	}
	.course-card + .course-card{
		margin-top:40px;
	}
	.course-card__top{
		display:flex;
		flex-direction:column;
		gap:24px;
	}
	.course-card__image img{
		border-radius:16px;
		aspect-ratio: 3 / 2;
	}
	.course-card__title{
		font-size:48px;
	}
	.schedule__table {
		grid-template-columns: repeat(2, 1fr);
	}
	.schedule__col:nth-child(odd) {
		border-right: 1px solid #ddd;
	}
}


@media screen and (min-width: 769px) {
	.club {
		padding: 126px 0;
	}
	.club__inner {
		max-width: 1080px;
		padding: 0 0 126px;
	}
	.club__catch {
		font-size: clamp(36px, 4.6vw, 64px);
		margin-bottom: 56px;
	}
	.club__catch span {
		font-size: 0.58em;
	}
	.club__text p + p {
		margin-top: 16px;
	}
	.club__img1 {
		width: 430px;
		right: 200px;
		bottom: 0;
	}
	.club__img2 {
		width: 280px;
		right: 0;
		bottom: 290px;
	}
	.course__title-wrap {
		padding: 72px 0;
	}
	.course-card {
		border-radius: 8px;
		padding: 56px;
		width: 1080px;
	}
	.course-card + .course-card {
		margin-top: 56px;
	}
	.course-card__top {
		display: grid;
		grid-template-columns: 1fr 380px;
		gap: 56px;
		align-items: start;
	}
	.course-card__title {
		font-size: 56px;
	}
	.course-card__image img {
		aspect-ratio: 1 / 1;
	}
	.schedule__table {
		grid-template-columns: repeat(4, 1fr);
	}
	.schedule__table--kids {
		grid-template-columns: repeat(6, 1fr);
	}
	.schedule__col {
		border-right: 1px solid #ddd;
	}
	.schedule__col:last-child {
		border-right: none;
	}
}



/* -------------------------
Instagram
------------------------- */
.instagram {
	text-align: center;
}

@media screen and (max-width:768px){
	.instagram {
		padding: 56px 24px 0;
	}
}

@media screen and (min-width:769px){
	.instagram {
		padding: 126px 0 0;
	}
}

/* -------------------------
Support partner
------------------------- */
.support {
	text-align: center;
}
.support__list {
	width: min(1080px, 100%);
	display: grid;
	align-items: end;
}
.support__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: 8px;
}
.support__card img {
	width: 100%;
	object-fit: contain;
}
.support__list span {
	font-size: 1.2rem;
	display: block;
	margin-top: 4px;
}
.support__list span:after {
	content: "様";
	padding-left: 4px;
}

@media screen and (max-width:768px){
	.support {
		padding: 56px 24px;
	}
	.support__list {
		margin: 24px auto 0;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 16px;
	}
	.support__card {
		padding: 16px 0;
	}
	.support__card img {
		height: 32px;
	}
}

@media screen and (min-width:769px){
	.support {
		padding: 126px 0;
	}
	.support__list {
		margin: 56px auto 0;
		grid-template-columns: repeat(3, 1fr);
		gap: 24px 32px;
	}
	.support__card {
		padding: 24px 0;
	}
	.support__card img {
		height: 56px;
	}
}







/* -------------------------
News投稿ページ
------------------------- */
.single__content {
	background: #fff;
	border-radius: 8px;
}
.single__article {
	color: #c91f25;
	border-bottom: 1px solid #c91f25;
}
.single__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.single__categories {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	background:#FFEDED;
	border-radius: 999px;
	padding: 4px 16px;
}
.single__title {
	font-weight: 700;
}
.single_text p:not(:last-of-type) {
	margin-bottom: 16px;
}
.single__nav {
	display: flex;
	width: fit-content;
    margin: 0 auto;
    gap: 16px;
}
.single__nav-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #123b72;
	color: #fff;
	border-radius: 999px;
}
.single__nav-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #cf1f22;
	border-radius: 50%;
	line-height: 1;
}
@media screen and (max-width:768px){
	#single {
		margin-bottom: 56px;
	}
	.single__content {
		width: calc(100% - 48px);
		padding: 40px;
		margin: 56px auto;
	}
	.single__article {
		padding-bottom: 24px;
		margin-bottom: 24px;
	}
	.single__title {
		font-size: 24px;
	}
	.single__nav-btn {
		gap: 16px;
	}
	.single__nav-btntop {
		padding: 8px 16px 8px 8px;
	}
	.single__nav-btnlist {
		padding: 8px 8px 8px 16px;
	}
	.single__nav-icon {
		width: 32px;
		height: 32px;
	}
}
@media screen and (min-width:769px){
	#single {
		margin-bottom: 72px;
	}
	.single__content {
		width: 1080px;
		padding: 120px;
		margin: 72px auto;
	}
	.single__article {
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
	.single__title {
		font-size: 32px;
	}
	.single__nav-btn {
		gap: 40px;
	}
	.single__nav-btntop {
		padding: 16px 40px 16px 16px;
	}
	.single__nav-btnlist {
		padding: 16px 16px 16px 40px;
	}
	.single__nav-icon {
		width: 40px;
		height: 40px;
	}
}




/* お知らせ一覧 */
.news__ttl {
	text-align: center;
	background: #b93a3a;
}
.news__ttl-en {
	font-family: "Gveret Levin", cursive;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	display: block;
}
.news__ttl-jp {
	color: #fff;
}
.news-archive {
	margin: 0 auto;
}
.news-filter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.filter-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #123f78;
	color: #123f78;
	font-weight: 700;
	transition: 0.3s;
}
.filter-btn:hover,
.filter-btn.is-active {
	background: #123f78;
	color: #fff;
}
.news-archive__list {
 	display: grid;
}
.news-archive__card {
 	display: block;
}
.news-archive__thumb {
	aspect-ratio: 3 / 2;
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
	margin-bottom: 16px;
}
.news-archive__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s;
}
.news-archive__card:hover .news-archive__thumb img {
 	transform: scale(1.06);
}
.news-archive__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
.news-archive__meta time {
	color: #123f78;
	font-size: 14px;
	font-weight: 700;
}
.news-archive__category {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: #fff;
	color: #123f78;
	font-size: 12px;
	font-weight: 700;
}
.news-archive__card h3 {
	font-size: 18px;
	line-height: 1.7;
	font-weight: 700;
	color: #123f78;
}


/* ページネーション */
.pagination {
	margin-top: 64px;
	text-align: center;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0 4px;
	border-radius: 50%;
	border: 1px solid #123f78;
	background: #fff;
	color: #123f78;
	font-weight: 700;
	transition: .3s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: #123f78;
	color: #fff;
}

.allnews__nav {
}


/* スマホ */
@media screen and (max-width: 768px) {
	.news__ttl {
		padding: 24px 0;
		margin-top: 24px;
	}
	.news__ttl-en {
		font-size: 3rem;
	}
	.news-archive {
		width: calc(100% - 48px);
		padding: 32px 0 80px;
	}
	.news-filter {
		gap: 8px;
		margin-bottom: 32px;
	}
	.filter-btn {
		min-width: auto;
		padding: 8px 16px;
		font-size: 12px;
	}
	.news-archive__list {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.allnews__nav {
		margin-bottom: 56px;
	}
}

@media screen and (min-width: 769px) {
	.news__ttl {
		padding: 56px 0;
		margin-top: 56px;
	}
	.news__ttl-en {
		font-size: 4.8rem;
	}
	.news-archive {
		width: min(1080px, 90%);
		padding: 56px 0 120px;
	}
	.news-filter {
		gap: 16px;
		margin-bottom: 56px;
	}
	.filter-btn {
		min-width: 110px;
		padding: 10px 22px;
		font-size: 14px;
	}
	.news-archive__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 48px 32px;
	}

	.allnews__nav {
		margin-bottom: 120px;
	}
}












