@charset "utf-8";

/*
// common
///////////////////////////////////////////////////////////////*/

*{
	margin:0px;
	padding:0px;
}
html,body{
	width:100%;
	height: 100%;
}
img{
	width: 100%;
	height: auto;
}
a{
	transition: 0.3s;
}
a:hover{
	text-align: none;
}

/*
// Color
///////////////////////////////////////////////////////////////*/

:root{
	--c-white : #fff;
	--c-bg : #F0EEE4;
	--c-text : #333;
	--c-border :#ccc;

	--c-main: #FF6000;
	--c-accent : #000;

	--c-main-light-01 : #FFD4BA;

	--c-link: #FF6000;
}


/*
// font
///////////////////////////////////////////////////////////////*/

:root{
	--font-dela : "Dela Gothic One", serif;
}



/*
// html
///////////////////////////////////////////////////////////////*/
html{
	font-size: 16px;
}
@media all and (min-width:0px) and (max-width:960px) {
	html{
		font-size: 3.2vw;
	}
}

/*
// body
///////////////////////////////////////////////////////////////*/
body{
	font-family: 'Noto Sans JP',  sans-serif;
	color: var(--c-text);
	line-height: 2;
	background: var(--c-bg);
	overflow-x: hidden;
}
@media all and (min-width:0px) and (max-width:960px) {
}


/*
// wrap
///////////////////////////////////////////////////////////////*/
.wrapper{
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: relative;
}
.inner{
	width: 900px;
	margin: 0 auto;
	position: relative;
}
@media all and (min-width:0px) and (max-width:960px) {
	.wrapper{
		padding: 0 6vw;
	}
	.inner{
		width: 100%;
	}
}
@media all and (min-width:961px)  {
	.wrapper{
		padding: 0 6vw;
	}
}


/*
// header
///////////////////////////////////////////////////////////////*/
@media all and (min-width:0px) and (max-width:960px) {
}
@media all and (min-width:961px)  {
}


/*
// nav
///////////////////////////////////////////////////////////////*/

.nav__button{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 200;
	padding: 3rem;
	mix-blend-mode: exclusion;
	color: var(--c-white);
}
.nav__button .nav__button__hamburger{
	height: calc(1.5rem + 2px);
}
.nav__button .nav__button__hamburger span{
	position: relative;
	width: 6rem;
	height: 2px;
	background-color: var(--c-white);
	display: block;
	transition: 0.3s;
}
.nav__button .nav__button__hamburger span:nth-child(2){
	transform: translateY(0.75rem);
}
.nav__button .nav__button__hamburger span:nth-child(3){
	transform: translateY(1.5rem);
}
.nav__button.is-open .nav__button__hamburger span:nth-child(1),
.nav__button.is-open .nav__button__hamburger span:nth-child(3){
	width: 0;
}
.nav__button .nav__button__label{
	font-family: var(--font-dela);
	text-align: center;
	height: 1rem;
	margin-top: 0.5rem;
}
.nav__button .nav__button__label::before{
	content: 'MENU';
}
.nav__button.is-open .nav__button__label::before{
	content: 'CLOSE';
}
.nav__content{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 150;
	width: 100dvw;
	height: 100dvh;
	background-color: var(--c-bg);
	overflow-y: auto;
}
.nav__content__wrapper{
	display: flex;
	width: 100%;
	height: 100%;
}
.nav__content__left{
	background-image: url('../images/img_hamburger01.jpg');
	background-size: cover;
	background-position: center;
	width: 50%;
	position: relative;
}
.nav__content__left h1{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.nav__content__left h1 a img{
	width: 20vw;
	height: auto;
}
.nav__content__right{
	width: 50%;
	line-height: 1;
}
.nav__content__right a:hover{
	opacity: 0.75;
}
.nav__content__right .wrapper{
	padding-top: 3vw;
	padding-bottom: 3vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.navContent__menu--primary ul li + li{
	margin-top: 3rem;
}
.navContent__menu--primary ul li .primary{
	font-family: var(--font-dela);
	font-size: 2rem;
	color: var(--c-main);
}
.navContent__menu--primary .child{
	display: flex;
	flex-wrap: wrap;
	margin: 0.75rem -0.75rem -0.75rem -0.75rem;
	font-weight: 900;
	font-size: 1.1rem;
}
.navContent__menu--primary .child li{
	margin: 0.75rem;
}
.navContent__menu--secondary{
	margin-top: 5rem;
	padding-top: 5rem;
	border-top: 1px solid var(--c-border);
}
.navContent__menu--secondary ul{
	display: flex;
	flex-wrap: wrap;
	margin: -0.75rem;
}
.navContent__menu--secondary ul li{
	margin: 0.75rem;
}
.navContent__menu--secondary ul li a{
	display: flex;
	align-items: center;
}
.navContent__menu--secondary ul li a[target=_blank]::after{
	content:'';
	background-image: url('../images/icon_alter-333.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 0.8rem;
	height: 0.8rem;
	margin-left: 0.5rem;
}
.nav__application{
	position: fixed;
	right: -0.5rem;
	bottom: 10vh;
	z-index: 1;
	transition: 0.3s;
}
.nav__application:hover{
	right: 0;
}
.nav__application a{
	display: flex;
	padding: 2rem 2rem 2rem 1.5rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--c-white);
	gap: 0.75rem;
	line-height: 1;
	overflow: hidden;
	border-radius: 1rem 0 0 1rem;
	background-color: var(--c-main);
}
.nav__application a .icon{
	width: auto;
	height: 1.5rem;
}
.nav__application a .icon img{
	height: 100%;
	object-fit: cover;
}
.nav__application a .label{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.2em;
}
@media all and (min-width:0px) and (max-width:960px) {
	.nav__button{
		padding: 1.5rem;
	}
	.nav__button .nav__button__hamburger span{
		width: 5rem;
	}
	.nav__content__wrapper{
		flex-direction: column;
	}
	.nav__content__left,
	.nav__content__right{
		width: 100%;
	}
	.nav__content__left{
		height: 25vh;
		flex-shrink: 0;
	}
	.nav__content__left h1 a img{
		width: 30vw;
	}
	.nav__content__right .wrapper{
		padding-top: 10vw;
	}
	.navContent__menu--primary ul li + li{
		margin-top: 2.5rem;
	}
	.navContent__menu--primary .child{
		margin: 0.5rem -0.5rem -0.5rem -0.5rem;
	}
	.navContent__menu--primary .child li{
		margin: 0.5rem;
	}
	.navContent__menu--secondary{
		margin-top: 3rem;
		padding-top: 3rem;
	}
	.navContent__menu--secondary ul{
		margin: -0.5rem -0.75rem;
	}
	.navContent__menu--secondary ul li{
		margin: 0.5rem 0.75rem;
	}
	.nav__application a{
		padding: 1.75rem 1.75rem 1.75rem 1.25rem;
	}
	.nav__application a .label{
		font-size: 1.25rem;
	}
}

/*
// main
///////////////////////////////////////////////////////////////*/
main a{
	text-decoration: underline;
	color: var(--c-link);
}
main a:hover{
	text-decoration: none;
}
@media all and (min-width:0px) and (max-width:960px) {
}

/*
// .section
///////////////////////////////////////////////////////////////*/
main section{
	padding: 0 0 6rem 0;
}
.section__heading + .section__content{
	margin-top: 3rem;
}
.section__heading{
	font-family: var(--font-dela);
	line-height: 1;
	text-align: center;
}
@media all and (min-width:0px) and (max-width:960px) {
	main section{
		padding: 0 0 4rem 0;
	}
}

/*
// .contentBlock
///////////////////////////////////////////////////////////////*/
.contentBlock + .contentBlock{
	margin-top: 5rem;
}
.contentBlock__heading + .contentBlock__content{
	margin-top: 2rem;
}
@media all and (min-width:0px) and (max-width:960px) {
	.contentBlock__heading + .contentBlock__content{
		margin-top: 1.5rem;
	}
	.contentBlock + .contentBlock{
		margin-top: 4rem;
	}
}

/*
// .heading
///////////////////////////////////////////////////////////////*/
.heading--type01{
	line-height: 1;
}
.heading--type01 .label{
	color: var(--c-main);
	font-weight: 900;
}
.heading--type01 .label::before{
	content: '●';
	margin-right: 0.5rem;
}
.heading--type01 .title{
	font-family: var(--font-dela);
	font-size: 2.5rem;
	margin-top: 0.5rem;
}
.heading--type02{
	position: relative;
	color: var(--c-main);
	font-family: var(--font-dela);
	line-height: 1;
	text-align: center;
}
.heading--type02 .en{
	font-size: 16rem;
	width: 100%;
	overflow: hidden;
	opacity: 0.1;
}
.heading--type02 .en span{
	display: block;
	animation: loop 20s linear infinite;
	white-space: nowrap;
}
.heading--type02 h2{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 2rem;
	width: 100%;
}
@keyframes loop {
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-100%);
  }
}
@media all and (min-width:0px) and (max-width:960px) {
	.heading--type02 .en{
		font-size: 10rem;
	}
	.heading--type02 .en span{
		animation: loop 10s linear infinite;
	}
}

/*
// button
///////////////////////////////////////////////////////////////*/

.button{
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
	text-decoration: none;
}
.button.is-disabled{
	box-shadow: none;
}
.button:hover{
	box-shadow: none;
	transform: translateY(4px);
}
.button.is-disabled:hover{
	box-shadow: none;
	transform: translateY(0);
}

/*
// table
///////////////////////////////////////////////////////////////*/
.table--type01 table{
	width: 100%;
}
.table--type01 tr{
	border-top: 1px solid var(--c-border);
}
.table--type01 tr:last-child{
	border-bottom: 1px solid var(--c-border);
}
.table--type01 tr th,
.table--type01 tr td{
	padding: 1rem;
}
.table--type01 tr td + td{
	border-left: 1px dotted var(--c-border);
}
.table--type01 tr th{
	background-color: var(--c-bg);
	font-weight: 900;
	min-width: 10rem;
}
@media all and (min-width:0px) and (max-width:960px) {
	.table--type01{
		overflow-x: auto;
		white-space: nowrap;
	}
	.table--type01 tr th{
		min-width: 7rem;
	}
	.table--type01 tr th[rowspan] + td{
		width: 11rem;
	}
}


/*
// mv
///////////////////////////////////////////////////////////////*/
#mv{
	width: 100%;
	height: 35vw;
	background-image: url('../images/mv_01.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
#mv::after{
	content: '';
	width: 100%;
	height: 5vw;
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url('../images/img_line01.svg');
	background-size: cover;
}
@media all and (min-width:0px) and (max-width:960px) {
	#mv{
		height: 55vw;
	}
}



/*
// outline
///////////////////////////////////////////////////////////////*/
#outline{
	text-align: center;
	position: relative;
}
#outline::after{
	content: '';
	width: 100%;
	height: 5rem;
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url('../images/img_line02.svg');
	background-position: bottom;
	background-size: contain;
	background-repeat: no-repeat;
}
#outline .section__content{
	position: relative;
	top: -12vw;
	margin-bottom: -5vw;
}
#outline .heading{
	width: 35vw;
	height: auto;
	margin: auto;
}
#outline .heading h1 a{
	display: block;
}
#outline .date{
	font-size: 7vw;
	color:  var(--c-main);
	font-family: var(--font-dela);
	line-height: 1;
	margin-top: 2rem;
}
#outline .time{
	font-size: 5vw;
	color:  var(--c-main);
	font-family: var(--font-dela);
	line-height: 1;
	margin-top: 1rem;
	margin-bottom: 2rem;
}
#outline .lead{
	font-size: 1.25rem;
}
@media all and (min-width:0px) and (max-width:960px) {
	#outline .heading{
		width: 50vw;
	}
	#outline .date{
		font-size: 9vw;
	}
	#outline .lead{
		font-size: 1.05rem;
	}
}


/*
// timetable
///////////////////////////////////////////////////////////////*/
#about{
	background-color: var(--c-main-light-01);
	padding: 4rem 0 8rem 0;
}
#about .timetable__lead{
	text-align: center;
	font-size: 1.25rem;
}
#about .timetable__anchor{
	margin-top: 3rem;
}
#about .timetable__anchor ul li + li{
	margin-top: 1.5rem;
}
#about .timetable__anchor ul li a{
	display: flex;
	align-items: center;
	padding: 3rem;
	justify-content: space-between;
	line-height: 1;
	font-family: var(--font-dela);
	overflow: hidden;
	border-radius: 1rem;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	color: var(--c-white);
	transition: 0.3s;
}
#about .timetable__anchor ul li.timetable_01 a{
	background-image: url('../images/timetable_no1.jpg');
}
#about .timetable__anchor ul li.timetable_02 a{
	background-image: url('../images/timetable_no2.jpg');
}
#about .timetable__anchor ul li.timetable_03 a{
	background-image: url('../images/timetable_no3.jpg');
}
#about .timetable__anchor ul li a:hover{
	background-color: var(--c-main);
	background-blend-mode: multiply;
}
#about .timetable__anchor ul li a .label .number{
	font-size: 2rem;
}
#about .timetable__anchor ul li a .label .time{
	margin-top: 1rem;
}
#about .timetable__anchor ul li a .title{
	font-size: 2rem;
}
#about .timetableBlock{
	margin-top: 6rem;
}
#about .timetableBlock__item{
	background-color: var(--c-white);
	border-radius: 2rem;
	padding: 5rem;
}
#about .timetableBlock__item + .timetableBlock__item{
	margin-top: 5rem;
}
#about .timetableBlock__item .inner > * + *{
	margin-top: 2rem;
}
#about .timetableBlock__item .note{
	opacity: 0.8;
	font-size: 0.8rem;
}
#about .timetableBlock__item .note ul li{
	display: flex;
	line-height: 1.5;
}
#about .timetableBlock__item .note ul li + li{
	margin-top: 0.25rem;
}
#about .timetableBlock__item .note ul li::before{
	content: '※';
	margin-right: 0.5rem;
}
@media all and (min-width:0px) and (max-width:960px) {
	#about{
		padding: 2rem 0 4rem 0;
	}
	#about .timetable__lead{
		font-size: 1.1rem;
	}
	#about .timetable__anchor ul li a{
		flex-direction: column;
		align-items: flex-start;
		padding: 2rem 2.5rem;
		border-radius: 0.5rem;
	}
	#about .timetable__anchor ul li a .label{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		font-family: 'Noto Sans JP', sans-serif;
	}
	#about .timetable__anchor ul li a .label .number{
		font-size: 1rem;
	}
	#about .timetable__anchor ul li a .label .time{
		margin-top: 0;
	}
	#about .timetable__anchor ul li a .title{
		margin-top: 1rem;
		padding-top: 0.75rem;
		border-top: 1px dotted var(--c-white);
		width: 100%;
	}
	#about .timetableBlock{
		margin-top: 3rem;
	}
	#about .timetableBlock__item{
		border-radius: 1rem;
		padding: 3rem 2rem;
	}
	#about .timetableBlock__item + .timetableBlock__item{
		margin-top: 2rem;
	}
}


/*
// teacher
///////////////////////////////////////////////////////////////*/
#teacher{
	padding: 8rem 0 0 0;
}
#teacher .teacher__heading,
#teacher .teacher__profile{
	margin-top: 2rem;
}
#teacher .teacher__line{
	margin-top: 8rem;
	background-image: url('../images/img_line03.svg');
	background-position: center bottom;
	background-size: contain;
	background-repeat: no-repeat;
	height: 6rem;
	width: 100%;
}
@media all and (min-width:0px) and (max-width:960px) {
	#teacher{
		padding-top: 2rem;
	}
	#teacher .teacher__line{
		margin-top: 4rem;
		height: 5rem;
	}
}



/*
// application
///////////////////////////////////////////////////////////////*/
#application{
	padding: 8rem 0 0 0;
	background-color: var(--c-white);
}
#application .inner{
	position: relative;
	top: -10rem;
}
#application .section__heading .heading{
	color: var(--c-main);
}
#application .section__heading .heading span{
	opacity: 0.5;
}
#application .section__heading .heading h2{
	font-size: 3rem;
}
#application .application__form__heading{
	margin-top: 2rem;
}
#application .application__form__heading h4{
	font-size: 1.25rem;
	font-weight: 900;
}
#application .application_form__list{
	margin-top: 1rem;
}
#application .application_form__list ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -0.75rem;
}
#application .application_form__list ul li{
	width: calc( (100%/ 3 ) - 1.5rem );
	margin: 0.75rem;
}
#application .application_form__list ul li a{
	width: 100%;
	font-weight: 900;
	padding: 1.5rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--c-main);
	color: var(--c-white);
	border-radius: 0.5rem;
}
#application .application_form__list ul li a.is-disabled{
	background-color: #d9d9d9;
	color: #888;
	pointer-events: none;
}
#application .application_form__list ul li a[target=_blank]::after{
	content: '';
	width: 1rem;
	height: 1rem;
	background-image: url('../images/icon_alter-fff.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
#application .application_form__list ul li a.button.is-disabled[target=_blank]::after{
	background-image: url('../images/icon_alter-888.svg');
}
#application .application_notice__list{
	list-style-type: disc;
	margin-left: 1.5rem;
}
@media all and (min-width:0px) and (max-width:960px) {
	#application {
		padding-bottom: 4rem;
	}

	#application .inner{
		margin-bottom: -10rem;
	}
	#application .application_form__list ul{
		flex-direction: column;
		margin: -0.75rem 0;
	}
	#application .application_form__list ul li{
		width: 100%;
		margin:  0.75rem 0;
	}
}


/*
// RELATED
///////////////////////////////////////////////////////////////*/
#related {
	padding: 8rem 0;
}

#related .section__heading .heading span {
	opacity: 0.5;
}

#related .section__heading .heading h2 {
	font-size: 3rem;
}
#related .related__list ul{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
#related .related__list li a{
	display: flex;
	flex-direction: column;
	text-decoration: none;
	height: 100%;
	border: 2px solid transparent;
	transition: 0.3s;
}
#related .related__list li a.is-disabled{
	pointer-events: none;
}
#related .related__list li a .thumbnail{
	overflow: hidden;
	flex-shrink: 0;
}
#related .related__list li a .thumbnail img{
	transition: 0.3s;
}
#related .related__list li a .content{
	background-color: var(--c-white);
	padding: 2rem;
	flex-grow: 1;
}
#related .related__list li a .content .title{
	font-weight: 900;
	font-size: 1.5rem;
	line-height: 1;
}
#related .related__list li a .content .date{
	margin: 1rem 0;
	line-height: 1;
}
#related .related__list li a .content .description{
	color: var(--c-text);
	font-size: 0.8rem;
}
#related .related__list li a:hover{
	border-color: var(--c-main);
}
#related .related__list li a:hover .thumbnail img{
	transform: scale(1.1);
}
@media all and (min-width:0px) and (max-width:960px) {
	#related {
		padding: 4rem 0;
	}
	#related .related__list ul{
		grid-template-columns: 1fr;
	}
}


/*
// organization
///////////////////////////////////////////////////////////////*/
#organization{
	padding: 8rem 0 ;
	background-color: var(--c-white);
}
#organization .section__heading .heading span{
	opacity: 0.5;
}
#organization .section__heading .heading h2{
	font-size: 3rem;
}
#organization .organization__list ul{
	list-style: disc;
	margin-left: 1.5rem;
}
#organization .organization__table{
	margin-top: 2rem;
}
#organization .organization__table img{
	height: 2rem;
	width: auto;
}
#organization .sponsorList img + span{
	font-size: 0.8rem;
}
@media all and (min-width:0px) and (max-width:960px) {
	#organization{
		padding-top: 4rem;
	}
}


/*
// footer
///////////////////////////////////////////////////////////////*/
footer{
	background-color: var(--c-text);
	color: var(--c-white);
	padding: 4rem 0;
	text-align: center;
}
.footer__link ul{
	display: flex;
	justify-content: center;
	margin: -0.75rem;
	flex-wrap: wrap;
}
.footer__link ul li{
	margin: 0.75rem;
}
.footer__link ul li a{
	display: flex;
	align-items: center;
	color: var(--c-white);
}
.footer__link ul li a:hover{
	text-decoration: underline;
}
.footer__link ul li a[target=_blank]::after{
	content: '';
	width: 1rem;
	height: 1rem;
	background-image: url('../images/icon_alter-fff.svg');
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 0.5rem;
}
.footer__copyright{
	margin-top: 1.5rem;
	font-size: 0.8rem;
}
@media all and (min-width:0px) and (max-width:960px) {

}