@charset "UTF-8";

@media (min-width: 1400px) {
	.con_max_xl {
		max-width: 1200px;
	}
}
@media (min-width: 1200px) {
	.con_max_lg {
		max-width: 992px;
	}
}
@media (min-width: 992px) {
	.con_max_md {
		max-width: 768px;
	}
}
@media (min-width: 768px) {
	.con_max_sm {
		max-width: 576px;
	}
}

/* スライダー */
.slider img {
 width: 100%;
}

.slider {
  width: 100%; /* または任意の幅 */
  margin: 0 auto 20px; /* 中央寄せにする場合 */
}
.slider .slick-slide {
  padding: 0 5px; /* スライドの間隔調整 */
}

.w_min_100 {
	min-width: 100px;
}
.w_min_125 {
	min-width: 125px;
}
.w_min_150 {
	min-width: 150px;
}
.w_min_200 {
	min-width: 200px;
}
.w_min_300 {
	min-width: 300px;
}
.w_min_500 {
	min-width: 500px;
}
.w_max_150 {
	max-width: 150px;
}
.w_max_200 {
	max-width: 200px;
}
.w_max_250 {
	max-width: 250px;
}
.w_max_300 {
	max-width: 300px;
}
.w_max_500 {
	max-width: 500px;
}


.mt-2em {
	margin-top: 2em;
}

.shadow {
	-moz-box-shadow: 1px 1px 2px 2px #CCC;
	-webkit-box-shadow: 1px 1px 2px 2px #CCC;
	box-shadow: 1px 1px 2px 2px #CCC;
}

/* jQueryでスライドショー
https://tech.brick-plan.jp/fade/fade-pattern08/ */
.group_imageWrap {
	position: relative;
}
.group_image {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	/*transition-duration: 0.5s;*/
	transition-duration: 0s;
	transition-property: opacity;
	/*transition-delay: 0.2s;*/
	transition-delay: 5s;
	background: #FFF;
}
.group_image.isCurrent {
	z-index: 1;
	position: relative;
	opacity: 1;
	transition-delay: 0s;
	height: 100%;
}
.group_image img {
	/*max-width: 100%;*/
	width: 100%;
}

/* jQueryでスクロール時に要素をフェードイン */
.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(70px);
  transition: opacity 2s, visibility 1s, transform 1s;
}

.zoom_in {
  /* 最初は非表示 */
  opacity: 0;
  overflow: hidden;
  transform-origin: top center;
  animation: loading_zoom_in 3s;
	z-index: 1000;
	position: relative;
}
@keyframes loading_zoom_in {
  0% {opacity: 0;transform: scale(0.8);}
  100% {opacity: 1;transform: scale(1);}
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/* その場で */
.fadeIn {
animation-name:fadeInAnime;
animation-duration:5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.main {
  /*overflow-x: hidden;*/
  transform-origin: top center;
  animation: loading 3s;
}
@keyframes loading {
  0% {opacity: 0;transform: scale(1);}
  100% {opacity: 1;transform: scale(1);}
}

.main_pht {
	position: relative;
}
.main_pht img {
	z-index: -1000;
	width: 100%;
	height: auto;
}

.photo01 {
	width: 100%;
	display: block;
  overflow:hidden;
}
.photo01 img {
  transition:0.5s all;
}
.photo01 img:hover {
  transform:scale(1.15,1.15);
	transition:0.5s all;
}

.main_pht_top {
  overflow: hidden;
  transform-origin: top center;
  animation: loading_pht_top 3s;
	z-index: -1000;
	position: relative;
	max-height: 80vh;/* 枠の高さ */
}
.main_pht_top img {
	width: 100%;
	height: auto;
}

@keyframes loading_pht_top {
  0% {opacity: 0;transform: scale(1.3);}
  100% {opacity: 1;transform: scale(1);}
}

.scale01 {
  overflow-x: hidden;
  transform-origin: top center;
  animation: loading_scale01 3s;
}
@keyframes loading_scale01 {
  0% {opacity: 0;transform: scale(1.3);}
  100% {opacity: 1;transform: scale(1);}
}

/* 丸が背景になるボタン */
.circle_btn03 {
  position: relative;
  padding: 1em 1.5em;
  transition: all 0.2s ease;
  border: none;
  background: none;
  text-decoration: none;
  display: inline-block;
	margin: 0 auto;
	white-space: nowrap;
	line-height: 1.2em;
}

.circle_btn03:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  border-radius: 100vh;
  background: #DBEAF2; /* 背景色 */
  width: 3em; /* 丸の横幅 */
  height: 3em; /* 丸の高さ */
  transition: all 0.3s ease;
	z-index: -1;
}
.circle_btn03 > span {
  position: relative;
  color: #000; /* 文字色 */
}
.circle_btn03 svg {
  position: relative;
  top: -1px;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #000; /* 矢印の色 */
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
	z-index: 10;
}
a.circle_btn03 i {
  position: relative;
  top: -1px;
  margin-left: 10px;
  color: #000; /* 矢印の色 */
  transform: translateX(-5px);
  transition: all 0.3s ease;
	z-index: 10;
}

.circle_btn03:hover:before { /* マウスオーバーした際のデザイン */
  width: 100%;
}
.circle_btn03:hover svg,
a.circle_btn03:hover i {
  transform: translateX(0);
}
.circle_btn03:active {
  transform: scale(0.95);
}

@media print, screen and (max-width: 992.98px) {
	@keyframes loading_pht_top {
		0% {opacity: 0;transform: scale(1.2);}
		100% {opacity: 1;transform: scale(1);}
	}
}

.video_caption {
	background: #DBEAF2;
	padding: 4px 3px 5px;
	font-size: clamp(1.2rem, calc(2vw + 2.7rem), 1.4rem);
	font-weight: 700;
	line-height: 1.2em;
}

/* 表示領域が767.98px以下の場合に適用するスタイル
-----------------------------------------------------*/
@media print, screen and (max-width: 767.98px) {
	.conf_btn01 {
		width: 17em;
	}
	.circle_btn03 {
		display: block;
	}
	.circle_btn03 svg {
		position: absolute;
		top: 44%;
		right: 15px;
	}
	a.circle_btn03 i {
		top: -10px;
		left: 10px;
	}
}

/* 四角く一色で塗りつぶしたボタン */
a.background_btn01,
a.background_btn01a,
a.background_btn01b {
  display: inline-block;
  width: 100%;
  position: relative;
  background: #000; /* 背景色 */
  border: 2px solid #000;
  padding: 1em 2em;
  font-weight: 500;
  color: #fff; /* 文字色 */
  text-decoration: none;
  text-align: center;
  transition-duration: 0.3s;
}
a.background_btn01b {
  padding: 1em;
}
a.background_btn01 {
  max-width: 350px; /* ボタン幅 */
}
a.background_btn01:before,
a.background_btn01a:before,
a.background_btn01b:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff; /* 矢印の色 */
  border-right: 2px solid #fff; /* 矢印の色 */
  transform: rotate(45deg);
  position: absolute;
  top: 51%;
  left: 25px;
  margin-top: -6px;
}
a.background_btn01b:before {
  left: 15px;
}

/* マウスオーバーした際のデザイン */
a.background_btn01:hover,
a.background_btn01a:hover,
a.background_btn01b:hover,
a.background_btn02:hover {
  background: #fff; /* 背景色 */
  color: #000; /* 文字色 */
}
a.background_btn01:hover:before,
a.background_btn01a:hover:before,
a.background_btn01b:hover:before {
  border-top: 2px solid #000; /* 矢印の色 */
  border-right: 2px solid #000; /* 矢印の色 */
}

a.background_btn02 {
  display: inline-block;
  width: 100%;
  position: relative;
  background: #000; /* 背景色 */
  border: 2px solid #000;
  padding: 0.5em 1em;
  font-weight: 500;
  color: #fff; /* 文字色 */
  text-decoration: none;
  text-align: center;
  transition-duration: 0.3s;
}

a.background_btn03 {
  display: block;
  width: 100%;
  position: relative;
  background: #E2EEF5; /* 背景色 */
  border: 2px solid #80B5D4;
  padding: 0.5em 1em;
  font-weight: 500;
  color: #80B5D4; /* 文字色 */
  text-decoration: none;
  text-align: center;
  transition-duration: 0.3s;
	height: 100%;
	line-height: 1.1em; /* ボタンの高さに応じてテキストの行の高さを調整 */
}

a.background_btn03 span {
	font-size: 1.2rem;
	font-weight: 400;
}
a.background_btn03:hover {
  background: #80B5D4; /* 背景色 */
  color: #FFFFFF; /* 文字色 */
}

a.background_btn03a {
	background: #80B5D4; /* 背景色 */
  color: #FFF; /* 文字色 */
  padding: 0.5em 0.8em;
  text-decoration: none;
  text-align: center;
  transition-duration: 0.3s;
	display: inline-block;
	border-radius: 9999px;
	border-width: 1px;
	line-height: 1em;
}
a.background_btn03a:hover {
	background: #DBEAF2; /* 背景色 */
}

.mem_app {
	width: 100%;
	max-width: 500px;
}

.award {
  position: relative;
	padding: 0.5em 0 0.5em 1.7em;
}
.award:before {
  font-family: "Font Awesome 6 Free";
	font-weight: 900;
  content: "\f559";/*アイコン種類*/
  position: absolute;
  left : 0; /*左端からのアイコンまで*/
  color: #80B5D4; /*アイコン色*/
	font-size: clamp(2rem, calc(2rem + ((1vw - 0.36rem) * 0.5435)), 2.5rem);
  min-height: 0vw;
	top: -0.02em;
}

.box_med_edu {
	border: 3px solid #80B5D4;
	font-size: clamp(4rem, calc(4rem + ((1vw - 0.36rem) * 0.5435)), 4.5rem);
	font-weight: 700;
	text-align: center;
	box-sizing: border-box;
	padding: 10px;
}

.box_conf {
	border: 3px solid #E2EEF5;
	box-sizing: border-box;
	padding: 15px;
	border-radius: 7px;
}

.arrow_box01 {
	position:relative;
	background:#FFF;
	padding:10px;
	border-radius:10px;
	-webkit-border-radius:7px;
	-moz-border-radius:7px;
	font-size: 1.3rem;
	margin-top: 5px;
	border: 1px solid #A7A7A7;
}
.arrow_box01:after,.arrow_box01:before {
	border: solid transparent;
	content:'';
	height:0;
	width:0;
	pointer-events:none;
	position:absolute;
	bottom:100%;
	left:50%;
}
.arrow_box01:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-width:16px;
	border-bottom-width:16px;
	border-left-width:10px;
	border-right-width:10px;
	margin-left: -10px;
	border-bottom-color:#FFF;
}
.arrow_box01:before {
	border-color: rgba(255, 255, 255, 0);
	border-top-width:16px;
	border-bottom-width:16px;
	border-left-width:10px;
	border-right-width:10px;
	margin-left: -10px;
	margin-bottom: 1px;
	border-bottom-color:#A7A7A7;
}

.box01 {
  border-top: 1px solid #80B5D4;
  border-bottom: 1px solid #80B5D4;
  position: relative;
	width: 100%;
	margin: 0 auto;
}
.box01 h3 {
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  top: -0.8em;
}
.box01 h3 > span {
  padding: 0 .5em;
  background: #FFF;
  color: #80B5D4;
}
.box01 .inner {
  padding: 0.6em 0 0.5em;
}

/* 文字のスライダー */
.slick01 {
	width: 100%;
	margin: 0 auto 15px;
	/*background-color: pink;*/
	@include breakpoint(500px) {
		margin: 5% auto;
	}
}

.slick01__item {
	padding: 5px 0;
}

.slick01__item p {
	margin: 0 auto;
  font-family: "Noto Serif", serif;
	font-weight: 700;
	font-size: clamp(2rem, calc(2rem + ((1vw - 0.36rem) * 0.5435)), 2.5rem);
	color: #2C6384;
	background: #E2EEF5;
	padding: 5px 10px 7px;
}

.slick-prev:before, .slick-next:before {
	color: #000066;
}

.slick-track {
  display: flex !important;
	align-items: center !important;
}
.slick-slide {
  height: auto !important;
}

/* Vimeoレスポンシブ化 */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.misn_container {
  display: grid; 
  grid-template-columns: 250px 1fr; 
  grid-template-rows: min-content min-content; 
	gap: 10px 20px;
  grid-template-areas: 
    "left right"
    "bottom bottom"; 
}
.misn_left { grid-area: left; }
.misn_right { grid-area: right; }
.misn_bottom { grid-area: bottom; }

/* 表示領域が767.98px以下の場合に適用するスタイル
-----------------------------------------------------*/
@media print, screen and (max-width: 767.98px) {
	.misn_container {
		grid-template-columns: 1fr; 
		grid-template-rows: min-content min-content min-content; 
		grid-template-areas: 
			"left"
			"bottom"
			"right";
	}
}

.cat-box-list {
  padding: 35px;
  border: 3px solid #c2c2c2;
  border-radius: 12px;
  margin: 20px 0;
}