@charset "UTF-8";
/* CSS Document */
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}
body {
	margin: 0;
	padding: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	text-align: center;
}
p {
	margin:0;
	padding: 0;
	overflow-wrap: break-word;
}
a {
	color: #000;
	text-decoration: none;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
ul,ol {
	list-style-type: none;
	padding:0;
	margin:0;
}
/* Common */
.cont {
	width:94%;
	max-width:1200px;
	margin:0 auto;
}
.center {
	display: block;
	margin: 0 auto 2rem;
}
.cl_pink { color:#df8bb1; }
.cl_purple { color:#786ca9; }
.cl_green { color:#459b95; }
.cl_orange { color:#e59b37; }
.cl_blue{ color:#4dabe5; }
.cl_yellow{color:#f9e24c; }
.bg_pink { background-color:#df8bb1; }
.bg_purple { background-color:#786ca9; }
.bg_green { background-color:#459b95; }
.bg_orange { background-color:#e59b37; }
.bg_blue{ background-color:#4dabe5; }
.br30 {
	border-radius: 3rem;
}
.cont h2 {
	font-size: 7rem;
	line-height: 1.2;
	margin-bottom: 0;
}
.cont h2+small {
	font-size: 2rem;
	display: block;
	text-align: center;
}
.pc_none {
	display: none;
}
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 1200ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
@media screen and (max-width: 1200px) {
	html {
		font-size: 48.5%;
	}
}
@media screen and (max-width: 640px) {
	.pc_none {
		display: inline;
	}
}
@media screen and (max-width: 480px) {
	html {
		font-size: 54.5%;
	}
	.cont h2 {
		font-size: 5.5rem;
	}
}

/* ----------------------------- */
/* ナビゲーション
/* ----------------------------- */
header {
	padding:2rem 3rem;
}
.top_logo {
	width: 50%;
	max-width: 700px;
}
#head_logo {
	position: fixed;
	top: -80px;
	left: 1rem;
	z-index: 9;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
	width: 45%;
	max-width: 320px;
}
#head_logo.is-show {
	top: 1.5rem;
	visibility: visible;
}
.navi {
	position: fixed;
	top: 1.5rem;
	right: 1.5rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	z-index: 10;
}
.navi li {
	font-size: 1.8rem;
	padding: 0.5rem;
	margin-left: 1rem;
}
.navi li:nth-child(-n+4) a {
	padding-bottom: 5px;
	position: relative;
}
.navi li:nth-child(-n+4) a:before {
	background: #000;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.navi li:nth-child(-n+4) a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.navi li:last-child a {
	display: block;
	font-size: 2rem;
	position: static;
	padding: 0.5rem 2rem;
	color: #fff;
	background: #e59b37;
	border-radius: 4px;
	transform: scale(1);
	transition: all 0.4s;
}
.navi li:last-child a:hover {
	transform: scale(1.1);
	transition: all 0.4s;
}
.sp_menu {
	display: none;
}
.hamburger-overlay {
  position: fixed;
  top: 0.6rem;
  left: 0;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}
.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
	transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
	opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
	transform: translateY(-9px) rotate(45deg);

}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #000;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}
.nav-overlay__link:hover {
  color: #4a90e2;
}

@media screen and (max-width: 948px) {
	.top_logo {
		width: 40%;
	}
}
@media screen and (max-width: 768px) {
	header {
		padding:1rem 1.5rem;
	}
	.top_logo {
		width: 90%;
		display: block;
		margin: 5rem auto 3rem;
	}
	#head_logo {
		display: none;
	}
	.sp_menu {
		display: block;
	}
	.navi li:nth-child(-n+6) {
		display: none;
	}
}
@media screen and (max-width: 480px) {
	.top_logo {
		margin-top: 6rem;
		margin-bottom: 1rem;
	}
}

/* ----------------------------- */
/* メインビジュアル
/* ----------------------------- */
.loop_wrap {
  display: flex;
  width: 100vw;
  height: 45vw;
  overflow: hidden;
}
.loop_wrap img {
  width: auto;
  height: 100%;
}
.loop_wrap img:first-child {
  animation: loop 50s -25s linear infinite;
}

.loop_wrap img:last-child {
  animation: loop2 50s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

#mv {
	position: relative;
	padding-top: 5rem;
}
.top_copy {
	width:40%;
	max-width: 360px;
	position: absolute;
	top:2rem;
	left:3rem;
    animation-name: fadeIn500ms;
    animation-delay: 500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(50px);
    opacity: 0;
}
@keyframes fadeIn500ms {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.top_point {
	width:28%;
	max-width: 400px;
	min-width: 300px;
	position: absolute;
	top:-4rem;
	right:3rem;
    animation-name: fadeIn1s;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}
@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@media screen and (max-width: 768px) {
	.loop_wrap {
		height: 60vw;
	}
	.top_copy {
		top:0;
		left:3rem;
	}	
	.top_point {
		top:-2rem;
		width:38%;
		min-width: 170px;
	}
}
@media screen and (max-width: 480px) {
	.loop_wrap {
		height: 90vw;
	}
	.top_copy {
		width:45%;
		top:2rem;
		left:2rem;
	}
	.top_point {
		top:0;
		right:1rem;
	}
}

/* ----------------------------- */
/* ABOUT
/* ----------------------------- */
.about {
	margin-bottom: 12rem;
}
.about_title {
	width: 65%;
	max-width: 450px;
}
.about_lead {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}
.about_lead p {
	font-size: 2rem;
	display: inline-block;
}
.about_button {
	position: relative;
	width: 300px;
	padding: 1.75rem 0;
	background: #e0e7eb;
	border-radius: 10px;
	font-size: 2.2rem;
	cursor: pointer;
	line-height: 1;
	transition: 0.5s;
}
.about_button:hover {
	opacity: 0.6;
}
.about_button span {
	padding-left:35px;	
}
summary.about_button::-webkit-details-marker {
  display:none;
}
.about_button:before {
	content: "●";
	font-size: 1rem;
	position: absolute;
	top: calc(50% - 0.5em);
	left: 20px;
	line-height: 1;
	pointer-events: none;
}
.about_button:after {
	content: "+";
	position: absolute;
	top: calc(50% - 0.7em);
	right: 10px;
	line-height: 1;
	pointer-events: none;
	background: #fff;
	padding:5px;
	border-radius: 4px;
}
.about_detail::details-content {
  opacity: 0;
  block-size: 0;
  transition: .3s;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
  line-height: 1.6em;
}
.about_detail .about_content {
  padding: 0 2em 0 3em;
}
.about_detail .about_content > *:first-of-type {
  margin-top: 0;
}
.about_detail .about_content > *:last-of-type {
  margin-bottom: 0;
}
.about_detail[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
}
.about_detail[open] .about_content {
  padding: 1.4em 2em 1.4em 3em;
}
.about_detail[open] .about_button:after {
  content: "−";
}

.about_contents div.center {
	max-width: 1000px;
	margin-top: 5rem;
	font-size: 1.8rem;
	line-height: 2;
	padding: 6rem 8rem;
	background-color: #f3f5f7;
	border-radius: 12px;
	background-image: url(assets/img/about_logo_mark.svg);
	background-size: 30%;
	background-repeat: no-repeat;
	background-position: bottom 6rem right 6rem;
	box-sizing: border-box;
}
.about_logo {
	width:75%;
	max-width: 450px;
	margin-bottom: 3rem;
}
.about_contents div div {
	display: flex;
	justify-content: center;
}
.about_contents div div b {
	background: #fff;
	display: inline-block;
	padding: 0 2rem;
}
.about_contents div div b.tomo1 {
	font-size: 3.6rem;
	line-height: 1.4;
	margin-bottom: 1rem;
}
.about_contents div div b.tomo2 {
	font-size: 2.4rem;
	line-height: 1.8;
	margin-bottom: 4.5rem;
	text-align: center;
}
.about_contents div p {
	margin-bottom: 2rem;	
}
.about_contents div p:last-child {
	margin-bottom: 0;	
}
@media screen and (max-width: 480px) {
	.about_lead p {
    	/*font-size: 1.8rem;*/
	}
	.about_contents div.center {
		/*font-size: 1.6rem;*/
		padding: 3rem 2rem;
		background-size: 50%;
	}
	.about_contents div div b.tomo2 {
		line-height: 1.4;
		margin-bottom: 2rem;
	}
	
}

/* ----------------------------- */
/* ５つの壁
/* ----------------------------- */
.wall {
	background: #ebe9f2;
	padding: 5rem;
	box-sizing:border-box;
	margin-bottom: 5rem;
}
.wall_title_wrap {
	position: relative;
	display: flex;
	justify-content: center;
}
.wall_title {
	width:90%;
	max-width:630px;
	position: absolute;
	top:-8rem;
}
.wall_contents {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 3.5rem;
}
.wall_contents li {
	background:#fff;
	padding: 2rem;
	border-radius: 10px;
	width: 19%;
	box-sizing: border-box;
}
.wall_contents li .wall_icon_wrap div {
	display: flex;
	height: 90px;
}
.wall_contents li .wall_icon_wrap img {
	width: 30%;	
	margin-bottom: 1rem;
}
.wall_contents li:nth-child(3)  .wall_icon_wrap img,
.wall_contents li:nth-child(4)  .wall_icon_wrap img {
	width: 40%;
}
.wall_contents li:nth-child(5)  .wall_icon_wrap img{
	width: 35%;	
}
.wall_contents li .wall_icon_wrap b {
	display: block;
	text-align: center;
	font-size: 2rem;
	margin-bottom: 1rem;
}
.wall_contents li .wall_txt_wrap p {
	font-size: 1.4rem;
	line-height: 1.4;
	margin-bottom: 1rem;
	border-left: solid 3px #786ca9;
	padding-left: 8px;
}
.wall_contents li .wall_txt_wrap p:last-child {
	margin-bottom: 0;	
}
.wall_arrow {
	width:20%;
	max-width: 128px;
}
@media screen and (max-width: 1200px) {
	.wall_contents {
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-top:5rem;
	}
	.wall_contents li {
		width: 32.25%;
		margin-right: 1.5%;
	}
	.wall_contents li:nth-child(3n) {
		margin-right: 0;
	}
	.wall_contents li:nth-child(-n+3) {
		margin-bottom: 1.5rem;	
	}
}
@media screen and (max-width: 640px) {
	.wall {
		padding: 3rem;	
	}
	.wall_contents {
		margin-top:3rem;
	}
	.wall_contents li {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin-right: 0;
	}
	.wall_contents li .wall_icon_wrap {
		width: 30%;
	}
	.wall_contents li .wall_txt_wrap {
		width: 65%;
	}
	.wall_contents li .wall_icon_wrap div {
		height: inherit;
	}
	.wall_contents li .wall_txt_wrap p {
		font-size: 1.6rem;
	}
	.wall_contents li:nth-child(3n) {
		margin-right: 0;
	}
	.wall_contents li:nth-child(2n) {
		margin-right: 0;
	}
	.wall_contents li:nth-child(-n+4) {
		margin-bottom: 1.5rem;	
	}
}
@media screen and (max-width: 480px) {
	.wall {
        padding: 2rem;
    }
	.wall_title {
		top: -6rem;
	}
}

/* ----------------------------- */
/* プログラム
/* ----------------------------- */
.program {
	margin-top:3rem;
	margin-bottom: 7.5rem;
}
.program_title {
	font-size: 3.6rem;
	margin-bottom: 0.5rem;
	color: #3e3a39;
	text-align: center;
}
.program_title span b {
	font-size: 5.8rem;
}
.program_title+p {
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 2rem;
} 
.program_wrap {
	background:#f7e1c3;
	padding: 5rem;
}
.program_detail {
	background: #fff;
	padding: 5rem;
	border-radius: 2rem;
	margin-bottom: 5rem;
}
.program_detail.day5 {
	margin-bottom: 0;	
}
.program_detail_top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.program_detail_top_wrap {
	width: 76%;
}
.program_detail_top_date_wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2.2rem;
}
.program_detail_top_icon {
	width: 20%;
}
.program_detail_top_date_wrap b {
	font-size: 18rem;
	line-height: 0.5;
}
.program_detail_top_datetime {
	width: 86%;
}
.program_detail_top_date {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom:1.2rem;
}
.program_detail_top_date_day {
	font-size: 3.2rem;
	margin-right: 1rem;
	line-height: 0;
}
.program_detail_top_date_day .md {
	font-size: 6.4rem;
	margin-right: 5px;
}
.program_detail_top_date_time {
	font-size: 2.2rem;
	line-height: 1.2;
}
.program_detail_top_title {
	font-size: 3rem;
	padding: 0.7rem;
	padding-left: 3rem;
	border-radius: 1.5rem;
	color: #fff;
}
.program_detail_top_title span {
	font-size: 2.2rem;
}
.program_detail_top_theme {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: 1.8rem;
	margin-bottom: 1.5rem;
}
.day1 .program_detail_top_theme {
	border-bottom: solid 2px #4dabe5;
}
.day2-4 .program_detail_top_theme {
	border-bottom: solid 2px #459b95;
}

.program_detail_top_theme span {
	font-size: 2.2rem;
}
.program_detail_top_theme_txt {
	font-size: 1.8rem;
	line-height: 1.8;
	font-weight: 400;
	margin-bottom: 3rem;
}

/* ココが学べる */
.program_point {
	margin-bottom: 3rem;
}
.program_point b {
	font-size: 2.4rem;
	padding-left: 1.8rem;
	position: relative;
	display: block;
	margin-bottom: 1rem;
}
.program_point b:before {
	content: "●";
	font-size: 1.4rem;
	position: absolute;
	top: calc(50% - 0.5em);
	left: 0;
	line-height: 1;
}
.day1 .program_point b:before {
	color: #4dabe5;
}
.day2-4 .program_point b:before {
	color: #459b95;
}
.day5 .program_point b:before {
	color: #df8bb1;
}
.program_point ul {
	display: flex;
}
.program_point ul li {
	color: #fff;
	display: inline-block;
	padding: 0.5rem 2rem;
	font-size: 1.8rem;
	margin-right: 10px;
	border-radius: 1.8rem;
}

/* 講師紹介 */
.program_teacher {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 5rem;
	box-sizing: border-box;
	border-radius: 1.5rem;
	margin-bottom: 4.5rem;
}
.day1 .program_teacher {
	background: #e4f2fb;
}
.day2-4 .program_teacher {
	background: #e3f0ef;
}
.program_teacher_detail {
	width: 75%;
}
.program_teacher_photo {
	order: 2;
	width: 22%;
}
.program_teacher_name {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}
.program_teacher_name b {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 1rem;
	width: 6rem;
	height: 6rem;
	border-radius: 3rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 400;
}
.program_teacher_name p {
	font-size: 1.6rem;
	line-height: 1.3;
}
.program_teacher_name p span {
	font-size: 2.4rem;
}
.program_teacher_profile {
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1.8;
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
}
.day1 .program_teacher_profile {
	border-bottom: solid 1px #4dabe5;
}
.day2-4 .program_teacher_profile {
	border-bottom: solid 1px #459b95;
}
.program_teacher_comment_title {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}
.program_teacher_comment_title img {
	width: 16%;
	margin-right: 1rem;
}
.program_teacher_comment_title span {
	font-size: 1.8rem;
}
.program_teacher_comment {
	background: #fff;
	padding: 2rem 3rem;
	font-size: 1.6rem;
	line-height: 1.6;
	border-radius: 2rem;
}

/* タイムスケジュール */
.program_timeschedule_title {
	font-size: 2rem;
	margin-bottom: 1rem;
}
.program_timeschedule ul li {
	position: relative;
}
.program_timeschedule_contents_wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 2rem 0;
}
.program_timeschedule ul li:last-child .program_timeschedule_contents_wrap {
	padding-bottom: 0;	
}
.day1 .program_timeschedule ul li {
	border-bottom: dashed 1px #4dabe5;
}
.day2-4 .program_timeschedule ul li {
	border-bottom: dashed 1px #459b95;
}
.day5 .program_timeschedule ul li {
	border-bottom: dashed 1px #df8bb1;
}
.program_timeschedule ul li:last-child {
	border-bottom: 0;	
}
.program_timeschedule_time {
	width: 15%;
	font-size: 2.2rem;
	letter-spacing: 0.05em;
}
.program_timeschedule_contents {
	width: 83%;
}
.program_timeschedule_index {
	font-size: 2.2rem;
	margin-bottom: 1rem;
}
.program_timeschedule_index span {
	font-size: 1.6rem;
	margin-right: 1rem;
}
.program_timeschedule_exp {
	font-size: 1.4rem;
	line-height: 1.6;
	font-weight: 400;
}
.day1 .program_timeschedule li:first-child .program_timeschedule_exp,
.day1 .program_timeschedule li:last-child .program_timeschedule_exp,
.day5 .program_timeschedule li:first-child .program_timeschedule_exp {
	width: 70%;
}
.program1_qa {
	width: 100%;
	margin-top: 1rem;
}
.freetime p {
	padding-left: 7.5rem;
}
.day1 .freetime {
	background: url(assets/img/program1_ft.svg) no-repeat top left;
	background-size: 6rem 6rem;
}
.day2-4 .freetime {
	background: url(assets/img/program2-4_ft.svg) no-repeat top left;
	background-size: 6rem 6rem;
}
.day5 .freetime {
	background: url(assets/img/program5_ft.svg) no-repeat top left;
	background-size: 6rem 6rem;
}
.program_timeschedule_image {
	width: 20%;
	padding-left: 2rem;
	background: #fff;
	position: absolute;
	top: 2rem;
	right: 0;
}
.day5 .program_timeschedule li:first-child .program_timeschedule_image {
	top: 4rem;
}
.program_timeschedule_image img {
	width: 100%;	
}
.soudankai {
	background: #fdf6c9;
	padding: 3rem;
	border-radius: 1.5rem;
}
.day3 .soudankai {
	padding: 1.5rem;
}
.soudankai .program_timeschedule_index {
	background: url(assets/img/program2-3_sd_icon.svg) no-repeat top left;
	background-size: 6rem 6rem;
	padding-left: 7.5rem;
	line-height: 6rem;
}
.program2_soudan {
	width: 100%;
	margin-top: 2rem;
}
.day3 .soudankai .program_timeschedule_index {
	margin-bottom: 0;
}
.day3 .soudankai .program_timeschedule_index span {
	font-size: 1.6rem;
	margin-left: 2rem;
	font-weight: 300;
}
@media screen and (max-width: 1000px) {
	.program_title span b {
		font-size: 4.8rem;
	}
	.program_detail_top_date_wrap {
		margin-bottom: 3rem;	
	}
	.program_detail_top_title {
		font-size: 2.4rem;
		padding: 0.7rem;
		padding-left: 3rem;
	}
	.program_detail_top_date_day {
		font-size: 2.8rem;
	}
	.program_detail_top_date_day .md {
		font-size: 4.8rem;
	}
	.program_detail_top_date_time {
		font-size: 1.8rem;
	}
	.program_timeschedule_time {
		width: 100px;
	}
	.program_timeschedule_contents {
		width: calc(100% - 120px);
	}	
}
@media screen and (max-width: 800px) {
	.program_detail_top_date {
		display: block;
		margin-bottom:1.2rem;
	}
	.program_detail_top_date_day {
		font-size: 3.2rem;
		margin-right: 0;
		line-height: 1.2;
	}
	.program_detail_top_datetime {
		width: 80%;
	}


}
@media screen and (max-width: 640px) {
	.program_wrap {
		padding: 3rem;
	}
	.program_detail {
		padding: 3rem;
		margin-bottom: 3rem;
	}
	.program_detail_top {
		display: block;
		position: relative;
	}
	.program_detail_top_wrap {
		width: 100%;
	}
	.program_detail_top_date_wrap {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 2.2rem;
	}
	.program_detail_top_date_wrap b {
		font-size: 15rem;
		line-height: 0.7;
	}	
	.program_detail_top_icon {
		width: 20%;
		position: absolute;
		top:-5rem;
		right: -5rem;
	}
	.program_teacher {
		display: block;
		padding: 3rem;
		margin-bottom: 4.5rem;
	}
	.program_teacher_detail {
		width: 100%;
	}
	.program_teacher_photo {
		width: 40%;
		display: block;
		margin:0 auto 1.5rem;
	}
	.program_timeschedule_contents_wrap {
		display: block;
	}	
	.program_timeschedule_time {
		width: 100%;
	}
	.program_timeschedule_contents {
		width: 100%;
	}
	.program_timeschedule_index {
		font-size: 2rem;
	}
	.day1 .program_timeschedule li:first-child .program_timeschedule_exp,
	.day1 .program_timeschedule li:last-child .program_timeschedule_exp,
	.day5 .program_timeschedule li:first-child .program_timeschedule_exp {
		width: 60%;
	}	
	.program_timeschedule_image {
		width: 30%;
	}
	.soudankai {
		padding: 1.5rem;
	}
	.day3 .soudankai {
		padding: 0.75rem;
	}
}
@media screen and (max-width: 480px) {
	.program_title {
		font-size: 2.9rem;
		line-height: 1;
		margin-bottom: 1.5rem;
	}
	.program_wrap {
		padding: 2rem;
	}
	.program_detail {
		padding: 2rem;
		margin-bottom: 2rem;
	}
    .program_detail_top_date_wrap {
        margin-bottom: 1.6rem;
    }	
	.program_detail_top_date_wrap b {
		font-size: 10.5rem;
    }
    .program_detail_top_title {
        font-size: 2.2rem;
        padding-left: 2rem;
    }
    .program_detail_top_icon {
        width: 25%;
        top: -4.5rem;
    }
	.program_detail_top_theme {
		font-size: 2.6rem;
		line-height: 1.2;
	}
	.program_detail_top_theme span {
		font-size: 1.8rem;
	}	
	.program_point ul {
		display: block;
	}
	.program_point ul li {
		padding: 0.5rem 1.5rem;
		margin-right: 0;
		margin-bottom: 1rem;
		font-size: 1.6rem;
	}
    .program_teacher {
        padding: 2rem;
    }	
    .program_teacher_photo {
        width: 50%;
    }
	.program_teacher_profile {
		font-size: 1.6rem;
	}
	.program_teacher_comment_title img {
		width: 30%;
		margin-right: 1rem;
	}
	.program_timeschedule_contents_wrap {
		padding-bottom: 1rem
	}

	.program_timeschedule_exp {
		font-size: 1.6rem;
	}	
	.day3 .soudankai .program_timeschedule_index span {
		margin-left: 0;
		display: block;	
		line-height: 1;
        padding-bottom: 1rem;
	}
	.day1 .program_timeschedule li:first-child .program_timeschedule_exp,
	.day5 .program_timeschedule li:first-child .program_timeschedule_exp {
		width: 100%;
	}
	.day1 .program_timeschedule li:first-child .program_timeschedule_image,
	.day5 .program_timeschedule li:first-child .program_timeschedule_image{
		top: 1rem;
	}	
	.day1 .program_timeschedule li:last-child .program_timeschedule_exp {
		width: calc(100% - 7.5rem);
	}	
}

/* ----------------------------- */
/* レポート
/* ----------------------------- */
.report {
	border-bottom: solid 1px #b3b3b4;
}
.report p {
	text-align: center;
	font-size: 3.6rem;
	padding: 5rem 0;
}

/* ----------------------------- */
/* 開催概要
/* ----------------------------- */
.outline {
	background: url(assets/img/outline_bg.svg);
	background-size:cover;
	padding: 7.5rem 0 5.5rem;
	margin-bottom: 2rem;
}
.outline_wrap {
	background: #fff;
	padding: 5rem 10rem;
	box-sizing: border-box;
}
.outline_title {
	width: 50%;
	max-width: 250px;
	margin-bottom: 2rem;
}
.outline ul li {
	display: inline-block;
	width: 100%;
	padding: 2rem 0;
	border-bottom: solid 1px #262626;
}
.outline ul li:nth-child(4),
.outline ul li:nth-child(5){
	width: 39%;
}
.outline ul li:nth-child(6) {
	width: 22%;
}
.outline ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.outline_contents {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.outline_contents b {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 140px;
	font-size: 2.2rem;
	font-weight: 500;
	color: #459b95;
	border: solid 1px #459b95;
	padding: 1rem 0;
	border-radius: 1rem;
}
.outline_contents p {
	width: calc(100% - 160px);
	font-size: 2.2rem;
	line-height: 1.2;
	padding: 1rem 0;
}
.outline_contents p small {
	font-size: 1.8rem;
	font-weight: 400;
}
.outline ul li:first-child .outline_contents p {
	font-size: 2.6rem;
}
.outline ul li:nth-child(4) .outline_contents,
.outline ul li:nth-child(5) .outline_contents,
.outline ul li:nth-child(6) .outline_contents {
	align-items: center;
}
.outline ul li:nth-child(4) .outline_contents b,
.outline ul li:nth-child(5) .outline_contents b,
.outline ul li:nth-child(6) .outline_contents b {
	height: 54px;
}
.outline ul li:nth-child(5) .outline_contents b {
	width: 100px;	
}
.outline ul li:nth-child(5) .outline_contents p {
	width: calc(100% - 120px);
}
.outline ul li:nth-child(4) .outline_contents p small {
	font-size: 1.6rem;
}
.outline ul li:nth-child(5) .outline_contents p small {
	font-size: 1.2rem;
	line-height: 1.2;
	display: block;
}
.outline ul li:last-child .outline_contents p small {
	font-size: 1.6rem;
	line-height: 1.5;
	display: block;
	margin-top: 0.5rem;
}
.flyer {
	display: block;
	width: 200px;
	padding: 0.8rem 0;
	border-radius: 30px;
	margin: 3rem auto 2rem;
	color:#fff;
	text-align: center;
	font-size: 1.8rem;
}
@media screen and (max-width: 1120px) {
	.outline ul li:nth-child(4),
	.outline ul li:nth-child(5),
	.outline ul li:nth-child(6) {
		width: 100%;
	}
	.outline ul li:nth-child(4) .outline_contents b,
	.outline ul li:nth-child(5) .outline_contents b,
	.outline ul li:nth-child(6) .outline_contents b {
		height: inherit;
	}	
	.outline ul li:nth-child(5) .outline_contents b {
		width: 140px;	
	}
	.outline ul li:nth-child(5) .outline_contents p {
		width: calc(100% - 160px);
	}
}
@media screen and (max-width: 960px) {
	.outline_wrap {
		padding: 3rem 5rem;
	}
	.outline ul li:nth-child(5) .outline_contents p small {
		font-size: 1.4rem;
		margin-top:1rem;
	}
}
@media screen and (max-width: 480px) {
	.outline_wrap {
		padding: 2rem;
	}
	.outline_contents b {
		width: 65px !important;
	}
	.outline_contents p {
    	width: calc(100% - 80px) !important;
	}
}

/* ----------------------------- */
/* Q&A
/* ----------------------------- */
.qa {
	background: #e4f2fb;
	padding: 5rem;
	padding-bottom: 2.5rem;
	box-sizing: border-box;
	margin-bottom: 7.5rem;
}
.qa_title {
	width: 50%;
	max-width: 320px;
	margin-bottom: 3rem;
}
.toggle {
	display: none;
}
.qa_q {
	font-size: 1.8rem;
	padding: 2rem;
	display: block;
	background: #fff;
	border-radius: 1rem;
	padding-left: 9rem;
	padding-right: 7rem;
	cursor: pointer;
}
.qa_q:before {
	content: "Q";
	color: #4dabe5;
	font-size: 4.2rem;
	font-weight: 900;
	position: absolute;
	top: calc(50% - 0.5em);
	left: 2rem;
	line-height: 1;
	padding-right: 2rem;
	border-right: solid 1px #666;
}
.qa_q::after{	
	content:"";
	width: 16px;
	height: 16px;
	border-top: 2px solid #4dabe5;
	border-right: 2px solid #4dabe5;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 12px );
	right: 2rem;
	transform: rotate(135deg);
}
.qa_q,
.qa_a {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.qa_a  {
	height: 0;
	margin-bottom: 2.5rem;
	padding-left: 9rem;
	overflow: hidden;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
}
.qa_a:before  {
	content: "A";
	color: #df8bb1;
	font-size: 4.2rem;
	font-weight: 900;
	position: absolute;
	top: 2rem;
	left: 2rem;
	line-height: 1;
}
.toggle:checked + .qa_q + .qa_a  {
	height: auto;
	padding: 2rem;
	padding-left: 9rem;
	transition: all .3s;
}
.toggle:checked + .qa_q + .qa_a.last_a  {
	padding-bottom: 0;	
}
.toggle:checked + .qa_q::after {
	transform: rotate(-45deg) !important;
	top:calc( 50% - 6px );
}
@media screen and (max-width: 480px) {
	.qa {
		padding: 4rem 2rem 2rem;
	}
	.qa_a  {
		margin-bottom: 1.5rem;
	}	
}

/* ----------------------------- */
/* 申し込み
/* ----------------------------- */
.entry {
	width: 90%;
	max-width: 100rem;
	padding: 4rem;
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1;
	border-radius: 1.8rem;
	margin: 0 auto 10rem;
	background: #e59b37;
	color: #fff;
	display: block;
	text-align: center;
	position: relative;
	box-shadow: 7px 7px 0 #9d9e9e;
	box-sizing: border-box;
}
.entry:hover {
	transform: translateX(7px);
	transform: translateY(7px);
	box-shadow: none;
}
.entry:before {
	content: url(assets/img/entry_icon.png);
	position: absolute;
	transform: scale(0.5);
	top: -8rem;
	left: 3rem;
}
.entry:after {
	content: "→";
	position: absolute;
	top: calc(50% - 0.8em);
	right: 3rem;
	line-height: 1;
	pointer-events: none;
	background: #fff;
	font-size: 3rem;
	font-weight: 400;
	color: #000;
	padding: 1rem;
	border-radius: 4px;
}
@media screen and (max-width: 1200px) {
	.entry:before {
		left: -5rem;	
		top: -10rem;
	}
}
@media screen and (max-width: 960px) {
	.entry {
		font-size: 3.4rem;
	}
	.entry:before {
		transform: scale(0.35);
		left: -8rem;
		top: -12rem;
	}
}
@media screen and (max-width: 640px) {
	.entry {
		font-size: 2.8rem;
		padding: 3rem;
	}
	.entry:before {
		transform: scale(0.25);
		left: -10rem;
		top: -13.5rem;
	}
}
@media screen and (max-width: 480px) {
	.entry {
		font-size: 2.4rem;
		line-height: 1.4;
	}
	.entry:before {
		transform: scale(0.25);
		left: -14rem;
		top: -12.5rem;
	}
	.entry:after {
		top: calc(50% - 1em);
		right: 2rem;
		font-size: 2rem;
	}	
}

/* ----------------------------- */
/* お知らせ
/* ----------------------------- */
.info {
	margin-bottom: 7.5rem;
}
.info_lead {
	width: 90%;
	max-width: 67rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.info ul li {
	margin-bottom: 1.5rem;
}
.info_link {
	display: block;
	background: #fefbe4;
	font-size: 2rem;
	padding: 2rem;
	padding-left: 5rem;
	padding-right: 7rem;
	border-radius: 1rem;
}
.info_link:before {
	content: "■";
	color: #f9e24c;
	font-size: 1.4rem;
	position: absolute;
	top: calc(50% - 0.5em);
	left: 3rem;
	line-height: 1;
}
.info_link:after {
	content: "→";
	position: absolute;
	top: calc(50% - 0.9em);
	right: 2rem;
	line-height: 1;
	background: #f9e24c;
	font-size: 2rem;
	font-weight: 400;
	color: #000;
	padding: 1rem;
	border-radius: 4px;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.info_link:hover:after {
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: translateX(10px);
}
@media screen and (max-width: 640px) {
	.info_link {
		padding-left: 4rem;
		font-size: 1.6rem;	
	}
	.info_link:before {
		left: 2rem;
	}
}

/* ----------------------------- */
/* フッター
/* ----------------------------- */
footer {
	background: #e3f0ef;
	position: relative;
	padding: 5rem;
	box-sizing: border-box;
	padding-bottom: 2.5rem;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.foot_logos {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}
.foot_logo {
	width: 30%;
	max-width: 290px;
	min-width: 180px;
	margin-right: 2.5rem;
}
.icon_ig,
.icon_fb{
	width: 25px;
	height: auto;
	margin-top:5px;
	display: inline-block;
}
footer .icon_fb {
	margin-right: 1.5rem;
}
.toi {
	display: block;
	font-size: 1.8rem;
	font-weight: 500;
	padding-left: 1.5rem;
	position: relative;
}
.toi:before {
	content: "●";
	color: #459b95;
	font-size: 1.4rem;
	position: absolute;
	top: calc(50% - 0.5em);
	left: 0;
	line-height: 1;
}
.toi_name {
	font-size: 1.8rem;
}
.toi_name small,
.toi_name span{
	font-size: 1.4rem;
}
.toi_tel {
	font-size: 2.6rem;
	display: inline-block;
	margin-right: 2rem;
}
.toi_tel small {
	font-size: 2.2rem;
}
.toi_tel span {
	font-size: 1.6rem;
}
.toi_mail {
	font-size: 2rem;
	display: inline-block;
}
footer hr {
	border: 0;
	border-top: solid 1px #595757;
	margin: 2rem 0;
}
.credit {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.credit ul,
.credit ul li{
	display: flex;
	align-items: center;
}
.credit ul li b {
	font-size: 1.6rem;
	background: #fff;
	padding: 0.5rem 1.5rem;
}
.credit ul li p {
	font-size: 1.8rem;
	margin-left: 1rem;
	margin-right: 2.5rem;
}
.credit ul li:nth-child(2) p {
	font-size: 1.4rem;
	line-height: 1.4;
}
.credit small {
	font-size: 1.2rem;
}

.pagetop {
	position: fixed;
	bottom: 25px;
	right: 15px;
	width:1rem;
	height: 1rem;
	opacity: 0;
	z-index:-1;
	transition: 0.2s;
}
.pagetop a{
	display: block;
	position: relative;
}
.pagetop a:after {
	content: "↑";
	position: absolute;
	top: calc(50% - 0.7em);
	right: 0;
	line-height: 1;
	background: #e0e7eb;
	font-size: 2rem;
	font-weight: 400;
	color: #000;
	border: solid 1px #fff;
	padding: 0.75rem;
	border-radius: 4px;
	transition: transform .4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.pagetop a:hover:after {
	transition: transform .4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: translateY(-5px);
}

@media screen and (max-width: 960px) {
	.credit {
		display: block;
	}
	.credit small {
		margin-top: 2rem;
		display: block;
	}
}
@media screen and (max-width: 768px) {
	.toi_name span{
		display: block;
	}
	.toi_tel {
		margin-right: 0;
	}
	.toi_mail {
		display: block;
	}
	
	.credit ul {
		display: block;
	}
	.credit ul li {
		margin-bottom: 1rem;	
	}
	.credit ul li b {
		width: 70px;
		text-align: center;
	}
	.credit ul li p {
		margin-right: 0;	
	}
}
@media screen and (max-width: 640px) {
	footer {
		padding: 2.4rem;
	}
	.pagetop {
		width:1.4rem;
		height: 1.4rem;
	}
	.pagetop a:after {
		font-size: 3rem;
		padding: 1rem;
	}
}
@media screen and (max-width: 480px) {
	.toi_name small,
	.toi_name span {
		font-size: 1.6rem;
	}
	.credit small {
		font-size: 1.4rem;
	}
}
