@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	下層共通

//////////////////////////////////////////////////////////////////////////////*/



/*------------------------------------------------------------------------------

	本文

------------------------------------------------------------------------------*/


/* 段落
------------------------------------------------------------------------------*/

body.contents main p {
	line-height: 1.8;
}


/* リスト
------------------------------------------------------------------------------*/

body.contents main li {
	line-height: 1.8;
}


/* テーブル
------------------------------------------------------------------------------*/

body.contents main th,
body.contents main td {
	padding: .6em 1em;
	border: 1px solid rgba(var(--main-color),1);
}

body.contents main th,
body.contents main tr :first-child {
	font-weight: bold;
	background-color: rgba(var(--main-color),.1);
}


/* アンカー
------------------------------------------------------------------------------*/

body.contents main a {
	color: rgba(var(--main-color),1);
}


/*------------------------------------------------------------------------------

	共通

------------------------------------------------------------------------------*/

main #students header,
main #students .date,
main #program .group .detail,
main #schedule .flow {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


/*	 slider
------------------------------------------------------------------------------*/

.slider {
	display: none;
	position: relative;
}

.slider.slick-initialized {
	display: block; 
}

.slider .slick-arrow {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	border: none;
	background: none;
	padding: 0;
	width: 5.5%;
	height: 100%;
	font-size: 0;
	z-index: 10;
}

.slider .slick-arrow:hover {
	cursor: pointer;
}

.slider .slick-arrow::before {
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%)  rotate(45deg);
	display: block;
	content: "";
	width: 70%;
	aspect-ratio: 1/1;
}

.slider .slick-arrow.slick-prev {
	left: -5.5%;
}

.slider .slick-arrow.slick-prev::before {
	left: 60%;
	border-bottom: 2px solid rgba(var(--light-bg),1);
	border-left: 2px solid rgba(var(--light-bg),1);
}

.slider .slick-arrow.slick-next {
	right: -5.5%;
}

.slider .slick-arrow.slick-next::before {
	left: 40%;
	border-top: 2px solid rgba(var(--light-bg),1);
	border-right: 2px solid rgba(var(--light-bg),1);
}

.slider .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: .5em 0 0;
	list-style: none;
}

.slider .slick-dots li {
	position: relative;
	margin: 0 1em 0 0;
	width: .75em;
	aspect-ratio: 1/1;
	background-color: #FFF;
	border-radius: 10em;
}

.slider .slick-dots .slick-active {
	background-color: rgba(var(--main-color),1);
}

.slider .slick-dots li:last-child {
	margin-right: 0;
}

.slider .slick-dots li:before {
	content: "";
	display: block;
}

.slider .slick-dots li button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	outline: none;
	appearance: none;
	background: none;
	cursor: pointer;
	font-size: 0;
}

.slider .slick-arrow.slick-prev::before { animation: 1.75s arrow_prev infinite;}

@keyframes arrow_prev {
0%,100% {translate: 0 0;}
50% {translate: -25% 0;}
}

.slider .slick-arrow.slick-next::before { animation: 1.75s arrow_next infinite;}

@keyframes arrow_next {
0%,100% {translate: 0 0;}
50% {translate: 25% 0;}
}


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

.slider .slick-arrow.slick-prev::before {
	border-bottom-width: 2px;
	border-left-width: 2px;
}

.slider .slick-arrow.slick-next::before {
	border-top-width: 2px;
	border-right-width: 2px;
}

@keyframes arrow_prev {
0%,100% {translate: 0 0;}
50% {translate: -1.5vw 0;}
}

@keyframes arrow_next {
0%,100% {translate: 0 0;}
50% {translate: 1.5vw 0;}
}

}


/* section
------------------------------------------------------------------------------*/

main #program,
main #schedule,
main #module,
main #outline {
	display: flex;
	flex-direction: column;
	align-items: center;
}

main #program::before,
main #schedule::before,
main #module::before,
main #outline::before {
	content: '';
	display: block;
	width: 2px;
	height: 135px;
	background-color: rgba(var(--main-color),1);
}

main #voice h2,
main #program h2,
main #schedule h2,
main #module h2,
main #outline h2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	font-size: 3.875em;
}

main #voice h2::after,
main #program h2::after,
main #schedule h2::after,
main #module h2::after,
main #outline h2::after {
	display: block;
	margin-top: 1.5em;
	padding-left: .75em;
	letter-spacing: .75em;
	font-weight: 500;
	font-size: .275em;
	color: rgba(234,187,167,1);
}

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

main #voice h2,
main #program h2,
main #schedule h2,
main #module h2,
main #outline h2 {
	padding-top: 40px;
	font-size: 3em;
}

}

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


main #voice h2::before,
main #program::before,
main #schedule::before,
main #module::before,
main #outline::before {
	height: 20vw;
}

main #voice h2,
main #program h2,
main #schedule h2,
main #module h2,
main #outline h2 {
	padding-top: 7vw;
	font-size: 9vw;
}

}


/*------------------------------------------------------------------------------

	受講者

------------------------------------------------------------------------------*/

main #students {
	padding-bottom: 180px;
}

main #students .site_column .recruiting {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

main #students header {
	width: 25.6%;
	aspect-ratio: 266/306.5;
	background-image: url(../img/recruitment.svg);
}

main #students .date {
	width: 67.5%;
	aspect-ratio: 705/430;
	background-image: url(../img/date.svg);
}

main #students .action_buttons {
	margin-top: 100px;
}

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

main #students {
	padding-bottom: 120px;
}

main #students .action_buttons {
	margin-top: 70px;
}

}

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

main #students {
	padding-bottom: 20vw;
}

main #students .site_column .recruiting {
	display: block;
}

main #students header {
	width: 45%;
	margin: 0 auto;
}

main #students .date {
	width: 100%;
}

main #students .action_buttons {
	margin-top: 10vw;
}

}


/*------------------------------------------------------------------------------

	終了表示

------------------------------------------------------------------------------*/

main #students.closed {
	padding-bottom: 100px;
}

main #students.closed .site_column {
	padding: 2em 6em 4em;
	border: 3px solid rgba(214,34,110,1);
}

main #students.closed .site_column .recruiting {
	position: relative;
	max-width: 640px;
	margin: 0 auto;
}

main #students.closed .site_column .recruiting::after {
	content: '';
	position: absolute;
	top: 0;
	right: -4.5em;
	rotate: 15deg;
	width: 220px;
	aspect-ratio: 220/75;
	background-image: url(../img/closed.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

main #students.closed .site_column .text {
	font-size: 1.125em;
}

main #students.closed .end,
main #students.closed .waiting {
	text-align: center;
	font-weight: bold;
}

main #students.closed .end {
	position: absolute;
	top: -1em;
	left: 50%;
	translate: -50% 0;
	margin-bottom: 0;
	padding: .5em 3em;
	background-color: rgba(214,34,110,1);
	border-radius: 10em;
	line-height: 1;
	color: #FFF;
}

main #students.closed .waiting {
	margin-bottom: 1em;
	color: rgba(214,34,110,1);
}

main #students.closed .thankyou {
	margin: 1.5em 0 1em;
	font-weight: bold;
	text-align: center;
	font-size: 2em;
}

main #students.closed .thankyou span {
	background: linear-gradient(transparent 70%,rgba(var(--yellow),1) 70%);
}

main #students.closed .fun {
	font-weight: bold;
}

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

main #students.closed {
	padding-bottom: 70px;
}

main #students.closed .site_column {
	padding: 2em 3em 3em;
}

main #students.closed .site_column .recruiting::after {
	right: -3.5em;
	width:180px;
}

}

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

main #students.closed {
	padding-bottom: 10vw;
}

main #students.closed .site_column {
	padding: 7vw 5vw 7vw;
}

main #students.closed .end {
	width: 85%;
	padding-right: 1em;
	padding-left: 1em;
}

main #students.closed .site_column .recruiting::after {
	top: 42vw;
	right: -7vw;
	width: 28vw;
}

main #students.closed .thankyou {
	margin: 1.5em 0 1em;
	font-size: 3.85vw;
}

}


/*------------------------------------------------------------------------------

	参加者の声

------------------------------------------------------------------------------*/

main #voice {
	position: relative;
	padding-bottom: 75px;
	background-color: rgba(var(--light-bg),1);
}

main #voice::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	width: 80px;
	aspect-ratio: 1/cos(60deg);
	clip-path: polygon(50% 100%,100% 0,0 0);
	background: #FFF;
}

main #voice h2 {
	padding: 100px 0 50px;
}

main #voice h2::after {
	content: 'Voice';
}

main #voice .slide_box {
	position: relative;
	padding: 2em 0;
	background-color: rgba(var(--main-color),.3);
}

main #voice .slide_box::before {
	content: '';
	display: block;
	position: absolute;
	top: -70px;
	left: 3em;
	width: 136px;
	aspect-ratio: 1/1;
	background-image: url(../img/slider_balloon.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

main #voice .slide_box .message {
	position: relative;
	margin: 0 1.125em;
	padding: 2em 3em;
	background-color: #FFF;
	box-shadow: 10px 10px 0px 0px rgba(0,0,0,.05);
}

main #voice .slide_box .message::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

main #voice .slide_box .message dl {
	display: flex;
	flex-direction: column;
}

main #voice .slide_box .message dt {
	order: 2;
	margin-bottom: .75em;
	line-height: 1.4;
	font-weight: bold;
	font-size: 1.5em;
	color: rgba(var(--light-bg),1);
}

main #voice .slide_box .message .comment {
	order: 3;
}

main #voice .slide_box .message .name {
	position: relative;
	order: 1;
	margin-bottom: 1.75em;
	padding-left: 10em;
	font-weight: bold;
	line-height: 1.4;
}

main #voice .slide_box .message .name span {
	display: block;
}

main #voice .slide_box .message .name::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 3em;
	width: 90px;
	aspect-ratio: 1/1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

main #voice .slide_box .slick-track {
	display: flex;
	padding: 2em 0 1.5em;
}

main #voice .slide_box .slick-slide {
	height: auto !important;
}

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

main #voice .slide_box .message {
	padding: 1.5em 2em;
}

}

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

main #voice .slide_box::before {
	top: -60px;
	width: 115px;
}

main #voice .slide_box .message .name {
	padding-left: 9em;
}

main #voice .slide_box .message .name::before {
	width: 70px;
}

}

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

main #voice {
	padding-bottom: 60px;
}

main #voice h2 {
	padding: 70px 0 30px;
}

main #voice::before {
	width: 60px;
}

main #voice .slide_box::before {
	top: -65px;
	width: 120px;
}

}

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

main #voice {
	padding-bottom: 10vw;
}

main #voice::before {
	width: 12vw;
}

main #voice h2 {
	padding: 12vw 0 7vw;
}

main #voice .slide_box::before {
	top: -8vw;
	left: 5vw;
	width: 20vw;
}

main #voice .iframe_content:last-child {
	margin-bottom: 0;
}

main #voice .slide_box .message {
	padding: 3vw 5vw;
}

main #voice .slide_box .message dt {
	font-size: 4vw;
}

main #voice .slide_box .message .comment {
	font-size: 3.2vw;
}

main #voice .slide_box .message .name {
	padding-left: 25vw;
	font-size: 2.8vw;
}

main #voice .slide_box .message .name::before {
	width: 13vw;
}

}


/*------------------------------------------------------------------------------

	ワークショップ

------------------------------------------------------------------------------*/

main #workshop {
	position: relative;
	padding: 100px 0 80px;
	background-color: rgba(var(--light-bg),.2);
}

main #workshop h2 {
	position: absolute;
	top: -.5em;
	left: 50%;
	translate: -50% 0;
	width: 100%;
	text-align: center;
	font-weight: bold;
	line-height: 1;
	font-size: 2.25em;
}

main #workshop h2 span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1em 0 1.5em;
}

main #workshop h2 span::before,
main #workshop h2 span::after {
	content: '';
	display: block;
	width: 1.125em;
	height: 2px;
	background-color: rgba(var(--main-color),1);
}

main #workshop h2 span::before {
	left: 0;
	rotate: 60deg;
}

main #workshop h2 span::after {
	right: 0;
	rotate: -60deg;
}

main #workshop .group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

main #workshop .group figure {
	display: block;
	position: relative;
	width: 31.7%;
	margin-top: 2.45%;
	margin-right: 2.45%;
	text-decoration: none;
}

main #workshop .group figure:nth-child(1),
main #workshop .group figure:nth-child(2),
main #workshop .group figure:nth-child(3) {
	margin-top: 0;
}

main #workshop .group figure:nth-child(3n) {
	margin-right: 0;
}

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

main #workshop {
	padding: 75px 0 	55px;
}

}

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

main #workshop {
	padding: 12vw 0 10vw;
}

main #workshop h2 {
	font-size: 4.5vw;
}

main #workshop .group figure,
main #workshop .group figure:nth-child(3),
main #workshop .group figure:nth-child(3n) {
	width: 48%;
	margin-top: 2%;
	margin-right: 2%;
}

main #workshop .group figure:nth-child(1)
main #workshop .group figure:nth-child(2) {
	margin-top: 0;
}

main #workshop .group figure:nth-child(2n) {
	margin-right: 0;
}

}


/*------------------------------------------------------------------------------

	プログラム内容

------------------------------------------------------------------------------*/

main #program {
	padding-bottom: 140px;
	background-color: rgba(var(--main-color),1);
}

main #program::before {
	background-color: #FFF;
}

main #program h2,
main #program li {
	color: #FFF;
}

main #program h2 {
	padding-bottom: 60px;
}

main #program h2::after {
	content: 'Program';
}

main #program .group .detail {
	width: 100%;
	aspect-ratio: 900/260;
	background-image: url(../img/detail.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

main #program .group .detail dl {
	font-size: 1px;
}


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

main #program {
	padding-bottom: 100px;
}

main #program h2 {
	padding-bottom: 40px;
}

}

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

main #program {
	padding-bottom: 15vw;
}

main #program h2 {
	padding-bottom: 10vw;
}

main #program .group .detail {
	aspect-ratio: 300/773;
	background-image: url(../img/detail_sp.svg);
}

}


/*------------------------------------------------------------------------------

	スケジュール

------------------------------------------------------------------------------*/

main #schedule {
	padding-bottom: 140px;
}

main #schedule h2 {
	padding-bottom: 100px;
}

main #schedule h2::after {
	content: 'Schedule';
}

main #schedule h3 {
	margin-bottom: 55px;
	padding-left: .25em;
	letter-spacing: .25em;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	font-size: 1.625em;
	color: rgba(var(--yellow),1);
}

main #schedule .flow {
	margin-bottom: 45px;
	aspect-ratio: 1040/1050;
	background-image: url(../img/flow.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

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

main #schedule h3 {
	margin-bottom: 35px;
}

main #schedule .flow {
	margin-bottom: 30px;
}
}

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

main #schedule {
	padding-bottom: 120px;
}

main #schedule h2 {
	padding-bottom: 80px;
}

}

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

main #schedule {
	padding-bottom: 25vw;
}

main #schedule h2 {
	padding-bottom: 12vw;
}

main #schedule h3 {
	margin-bottom: 4vw;
	font-size: 4vw;
}

main #schedule .flow {
	margin-bottom: 5vw;
	aspect-ratio: 400/1257;
	background-image: url(../img/flow_sp.svg);
}

}


/*------------------------------------------------------------------------------

	概要

------------------------------------------------------------------------------*/

main #outline {
	padding-bottom: 100px;
	background-color: rgba(var(--light-bg),1);
}

main #outline h2 {
	padding-bottom: 80px;
}

main #outline h2::after {
	content: 'Outline';
}

main #outline table th,
main #outline table td {
	padding: 1em 1.5em;
	border: 4px solid rgba(var(--light-bg),1);
	font-size: 1.125em;
}

main #outline table th {
	white-space: nowrap;
	background-color: rgba(var(--main-color),1);
	text-align: center;
	color: #FFF;
}

main #outline table td {
	background-color: rgba(255,255,255,.8);
}

main #outline .comments {
	margin-top: 2em;
	font-size: .875em;
}

main #outline .comments span {
	display: block;
}

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

main #outline .comments span {
	display: inline;
}

}

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

main #outline {
	padding-bottom: 80px;
}

main #outline h2 {
	padding-bottom: 55px;
}

}

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

main #outline {
	padding-bottom: 15vw;
}

main #outline h2 {
	padding-bottom: 10vw;
}

main #outline table th,
main #outline table td {
	padding: 1em 2vw;
	font-size: 2.5vw;
}

main #outline .comments {
	font-size: 2.5vw;
}

}

