@charset "UTF-8";


/*----------------------------------------------------
　↓　#hero
-----------------------------------------------------*/
#hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

#hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

#hero .hero-slider {
	width: 100%;
	height: 100vh;
	position: relative;
}

#hero .hero-slider .hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 2s ease-in-out;
}

#hero .hero-slider .hero-slide:first-child {
	opacity: 1;
}

#hero .hero-slider .hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#hero .hero-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	text-align: center;
}

#hero .hero-title h1 {
	font-size: 3.5em;
	font-weight: bold;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	letter-spacing: 0.1em;
	margin: 0;
	line-height: 1.3em;
}
#hero .hero-title h1 img{
    max-width: 100%;
    height: auto;
}

#hero .hero-title .hero-date {
	font-size: 1.5em;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	letter-spacing: 0.1em;
	margin: 20px 0 0;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
    #hero{
        padding-top: 70px;
    }
    #hero .hero-slider{
        width: 100%;
        height: 40vh;
        overflow: hidden;
    }
    #hero .hero-title{
        width: 90%;
        padding-top: 50px;
    }
	#hero .hero-title h1 {
		font-size: 2.5em;
	}
}

@media screen and (max-width: 640px) {
	#hero .hero-title h1 {
		font-size: 2em;
	}
	
	#hero .hero-title .hero-date {
		font-size: 1.2em;
		margin: 15px 0 0;
	}
}

#hero .scroll-button {
	position: absolute;
	right: 30px;
	bottom: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	z-index: 10;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	-ms-transition: 0.25s;
	transition: 0.25s;
}

#hero .scroll-button i {
	font-size: 2em;
	margin-bottom: 5px;
}

#hero .scroll-text {
	font-size: 0.7em;
	letter-spacing: 0.1em;
	text-transform: lowercase;
}

#hero .scroll-button:hover {
	color: #eb92a9;
	transform: translateY(5px);
}

@media screen and (max-width: 640px) {
	#hero .scroll-button {
		right: 20px;
		bottom: 20px;
	}

	#hero .scroll-button i {
		font-size: 1.5em;
		margin-bottom: 3px;
	}

	#hero .scroll-text {
		font-size: 0.6em;
	}
}



/*----------------------------------------------------
↓ #about
-----------------------------------------------------*/
#about {
	position: relative;
}

#about .about-main {
	position: relative;
	margin-bottom: 60px;
}

#about .about-main img {
	width: 100%;
	height: auto;
	display: block;
}

#about .about-text {
	position: absolute;
	bottom: 30px;
	left: 30px;
	padding: 35px;
	background-color: rgba(0, 0, 0, 0.6);
	max-width: 600px;
}

#about .about-text h2 {
	font-size: 1.8em;
	margin-bottom: 15px;
	letter-spacing: 0.1em;
}

#about .about-text p.sub {
	font-size: 1.2em;
	line-height: 2em;
	color: #eee;
}

#about .highlights {
	margin-top: 60px;
}

#about .highlight-item {
	position: relative;
	margin-bottom: 80px;
	display: flex;
	align-items: stretch;
	min-height: 400px;
}

#about .highlight-item:last-child {
	margin-bottom: 0;
}

#about .highlight-item img {
	width: 50%;
	height: 100%;
	object-fit: cover;
	flex-shrink: 0;
}

#about .highlight-item.highlight-left {
	flex-direction: row;
}

#about .highlight-item.highlight-right {
	flex-direction: row-reverse;
}

#about .highlight-text {
	width: 50%;
	padding: 40px;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}


#about .highlight-text h3 {
	font-size: 1.5em;
	margin-bottom: 15px;
	letter-spacing: 0.05em;
	color: #fff;
}

#about .about-slider {
	margin-top: 60px;
	margin-bottom: 60px;
}

#about .about-slider .slick-slide {
	width: 100%;
	position: relative;
}

#about .about-slider .slick-slide img {
	width: 100%;
	height: auto;
	display: block;
}

#about .about-slider .slide-caption {
	color: #fff;
	font-size: 1.1em;
	line-height: 1.8em;
	text-align: center;
	padding: 30px 40px;
	background-color: rgba(0, 0, 0, 0.7);
	margin: 0;
}

@media screen and (max-width: 640px) {
	#about .about-slider .slide-caption {
		font-size: 1em;
		padding: 20px;
		line-height: 1.6em;
	}
}

#about .about-slider .slick-prev,
#about .about-slider .slick-next {
	z-index: 10;
}

#about .about-slider .slick-prev {
	left: 20px;
}

#about .about-slider .slick-next {
	right: 20px;
}

#about .about-slider ul.slick-dots {
	bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
#about .about-slider ul.slick-dots li button{
    border-radius: 50%;
    width: 2em;
    height: 2em;
    text-align: center;
    line-height: 2em;
    border: 0;
    background: #FFF;
    cursor: pointer;
}
#about .about-slider ul.slick-dots li.slick-active button{
    background: #DD7B7C;
    color: #FFF;;
}

#about .chikaken-section {
	margin-top: 30px;
	margin-bottom: 30px;
}

#about .chikaken-content {
	display: flex;
	align-items: stretch;
	gap: 20px;
}

#about .chikaken-text {
	flex: 1;
	padding: 0px 40px;
	background-color: rgba(0, 0, 0, 0.7);
}

#about .chikaken-text h3 {
	font-size: 1.5em;
	margin-bottom: 15px;
	letter-spacing: 0.05em;
	color: #fff;
}

#about .chikaken-text p {
	line-height: 2em;
	color: #eee;
	margin-bottom: 20px;
}

#about .chikaken-text .chikaken-note {
	font-size: 0.9em;
	color: #999;
	font-style: italic;
}

#about .chikaken-image {
	flex: 1;
}

#about .chikaken-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#about .volunteer-section {
	margin-top: 60px;
}

#about .volunteer-content {
	padding: 0px 40px;
	background-color: rgba(0, 0, 0, 0.7);
    margin-top: 20px;
}

#about .volunteer-content h3 {
	font-size: 1.5em;
	margin-bottom: 30px;
	letter-spacing: 0.05em;
	color: #fff;
}

#about .volunteer-flow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	gap: 20px;
}

#about .volunteer-step {
	flex: 1;
	text-align: center;
}

#about .volunteer-step img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 15px;
	border: 1px solid #333;
}

#about .volunteer-step p {
	font-size: 1em;
	line-height: 1.6em;
	color: #eee;
	margin: 0;
}
#about .volunteer-step strong{
    font-weight: bold;
}

#about .volunteer-arrow {
	font-size: 2em;
	color: #eb92a9;
	flex-shrink: 0;
}

#about .volunteer-description {
	line-height: 2em;
	color: #eee;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	#about .chikaken-content {
		flex-direction: column;
	}

	#about .chikaken-image {
		height: 300px;
	}
    #about .about-slider ul.slick-dots {
        bottom: -10px;
    }
    #about .volunteer-flow {
        gap: 5px;
    }
        #about .volunteer-section {
        margin-top: 0px;
    }
}

#about .highlight-text p {
	line-height: 2em;
	color: #eee;
	margin-bottom: 20px;
}

#about .volunteer-link {
	margin: 20px 0 0;
}

#about .volunteer-link a {
	color: #eb92a9;
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
}

#about .volunteer-link a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 850px) {
	#about .about-text {
		position: relative;
		bottom: 0;
		left: 0;
		padding: 30px;
		box-sizing: border-box;
		max-width: 100%;
	}
}

@media screen and (max-width: 640px) {
	#about .about-text {
		padding: 20px;
	}

	#about .about-text h2 {
		font-size: 1.4em;
	}

	#about .about-text p.sub {
		font-size: 1.1em;
		line-height: 1.8em;
		border-bottom: 1px dotted #333;
		margin-bottom: 10px;
	}

	#about .highlight-item {
		margin-bottom: 50px;
		flex-direction: column !important;
		min-height: auto;
	}

	#about .highlight-item img {
		width: 100%;
		height: 300px;
	}

	#about .highlight-text {
		width: 100%;
		padding: 30px 20px;
	}


	#about .highlight-text h3 {
		font-size: 1.3em;
	}
}



/*----------------------------------------------------
↓ #outline
-----------------------------------------------------*/
#outline {
	text-align: center;
}

#outline .outline-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
    flex-direction: column;
}

#outline .outline-item {
	flex: 1;
	min-width: 250px;
	/*background-color: #479b57;*/
	border: 1px solid #c2992e;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
#outline .outline-item p{
    padding: 0 30px 0 30px;
}
#outline .outline-item p:last-child{
    padding-bottom: 30px;
}
#outline .outline-item h3{
	padding: 30px 30px 0 30px;
    
}
#outline .outline-item-wide {
	flex: 100%;
	min-width: 100%;
}

#outline .outline-item h3 {
	font-size: 1.3em;
	margin-bottom: 15px;
	color: #fff;
	letter-spacing: 0.05em;
    font-weight: bold;
}

#outline .outline-item p {
	line-height: 2em;
	color: #fff;
	text-align: center;
	word-break: keep-all;
	overflow-wrap: break-word;
}

#outline .outline-item a {
	color: #fff;
	text-decoration: underline;
}

#outline .admission-table {
	width: 97%;
	border-collapse: collapse;
    margin: 0 auto 15px;
	margin-bottom: 15px;
}

#outline .admission-table th,
#outline .admission-table td {
	padding: 10px;
	border: 1px solid #c2992e;
	text-align: center;
	color: #fff;
}

#outline .admission-table th {
	background-color: rgba(0, 0, 0, 0.2);
	font-weight: bold;
}

#outline .admission-note {
	font-size: 0.9em;
	margin-top: 10px;
	text-align: left;
}

#outline .outline-item .btn-outline {
	margin-top: auto;
	padding-top: 20px;
}

#outline .hanabi-banner {
	margin-top: 30px;
	width: 100%;
}

#outline .hanabi-banner img {
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (max-width: 768px) {
	#outline .outline-content {
		flex-direction: column;
	}

	#outline .outline-item {
		min-width: 100%;
        text-align: center;
	}
	#outline .outline-item-wide {
		flex: 100%;
	}
	
	#outline .admission-table {
		font-size: 0.9em;
	}
	
	#outline .admission-table th,
	#outline .admission-table td {
		padding: 8px 5px;
	}
}



/*----------------------------------------------------
↓ #access
-----------------------------------------------------*/
#access {
	text-align: center;
}

#access .access-content {
	text-align: left;
    display: flex;
    flex-wrap: wrap;
}

#access .course-map-top {
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
	margin-bottom: 30px;
}

#access .course-map-top h3 {
	font-size: 1.5em;
	margin-bottom: 15px;
	color: #eb92a9;
	letter-spacing: 0.05em;
}

#access .access-itemWrap{
    width: 40%;
    padding: 15px;
    box-sizing: border-box;
}
#access .access-imageWrap{
    width: 60%;
    padding: 15px;
    box-sizing: border-box;
}
#access .access-item {
	margin-bottom: 40px;
}

#access .access-item h3 {
	font-size: 1.5em;
	margin-bottom: 15px;
	color: #eb92a9;
	letter-spacing: 0.05em;
}

#access .access-item ul li a {
	color: #eb92a9;
	text-decoration: underline;
}

#access .access-item ul li a:hover {
	color: #fff;
}

#access .course-map {
	margin-top: 20px;
}

#access .course-map img {
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid #333;
}

#access .access-item ul {
	list-style: disc;
	margin-left: 20px;
	line-height: 2em;
	color: #ccc;
}

#access .access-item p {
	line-height: 2em;
	color: #ccc;
}

#access .map-container {
	margin-top: 40px;
}

#access .map-container iframe {
	width: 100%;
	height: 550px;
	border: 1px solid #333;
}

#access .map-link {
	text-align: center;
	margin-top: 15px;
}

#access .map-link a {
	color: #eb92a9;
	text-decoration: none;
}

#access .map-link a:hover {
	text-decoration: underline;
}

#access .map-note {
	text-align: center;
	margin-top: 10px;
	font-size: 0.9em;
	color: #999;
}
@media screen and (max-width: 768px) {
    #access .access-content {
        display: block;
    }
    #access .course-map-top,
    #access .access-itemWrap,
    #access .access-imageWrap{
        width: 100%;
    }
    
    #about .volunteer-flow {
        flex-direction: column;
    }
    
    #about .volunteer-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
@media screen and (max-width: 640px) {
}



/*----------------------------------------------------
↓ #ticket
-----------------------------------------------------*/
#ticket {
	text-align: center;
}

#ticket .ticket-content {
	padding: 40px 0;
}

#ticket .ticket-content p {
	line-height: 2em;
	color: #ccc;
	margin-bottom: 30px;
}

#ticket .contact-info {
	margin-top: 40px;
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid #333;
}

#ticket .contact-info h3 {
	font-size: 1.5em;
	margin-bottom: 20px;
	color: #eb92a9;
	letter-spacing: 0.05em;
}

#ticket .contact-info p {
	margin-bottom: 10px;
}

#ticket .sns-icons {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

#ticket .sns-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

#ticket .sns-icons a img {
	width: 24px;
	height: 24px;
	display: block;
}

#ticket .sns-icons a:hover {
	background-color: #eb92a9;
	border-color: #eb92a9;
	transform: translateY(-3px);
}



/*----------------------------------------------------
↓ #volunteer
-----------------------------------------------------*/
#volunteer {
	text-align: center;
    background: url("../../img/volunteer_bg.jpg") no-repeat right 0 top 0, url("../../img/volunteer_bg2.jpg") no-repeat left 0 top 40%;
    background-size: 60% auto, 60% auto;
}

#volunteer .volunteer-content {
	margin-bottom: 60px;
}

#volunteer h2 {
	font-size: 1.8em;
	font-family: "游明朝", "YuMincho", serif;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}

#volunteer p.sub {
	font-size: 1.2em;
	line-height: 2em;
	color: #ccc;
}

#volunteer .workshop-info {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 40px;
	margin-bottom: 60px;
	border: 1px solid #333;
	text-align: left;
}

#volunteer .workshop-info h3 {
	font-size: 1.5em;
	font-family: "游明朝", "YuMincho", serif;
	margin-bottom: 15px;
	color: #eb92a9;
	letter-spacing: 0.05em;
}

#volunteer .workshop-sub {
	font-size: 1.1em;
	font-weight: bold;
	color: #fff;
	margin-bottom: 15px;
}

#volunteer .workshop-info p {
	line-height: 2em;
	color: #ccc;
}

#volunteer .schedule {
	margin-bottom: 60px;
	text-align: left;
}

#volunteer .schedule h3 {
	font-size: 1.5em;
	font-family: "游明朝", "YuMincho", serif;
	margin-bottom: 30px;
	color: #eb92a9;
	letter-spacing: 0.05em;
	text-align: center;
}

#volunteer .schedule-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}

#volunteer .schedule-table tr {
	border-bottom: 1px solid #333;
}

#volunteer .schedule-table th {
	width: 120px;
	padding: 15px;
	text-align: left;
	vertical-align: top;
	color: #eb92a9;
	font-weight: bold;
}

#volunteer .schedule-table td {
	padding: 15px;
	line-height: 2em;
	color: #ccc;
}

#volunteer .volunteer-details {
	text-align: left;
	margin-bottom: 60px;
}

#volunteer .detail-item {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid #333;
}

#volunteer .detail-item:last-child {
	border-bottom: none;
}

#volunteer .detail-item h3 {
	font-size: 1.3em;
	font-family: "游明朝", "YuMincho", serif;
	margin-bottom: 15px;
	color: #eb92a9;
	letter-spacing: 0.05em;
}

#volunteer .detail-item p {
	line-height: 2em;
	color: #ccc;
	margin-bottom: 15px;
}

#volunteer .detail-item ul {
	list-style: disc;
	margin-left: 20px;
	line-height: 2em;
	color: #ccc;
}

#volunteer .detail-item ul li {
	margin-bottom: 10px;
}

#volunteer .line-link {
	margin-top: 20px;
	text-align: center;
}

#volunteer .line-link a {
	display: inline-block;
	text-decoration: none;
	color: #fff;
}

#volunteer .line-link img {
	width: 200px;
	height: auto;
	margin-bottom: 15px;
}

#volunteer .line-link p {
	color: #eb92a9;
	font-weight: bold;
}

#volunteer .back-link {
	text-align: center;
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid #333;
}

#volunteer .back-link a {
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #fff;
	color: #fff;
	text-decoration: none;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	-ms-transition: 0.25s;
	transition: 0.25s;
}

#volunteer .back-link a:hover {
	border: 1px solid #eb92a9;
	color: #eb92a9;
}

@media screen and (max-width: 640px) {
	#volunteer h2 {
		font-size: 1.4em;
	}

	#volunteer p.sub {
		font-size: 1.1em;
		line-height: 1.8em;
	}

	#volunteer .workshop-info {
		padding: 20px;
	}

	#volunteer .schedule-table th,
	#volunteer .schedule-table td {
		padding: 10px 5px;
		font-size: 0.9em;
	}

	#volunteer .schedule-table th {
		width: 80px;
	}
}