@charset "UTF-8";
/* Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { 
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
	color: #333;
	line-height: 1.5;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a { color: #1C8FD2; }
a:hover,
a:active,
a:focus { color: #EDCDA9; cursor: pointer;}

img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom; }


/* Style
   ========================================================================== */
.section {
  padding: 60px 0;
}
.container,
.container02.apply {
  width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* h1 */
.hero__heading {
	position: absolute;
  top: 50%;
  left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	font-size: 4rem;
	text-align: center;
}

/* h2 */
.section__heading {
	color: #00AACE;
	text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.section__heading span {
	display: block;
	font-size: 1.4rem;
	font-weight: normal;
	margin-bottom: 6px;
}

@media screen and (max-width: 768px) {
	.container,
	.container02.apply {
		padding: 0 5vw;
    box-sizing: border-box;
	}
	.main {
		overflow: hidden;
	}
	.hero__heading {
		top: 50%;
		font-size: 3.5rem;
	}
}
@media (min-width: 769px) and (max-width: 1140px) {
	.container,
	.container02.apply {
		padding: 0 20px;
	}
}

/*----------------------------------------------
	header
---------------------------------------------*/
.header {
	position: fixed;
  width: 100%;
	z-index: 99;
}
.header__inner {
	background: #fff;
	padding: 15px 0;
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	vertical-align: middle;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.header__inner {
		width: auto;
	}
	.header__logo img {
		max-width: 100%;
		width: 70vw;
  	height: auto;
	}
}

/*  nav
------------------------------------- */
.drawer__menu {
	display: flex;
  justify-content: flex-end;
  font-size: 1.8rem;
	gap: 40px;
}
.drawer__item {
	position: relative;
  list-style: none;
}
.drawer__link {
	position: relative;
	color: #333;
	text-decoration: none;
	padding: 20px 0;
}
.drawer__link:hover {
	color: #333;
	font-weight: bold;
}
.drawer__link::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background: #1C8FD2;
	left: 0;
	bottom: -5px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}
.drawer__link:hover::after {
	transform: scale(1, 1);
}
.drawer__item.active .drawer__link {
	font-weight: bold;
}
.drawer__item.active .drawer__link::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background: #1C8FD2;
	left: 0;
	bottom: -5px;
	transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
	/* ハンバーガーボタンのデザイン */
	.drawer__button {
		position: relative;
		width: 3rem;
		height: 3rem;
		background-color: #1C8FD2;
		border: none;
		border-radius: 3px;
		cursor: pointer;
		z-index: 999;
	}
	/* ハンバーガーボタン内の線 */
	.drawer__button > span {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 2rem;
		height: 2px;
		background-color: #fff;
		transform: translateX(-50%);
	}
	.drawer__button > span:first-child {
		transform: translate(-50%, calc(-50% - 0.5rem));
		transition: transform 0.3s ease;
	}
	.drawer__button > span:nth-child(2) {
		transform: translate(-50%, -50%);
		transition: opacity 0.3s ease;
	}
	.drawer__button > span:last-child {
		transform: translate(-50%, calc(-50% + 0.5rem));
		transition: transform 0.3s ease;
	}

	/* 展開時のデザイン */
	.drawer__button.active {
		background: none;
	}
	.drawer__button.active > span {
		background-color: #1C8FD2;
	}
	.drawer__button.active > span:first-child {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.drawer__button.active > span:nth-child(2) {
		opacity: 0;
	}
	.drawer__button.active > span:last-child {
		transform: translate(-50%, -50%) rotate(45deg);
	}

	/* メニューのデザイン */
	.drawer__nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.5);
		transition: opacity 0.3s ease;
		opacity: 0;
		visibility: hidden;
	}
	.drawer__nav-inner {
		position: relative;
		width: 100%;
		height: 100%;
		background-color: #fff;
		padding: 4rem 1.5rem 1rem;
		margin: 0 0 0 auto;
		overflow: scroll;
		transform: translateX(100%);
		transition: transform 0.3s ease;
	}
	.drawer__menu {
		display: block;
		list-style: none;
		padding-left: 0;
	}
	.drawer__item {
		padding: 0;	
	}
	.drawer__link {
		display: block;
		padding: 16px 0;
		border-bottom: solid 1px #ccc;
	}
	/* 展開時のデザイン */
	.drawer__nav.active {
		opacity: 1;
		visibility: visible;
	}
	.drawer__nav.active .drawer__nav-inner {
		transform: translateX(0);
	}
	.drawer__item.active .drawer__link {
		border-bottom: none;
	}
	.drawer__item.active .drawer__link::after {
		bottom: -1px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.drawer__menu {
		font-size: 1.6rem;
		gap: 20px;
	}
}

/*----------------------------------------------
	hero
---------------------------------------------*/
#top .hero {
	position: relative;
  width: 100%;
  background: url("../images/mv_pc.webp") top 80px center no-repeat;
  background-size: 2200px auto;
  padding-top: 790px;
  overflow: hidden;
}

#program .hero {
	position: relative;
  width: 100%;
  background: url("../images/bg_heading.webp") top center no-repeat;
  background-size: cover;
  aspect-ratio: 4 / 1;
	padding-top: 80px;
}

@media (max-width: 767px) {/*iPad mini用に767pxに設定*/
  #top .hero {
    background: url("../images/mv_sp.webp") no-repeat;
    background-size: contain;
    background-position: top 63px center;
    width: 100%!important;
		padding-top: 131.8%;
		overflow: hidden;
	}
	#program .hero {
    height: 62vw;
    min-height: 200px;
    max-height: 280px;
    background-position: top left 35%;
    background-size: cover;
    padding-top: 63px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	#program .hero {
    background-position: top 8vw right;
    height: 458px;
    min-height: 230px;
	}
}

/*----------------------------------------------
	apply-block
---------------------------------------------*/
.apply-block {
	position: relative;
	text-align: center;
}
.apply__btn-area {
	position: relative;
}
.apply__btn {
	display: block;
  width: 650px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(2rem, 1.903rem + 0.48vw, 2.6rem);
	font-weight: bold;
  text-align: center;
  line-height: 1.5;
	background: #FF7F7F;
	margin: 0 auto;
	padding: 20px;
  border-radius: 100px;
	box-shadow: 0 7px 0 #D55F5F;
	transition: .3s ease;
}
.apply__btn:hover,
.apply__btn:active,
.apply__btn:visited,
.apply__btn:focus {
	color: #fff!important;
	box-shadow: none;
	transform: translateY(7px);
  opacity: 0.8;
}
.apply__btn.dummy {
	pointer-events: none;
	color: #aaa;
	background: #ddd;
}

@media (max-width: 768px) {
	.apply__btn {
		width: 100%;
	}
}

/*  fukidashi
------------------------------------- */
.fukidashi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 30px;
  padding: 0 16px;
}
.fukidashi::before,
.fukidashi::after {
  content: "";
  width: 35px;
  height: 2px;
  background: repeating-linear-gradient(to right, #FF7F7F 0 3px, transparent 3px 8px);
}
.fukidashi::before {
	transform: rotate(60deg);
}
.fukidashi::after {
  transform: rotate(-60deg);
}

@media (max-width: 768px) {
	.fukidashi {
		font-size: 1.5rem;
		padding: 0;
	}
}

/*----------------------------------------------
	section--about
---------------------------------------------*/
.section--about {
  position: relative;
  width: 100%;
}
.section--about .text-block {
	width: 84%;
  margin: 0 auto 50px;
}
.section--about .text-block p {
	text-align: left;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.section--about .text-block {
		width: 100%;
	}
}

/*----------------------------------------------
	section--about_program
---------------------------------------------*/
.section--about_program {
  position: relative;
  width: 100%;
}
.about_program-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
.about_program-content .text-block {
	flex: 1;
}
.about_program-content .text-block p {
	text-align: left;
	line-height: 1.6;
}
.about_program-content-img {
	flex: 0 0 31%;
}
.about_program-content-img img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.about_program-content {
		display: block;
	}
	.about_program-content-img {
		margin-top: 30px;
	}
}

/*----------------------------------------------
	section--lecture
---------------------------------------------*/
.lecture-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	border-radius: 30px;
	padding: 30px;
}
.lecture-content__title {
	color: #00AACE;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.lecture-content .text-block {
	line-height: 1.8;
}
.lecture-content-img {
	flex: 0 0 26%;
}
.lecture-content-img img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.lecture-content {
		display: block;
	}
	.lecture-content-img img {
		width: 80%;
		margin: 0 auto 20px;
	}
}

/*----------------------------------------------
	section--news
---------------------------------------------*/
.section--news {
	padding: 60px 0 80px;
}
.news-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}
.news-content a:hover img {
	opacity: .7;
}
.news-content__list {
	display: flex;
	flex-wrap: wrap;
	flex-basis: 70%;
	margin-right: 20px;
}
.news-content__list dt {
	width: 18%;
}
.news-content__list dd {
	width: 82%;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.news-content,
	.news-content__list{
		display: block;
	}
	.news-content__list {
		margin: 0 0 50px;
	}
	.news-content__list dt,
	.news-content__list dd {
		width: 100%;
	}
	.news-content__list dt {
		margin-bottom: 5px;
	}
	.news-content__list dd {
		margin-bottom: 30px;
	}
}

/*----------------------------------------------
	section--student
---------------------------------------------*/
.section--student {
  position: relative;
  background: #00AACE;
	padding: 40px 0;
}
.student-content {
	border-radius: 30px;
	background: #fff;
	padding: 30px 70px;
}
.student-content__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 70px;
}
.student-content__title {
  color: #00AACE;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.student-content .text-block {
	flex: 1;
}
.student-content__img {
	flex: 0 0 22%;
}
.student-content__img img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.student-content {
		padding: 20px;
	}
	.student-content__inner {
		display: block;
	}
	.student-content__img {
		margin-top: 30px;
	}
	.student-content__img img {
		width: 80%;
		margin: 0 auto;
	}
}

/*----------------------------------------------
	section--contact
---------------------------------------------*/
.section--contact {
  width: 100%;
  height: auto;
  background: url("../images/bg_contact.webp") bottom center no-repeat, rgb(238, 252, 255, .7);
  background-size: cover;
}
.section--contact .text-block {
	width: 66%;
	text-align: left;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.section--contact .text-block {
		width: 100%;
	}
}

/*----------------------------------------------
	footer
---------------------------------------------*/
.footer {
  padding: 30px 0 10px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 0 40px;
}
.copyright {
  font-size: 12px;
  text-align: center;
}
@media (max-width: 768px) {
	.footer .container {
		padding: 0 5vw 5vw;
	}
	.footer__logo--mext {
		margin-bottom: 20px;
	}
}
@media (min-width: 769px) and (max-width: 1140px) {
	.footer .container {
		padding: 0 20px 40px;
	}
}

/*----------------------------------------------
	program
---------------------------------------------*/
/*  youtube-block
------------------------------------- */
.youtube-block {
	text-align: center;
	margin-bottom: 50px;
}
.youtube-block iframe {
	width: 560px;
	height: 315px;
}

@media (max-width: 768px) {
	.youtube-block iframe {
		width: auto;
		height: auto;
		aspect-ratio: 16 / 9;
	}
}

/*  program-person
------------------------------------- */
.program-person {
	margin-top: 5px;
	padding-left: 1rem;
}
.program-person.is_pdf {
	position: relative;
	padding-left: 35px;
}
.program-person.is_pdf img {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	background: url("../images/icon_pdf.png") no-repeat;
	background-size: contain;
}

/*  section--speakers
------------------------------------- */
.section--speakers .container {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.speaker-block {
	margin-bottom: 80px;
}
.speaker-block .speaker-card:not(:last-of-type) {
	margin-bottom: 50px;
}
.speaker-title {
	color: #00AACE;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 30px;
}
.speaker-card {
	display: flex;
  align-items: flex-start;
	gap: 30px;
	border: 3px solid #00AACE;
	border-radius: 30px;
  background-color: #fff;
  padding: 25px;
}
.speaker-card__image {
	flex: 0 0 26%;
}
.speaker-card__image img {
  display: block;
	width: 100%;
	height: auto;
}
.speaker-card__content {
	flex: 1;
}
.speaker-card__name {
	color: #00AACE;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.section--speakers .container {
		width: 100%;
	}
	.speaker-card {
		display: block;
	}
	.speaker-card__image {
		margin-bottom: 20px;
	}
	.speaker-card__image img {
		width: 180px;
		margin: 0 auto;
	}
}

/* Component
   ========================================================================== */
/*  c_table
------------------------------------- */
.c_table {
  width: 100%;
	margin: 0 auto;
}
.c_table thead th {
  color: #FFF;
  font-weight: bold;
  text-align: center;
  background: #DBC9B6;
}
.c_table th {
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  background: #FFF6EC;
}
.c_table th,
.c_table td {
	vertical-align: top;
  padding: 15px;
  border: 1px solid #CBB29A;
}
.c_table caption {
	caption-side: bottom;
	text-indent: -1em;
	padding-left: 1em;
	margin-top: 15px;
}
.c_table th.is_w7 { width: 7%; }

@media (max-width: 768px) {
	.c_table {
		width: 100%!important;
	}
	.c_table th,
	.c_table td {
		display: block;
		width: 100%;
	}
	.c_table th,
	.c_table tr:not(:last-of-type) td {
		border-bottom: none;
	}
	.c_table th.is_w7 {
		width: 100%;
	}
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
	.c_table {
		width: 100%!important;
	}
}

/*  c_btn
------------------------------------- */
.c_btn {
	display: block;
  width: 650px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.7rem, 1.591rem + 0.55vw, 2rem);
	font-weight: bold;
  text-align: center;
	background: #1D4E89;
	margin: 0 auto;
	padding: 30px;
  border-radius: 100px;
	box-shadow: 0 7px 0 #0E3564;
	transition: .3s ease;
}
.c_btn:hover {
	color: #fff;
	box-shadow: none;
	transform: translateY(7px);
	opacity: .7;
}

@media (max-width: 768px) {
	.c_btn {
		width: 100%;
	}
}

/* Utility
   ========================================================================== */
.u_mab5 { margin-bottom: 5px; }
.u_mab10 { margin-bottom: 10px; }
.u_mab15 { margin-bottom: 15px; }
.u_mab20 { margin-bottom: 20px; }
.u_mab30 { margin-bottom: 30px; }
.u_mab40 { margin-bottom: 40px; }
.u_mab50 { margin-bottom: 50px; }
.u_mab60 { margin-bottom: 60px; }
.u_mab70 { margin-bottom: 70px; }

.u_mat5 { margin-top: 5px; }

.u_ALcenter { text-align: center!important; }
.u_ALright { text-align: right!important; }
.u_ALleft { text-align: left!important; }
.u_ALtop { vertical-align: top; }
.u_ALmiddle { vertical-align: middle; }
.u_ALbottom { vertical-align: bottom; }

.u_red { color: #EF5F50; }
.u_black { color: #333; }

.u_bg-blue { background: #EEFCFF; }

.u_bold { font-weight: bold; }

.u_w700 { width: 700px;}
.u_w1000 { width: 1000px;}

.u_hover:hover { opacity: .7; }

.u_indent01 {
	text-indent: -1em;
	padding-left: 1em;
}
.u_indent02 {
	text-indent: -2em;
	padding-left: 2em;
}
.u_indent03 {
	text-indent: -3em;
	padding-left: 3em;
}

.u_sp {
	display: none;
}
	
@media (max-width: 768px) {
	.u_w700,
	.u_w1000 {
		width: 100%;
	}
	.u_pc {
		display: none;
	}
	.u_sp {
		display: block;
	}
}
