@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.6rem;
  color: #323232;
  line-height: 1.7;
  margin: 0 auto;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}
#main img{
	vertical-align:top;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
.contents_inner {
	max-width: 1160px;
	margin: 0 auto;
}
@media screen and (min-width:768px) {
	.spOnly {
		display: none;
	}
}
@media screen and (max-width:767.98px) {
	.pcOnly {
		display: none;
	}
}

/*---animation---*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translateY(30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width:767.98px) {
	.anim_scroll_sp {
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1s, transform 1s;
	}
}
/*=====================*/


/*kvArea
=======================*/
.kvArea {
	position: relative;
}
.kv {
	height: 365px;
	margin: 0;
}
.kvTitWrap {
	position: absolute;
	top: 40%;
	left: 50%;
	max-width: 1160px;
	width: 100%;
	transform: translate(-50%, -40%);
	z-index: 5;
}
.kvArea h1 {
	position: relative;
	max-width: 500px;
	margin: 0;
}
.kvArea .introTxt {
	display: inline-block;
	margin-top: 30px;
	color: #fff;
}
.kv .slider-item {
	height: 365px;
}
.kv img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:767.98px) {
	.kv, .kv .slider-item {
		height: 235px;
	}
	.kvTitWrap {
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.kvArea h1 {
		max-width: 265px;
    margin: 0 auto;
		padding: 0;
		font-size: 1.5rem;
		font-weight: normal;
	}
	.kvArea .introTxt {
		margin-top: 0;
		padding: 8px 30px;
		font-size: 1.1rem;
	}
	.kvTitWrap {
		top: 32%;
		text-align: center;
	}
}

/*---wave---*/
.waveWrap.anim_scroll {
  transform: translateX(-400px);
	opacity: 1;
}
.waveWrap.anim_scroll.scrollin {
  transform: translate(0, 0);
}
.waveWrap {
	position: absolute;
  width: 1200px;
  height: 365px;
  overflow: hidden;
  /*transform: translate3d(0,0,0);*/
	z-index: 3;
}
.waveWrap .wave {
  position: absolute;
  top: -700px;
	left: -520px;
  width: 1500px;
  height: 1500px;
  margin-top: -250px;
  background: yellow;
  transform-origin: 50% 48%;
  border-radius: 43%;
  opacity: 0.1;
}
.waveWrap .wave.-three {
  opacity: 0.2;
	background: rgb(0,104,123);
	background: radial-gradient(circle, rgba(0,104,123,1) 0%, rgba(2,182,193,1) 80%);
}
.waveWrap .wave.-two {
  opacity: 1;
	background: rgb(0,104,123);
	background: radial-gradient(circle, rgba(0,104,123,1) 0%, rgba(2,182,193,1) 80%);
}
@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(180deg);
  }
}
@keyframes slide-skew {
  0% {
    transform: translate(-50%,-450px);
    opacity: .5;
  }
  100% {
    transform: translate(-50%,0);
		opacity: 1;
  }
}

@media (min-width: 768px) {
	.waveWrap .wave {
		animation: drift 1600ms  linear;
	}
	.waveWrap .wave.-three {
		animation: drift 2000ms  linear;
	}
	.waveWrap .wave.-two {
		animation: drift 2600ms  linear;
	}
}

@media screen and (max-width:767.98px) {
	.waveWrap.anim_scroll {
		transform: translate(0, 0);
		opacity: 1;
	}
	.waveWrap {
		width: 100%;
		height: 235px;
	}
	.waveWrap .wave {
		top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 130%;
    margin-top: 0;
		border-radius: 50%;
		animation: slide-skew 1.5s;
	}
}
/*----------*/
/*=====================*/


/*menuNav
=======================*/
.menuNav {
	position: sticky;
  top: 0;
  background: #d8e3e6;
  z-index: 50;
}
.menuNav_inner {
	display: flex;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
}
.menuNav .navItem {
	width: 100%;
	font-size: 1.6rem;
	letter-spacing: -1.5px;
	text-align: center;
	background: #008e9d;
	border-right: 2px solid #fff;
}
.menuNav .navItem.narrow {
	width: 85%;
	font-size: 1.8rem;
}
.menuNav .navItem:last-of-type {
	border-right: none;
}
.menuNav .navItem a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px 30px 20px 20px;
  color: #fff;
}
.menuNav .navItem a span {
	position: relative;
}
.menuNav .navItem a span::after {
	position: absolute;
	content: '';
	top: 40%;
	right: -25px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 768px) {
	.menuNav .navItem {
		transition: 0.2s ease all;
	}
	.menuNav .navItem a:hover {
		color: #008e9d;
		background: #fff;
		opacity: .8;
		transition: 0.2s ease all;
	}
	.menuNav .navItem a:hover span::after {
		border-right: 2px solid #008e9d;
		border-bottom: 2px solid #008e9d;
	}
}

@media screen and (max-width:767.98px) {
	.menuNav_inner {
		flex-wrap: wrap;
	}
	.menuNav .navItem,
	.menuNav .navItem.narrow {
		width: calc(100% / 3);
		font-size: 1.4rem;
	}
	.menuNav .navItem:last-of-type {
		width: 100%;
	}
	.menuNav .navItem:nth-of-type(n+3) {
		border-right: none;
	}
	.menuNav .navItem:nth-of-type(4) {
		width: 100%;
		border-top: 2px solid #fff;
	}
	.menuNav .navItem a {
		position: relative;
		display: flex;
		justify-content: center;
    align-items: center;
		/*padding: 8px 15px 22px 15px;*/
		padding: 5px;
	}
	.menuNav .navItem:nth-of-type(4) a {
		padding: 10px;
	}
	.menuNav .navItem a span {
		position: static;
		line-height: 1.2;
	}
	/*.menuNav .navItem a span::after {
		top: auto;
    right: auto;
		bottom: 10px;
		left: 50%;
		transform: translate(-50%, 0) rotate(45deg);
	}*/
	.menuNav .navItem a span::after {
		display: none;
	}
}

@media screen and (max-width:359px) {
	.menuNav .navItem {
		font-size: 1.2rem;
	}
}

/*---otherList---*/
.otherList_innerWrap form select {
	position: relative;
	width: 100%;
	height: 70px;
	padding: 3px 0;
  color: #333;
  cursor: pointer;
	text-align: center;
	background: #fff;
	border: 1px solid #567692;
	box-shadow: 0 1px 3px 3px rgba(0, 0, 0, .1);
	opacity: 0;
	z-index: 5;
}
.otherList_innerWrap {
	position: relative;
	width: 100%;
	background: #ffffff;
	box-shadow: 0px 2px 2px #76767685;
	border: 1px solid #fff;
	border-radius: 3px;
	transition: .2s;
	z-index: 3;
}
.otherList_innerWrap::after {
	content: '';
  position: absolute;
  top: 45%;
  right: 12px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 3px solid #323232;
  border-right: 3px solid #323232;
  transform: translateY(-50%) rotate(135deg);
  box-sizing: border-box;
}
.otherList_innerWrap .pseudoLabel {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	color: #333;
  z-index: 1;
}
.otherList_wrap { /*追従アンカー用*/
	display: flex;
	width: 100%;
	margin: 0 15px;
	padding: 10px 0;
	text-align: center;
	text-align: -webkit-center;
}
.otherList_wrap_02 { /*固定位置用*/
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	padding: 15px 0;
	text-align: right;
	text-align: -webkit-right;
}

@media (min-width: 768px) {
  .otherList_innerWrap:hover {
		border: 1px solid #cc0d21;
		transition: .2s;
  }
}
@media screen and (max-width:1600px) and (min-width:1281px) {
	.waveWrap .wave {
		left: -620px;
	}
}
@media screen and (max-width:1280px) and (min-width:768px) {
	.waveWrap .wave {
		left: -820px;
	}
}
@media screen and (max-width:767.98px) {
	.otherList_wrap {
		padding: 7px 0;
		font-size: 1.4rem;
	}
	.otherList_innerWrap form select {
		height: 30px;
	}
}
/*=====================*/


/*introductionArea
=======================*/
.introductionArea {
	margin-top: 90px;
}
.introductionArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.introductionArea h2 span {
	position: relative;
}
.introductionArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.introductionArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}

.introductionBox {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin-top: 80px;
}
.introductionBox .introductionItem {
	position: relative;
	padding: 75px 15px 20px;
	color: #008e9d;
	font-size: 1.5rem;
	letter-spacing: -1px;
	text-align: center;
	background: #e5f3f5;
}
.introductionBox .introductionItem .roundBox {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 58px;
}
.introductionBox .introductionItem .whiteRound {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	font-size: 1.7rem;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 3px 3px rgba(0, 0, 0, .1);
}
.introductionBox .introductionItem .boldTxt {
	font-size: 2rem;
	font-weight: bold;
}

@media screen and (max-width:767.98px) {
	.introductionArea {
		margin-top: 55px;
	}
	.introductionArea h2 {
		font-size: 2rem;
		overflow: hidden;
	}
	.introductionArea h2 span::before,
	.introductionArea h2 span::after {
		height: 1px;
		width: 100%;
	}
	.introductionArea h2 span::before {
		left: -105%;
	}
	.introductionArea h2 span::after {
		right: -105%;
	}
	.introductionBox {
		display: block;
		margin-top: 55px;
		padding: 0 10px;
	}
	.introductionBox .introductionItem:first-of-type {
		margin-top: 0;
	}
	.introductionBox .introductionItem {
		margin-top: 55px;
	}
	.introductionBox .introductionItem .roundBox {
		gap: 20px;
		top: -30px;
	}
	.introductionBox .introductionItem .whiteRound {
		width: 90px;
		height: 90px;
	}
	.introductionBox .introductionItem p {
		font-size: 1.2rem;
	}
	.introductionBox .introductionItem .boldTxt {
		font-size: 1.3rem;
	}
}

/*=========ポイント下注釈============*/

.annotation {
  color: #666;
  font-size: 1.4rem;
  margin-top: 40px;
  padding: 0 45px;
}

/*--------ナンバリングあり---------*/
.annotation .an_num {
  position: relative;
  padding-left: 2.0em;
}
.annotation_mark {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------ナンバリングなし---------*/
.annotation .an_nor {
  position: relative;
  padding-left: 1.8rem;
}
.annotation_mark {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.annotation li + li {
  margin-top: 3px;
}
@media screen and (max-width:767.98px) {
  .annotation {
    color: #444;
    font-size: 1.1rem;
  }
}

/*=====================*/


/*courseArea
=======================*/
.courseArea {
	margin-top: 100px;
	padding-top: 35px;
}
.courseArea_inner {
	max-width: 980px;
	margin: 0 auto;
}
.courseArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.courseArea h2 span {
	position: relative;
}
.courseArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.courseArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}

@media screen and (max-width:767.98px) {
	.courseArea {
		margin-top: 20px;
	}
	.courseArea h2 {
		overflow: hidden;
	}
	.courseArea h2 span {
		font-size: 2rem;
	}
	.courseArea h2 span::before,
	.courseArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.courseArea h2 span::before {
		left: -370%;
	}
	.courseArea h2 span::after {
		right: -370%;
	}
}

/*---areaMenu---*/
.areaMenu {
	position: sticky;
	top: 0;
	margin-top: 30px;
	background: #d7d7d7;
	box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .1);
	z-index: 10;
}
.areaMenu ul {
	display: flex;
	max-width: 1160px;
	margin: 0 auto;
}
.areaMenu li {
	width: 100%;
	text-align: center;
}
.areaMenu li a {
	display: block;
	width: 100%;
	padding: 12px 0;
	color: #323232;
	font-size: 1.8rem;
}
.areaMenu li a span {
	position: relative;
	padding-left: 10px;
}
.areaMenu li a span::after {
	position: absolute;
	content: '';
	top: 45%;
	left: -8px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #323232;
	border-bottom: 2px solid #323232;
	transform: translateY(-45%) rotate(45deg);
}
@media (min-width: 768px) {
	.areaMenu li a {
		position: relative;
		overflow: hidden;
		transition: 0.2s ease all;
	}
	.areaMenu li a:hover {
		background: #fff;
		opacity: .8;
		transition: 0.2s ease all;
	}
}

@media screen and (max-width:767.98px) {
	.areaMenu ul {
		justify-content: center;
		flex-wrap: wrap;
		overflow: hidden;
	}
	.areaMenu li {
		justify-content: center;
		flex-wrap: wrap;
		width: auto;
	}
	.areaMenu li a {
		position: relative;
		padding: 10px 20px 10px 25px;
		font-size: 1.4rem;
	}
	.areaMenu li:first-of-type a::after {
		position: absolute;
		content: '';
		width: 1000%;
		height: 1px;
		bottom: 0;
		left: -100%;
		background: #a9a9a9;
	}
	.areaMenu li a span {
		padding-left: 0;
	}
	.areaMenu li a span::after {
		top: 35%;
    left: -15px;
    width: 8px;
    height: 8px;
		transform: translateY(-35%) rotate(45deg);
	}
}

/*---courseItemsBox---*/
.areaBlock {
	padding-bottom: 74px;
}
.areaBlock:first-of-type {
	margin-top: 52px;
}
.areaBlock h3 {
	margin: 0;
	padding: 10px 0;
	color: #fff;
	font-size: 2rem;
	text-align: center;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 25%, rgba(35,192,202,1) 45%, rgba(35,192,202,1) 55%, rgba(255,255,255,0) 75%);
}
.courseItemsBox {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.courseItem {
  width: 100%;
	padding: 18px 0;
	border-bottom: 1px solid #ddd;
}
.courseItem:first-of-type {
	border-top: 1px solid #ddd;
}
.courseItem .courseItem_area {
	max-width: 93px;
}
.courseItem_innerBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 5px;
}
.courseItem_innerBox .courseItem_innerItem {
	max-width: 680px;
}
.courseItem_title {
	color: #006596;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: underline;
}
.courseItem_txt {
	margin-top: 10px;
	color: #5b5b5b;
	font-size: 1.4rem;
}
.course__card__unit {
  font-size: 1.4rem;
	color: #707070;
	text-align: right;
}
.course__card__price {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
	letter-spacing: -.5px;
	color: #cc0d21;
	text-align: right;
}
.noCourseTxt {
	margin: 0 auto;
	font-size: 1.6rem;
}
.courseItemsBox .noCourseTxt_all {
	margin: 0 auto;
	font-size: 1.6rem;
	text-align: center;
	padding-bottom: 50px;
}
@media (min-width: 768px) {
	.courseItem a:hover .courseItem_title {
		color: #cc0d21;
		transition: all .3s;
	}
}
@media screen and (max-width:767.98px) {
	.areaBlock {
		padding-bottom: 47px;
	}
	.areaBlock h3 {
		padding: 3px 0;
		font-size: 1.7rem;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(35, 192, 202, 1) 45%, rgba(35, 192, 202, 1) 55%, rgba(255, 255, 255, 0) 100%);
	}
	.courseItemsBox {
		display: block;
		margin-top: 24px;
		padding: 0 10px;
	}
	.courseItem {
		width: 100%;
		margin-right: 0;
	}
	.courseItem_innerBox {
		display: block;
	}
	.courseItem_title {
		font-size: 1.5rem;
		line-height: 1.4;
	}
	.courseItem_txt {
		font-size: 1.2rem;
	}
	.courseItem_innerBox .courseItem_innerItem:nth-of-type(n+2) {
		margin-top: 10px;
	}
	.course__card__unit {
		margin-top: 0;
		font-size: 1.2rem;
	}
	.course__card__price {
		margin-top: 5px;
		font-size: 1.8rem;
	}
	.noCourseTxt {
		font-size: 1.3rem;
		text-align: center;
	}
	.courseItemsBox .noCourseTxt_all {
		font-size: 1.3rem;
		text-align: center;
    padding-bottom: 35px;
	}
}
/*=====================*/


/*selectdiv(pulldown)
=======================*/
.select_label {
  padding: 28px 0 0;
  font-weight: bold;
}
.selectdiv {
	position: relative;
	top: 0;
	max-width: 250px;
	width: 100%;
  margin: 35px auto;
	transition: .2s ease all;
}
select:focus {
	outline: 0;
	border: 1px solid #cc0d21;
}
select::-ms-expand {
  display: none;
}
.selectdiv::before {
  content: '';
  position: absolute;
  display: block;
  right: 60px;
  width: 1px;
  height: 32px;
  top: 50%;
	transform: translateY(-50%);
	background: #323232;
	cursor: pointer;
	z-index: 10;
}
.selectdiv::after {
  content: '';
  display: inline-block;
  padding: 0;
  position: absolute;
  pointer-events: none;
}
.selectdiv select {
  pointer-events: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 280px;
  height: 58px;
  margin: 5px auto;
  padding: 0 30px 0 20px;
	color: #232323;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  -ms-word-break: normal;
  word-break: normal;
	border: 1px solid #fff;
	border-radius: 5px;
  cursor: pointer;
	box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.selectdiv .decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.selectdiv .decoration::before,
.selectdiv .decoration::after {
	position: absolute;
	content: '';
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #323232;
  border-bottom: 2px solid #323232;
	cursor: pointer;
}
.selectdiv .decoration::before {
	top: 20px;
  transform: rotate(-135deg);
}
.selectdiv .decoration::after {
	top: 28px;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
	.selectdiv:hover select {
		border: 1px solid #cc0d21;
		transition: .2s ease all;
	}
}

@media screen and (max-width:767.98px) {
	.selectdiv {
		max-width: 205px;
	}
	.selectdiv select {
		height: 48px;
		padding: 4px 30px 0 20px;
		font-size: 1.5rem;
	}
	.selectdiv .decoration::before {
		top: 17px;
	}
	.selectdiv .decoration::after {
		top: 24px;
	}
	/*---iPhone only---*/
	.iPhone .selectdiv select {
		padding-top: 0;
	}
	/*-----------------*/
}
/*=====================*/


/*experienceArea
=======================*/
.experienceArea {
  margin-top: 30px;
}
.experienceArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.experienceArea h2 span {
	position: relative;
}
.experienceArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.experienceArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.experienceArea .radioBox {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.experienceArea .radioBox input[name="ex_filter"] {
	display: none;
}
.experienceArea .input_wrap label {
	display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
	min-height: 56px;
  padding: 8px 10px;
	color: #a0a0a0;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -.5px;
  border: 2px solid #cddef3;
	border-radius: 7px;
  line-height: 1;
	box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: .3s;
}
.experienceArea .input_wrap input:checked + label {
	color: #fff;
}
.experienceArea .input_wrap label.label_allVisible {
  border: 2px solid #a0a0a0;
}
.experienceArea .input_wrap input:checked + label.label_allVisible {
  background: #a0a0a0;
}
.experienceArea .input_wrap label.label_art {
  border: 2px solid #759473;
}
.experienceArea .input_wrap input:checked + label.label_art {
  background: #759473;
}
.experienceArea .input_wrap label.label_craft {
  border: 2px solid #e87791;
}
.experienceArea .input_wrap input:checked + label.label_craft {
  background: #e87791;
}
.experienceArea .input_wrap label.label_music {
  border: 2px solid #5fadcd;
}
.experienceArea .input_wrap input:checked + label.label_music {
  background: #5fadcd;
}
.experienceArea .input_wrap label.label_dance {
  border: 2px solid #957794;
}
.experienceArea .input_wrap input:checked + label.label_dance {
  background: #957794;
}
.experienceArea .input_wrap label.label_life {
  border: 2px solid #64acae;
}
.experienceArea .input_wrap input:checked + label.label_life {
  background: #64acae;
}
.experienceArea .input_wrap label.label_food {
  border: 2px solid #d79964;
}
.experienceArea .input_wrap input:checked + label.label_food {
  background: #d79964;
}
.experienceArea .input_wrap label.label_history {
  border: 2px solid #d45980;
}
.experienceArea .input_wrap input:checked + label.label_history {
  background: #d45980;
}
.experienceArea .input_wrap label.label_train {
  border: 2px solid #7092ad;
}
.experienceArea .input_wrap input:checked + label.label_train {
  background: #7092ad;
}
.experienceArea .exItem_wrap_list {
	overflow: hidden;
}
.experienceArea .ex_itemBox {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 40px;
	padding: 5px;
}
.experienceArea .ex_item {
	width: calc((100% - 39px)/4);
	border-radius: 5px;
	box-shadow: 0 1px 3px 2px rgba(0, 0, 0, .2);
	overflow: hidden;
}
.experienceArea .ex_item a {
	color: #434343;
}
.experienceArea .ex_titBlock {
	padding: 10px;
	color: #434343;
}
.experienceArea .ex_item.ex_art .ex_titBlock {
	background: #e2ebe1;
}
.experienceArea .ex_item.ex_craft .ex_titBlock {
	background: #ffe7e6;
}
.experienceArea .ex_item.ex_music .ex_titBlock {
	background: #d1e7f1;
}
.experienceArea .ex_item.ex_dance .ex_titBlock {
	background: #eee0ed;
}
.experienceArea .ex_item.ex_life .ex_titBlock {
	background: #d6eeef;
}
.experienceArea .ex_item.ex_food .ex_titBlock {
	background: #f2dfd0;
}
.experienceArea .ex_item.ex_history .ex_titBlock {
	background: #f9dee7;
}
.experienceArea .ex_item.ex_train .ex_titBlock {
	background: #e5e8ec;
}
.experienceArea .ex_titBlock .ex_tit {
	margin-top: 8px;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
}
.ex_tagBox {
	display: flex;
	gap: 10px;
	margin: 0;
}
.ex_tagBox .ex_tag {
	width: 125px;
	padding: 3px 10px;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	border-radius: 50px;
}
.ex_tagBox .ex_tag.category {
	color: #fff;
}
.ex_item.ex_art .ex_tagBox .ex_tag.category {
	background: #4a6948;
}
.ex_item.ex_craft .ex_tagBox .ex_tag.category {
	background: #e1706d;
}
.ex_item.ex_music .ex_tagBox .ex_tag.category {
	background: #4a9ab8;
}
.ex_item.ex_dance .ex_tagBox .ex_tag.category {
	background: #71496b;
}
.ex_item.ex_life .ex_tagBox .ex_tag.category {
	background: #288d8e;
}
.ex_item.ex_food .ex_tagBox .ex_tag.category {
	background: #d79964;
}
.ex_item.ex_history .ex_tagBox .ex_tag.category {
	background: #d45980;
}
.ex_item.ex_train .ex_tagBox .ex_tag.category {
	background: #7092ad;
}
.ex_tagBox .ex_tag.country {
	background: #fff;
}
.ex_item.ex_art .ex_tagBox .ex_tag.country {
	color: #4a6948;
}
.ex_item.ex_craft .ex_tagBox .ex_tag.country {
	color: #e1706d;
}
.ex_item.ex_music .ex_tagBox .ex_tag.country {
	color: #4a9ab8;
}
.ex_item.ex_dance .ex_tagBox .ex_tag.country {
	color: #71496b;
}
.ex_item.ex_life .ex_tagBox .ex_tag.country {
	color: #288d8e;
}
.ex_item.ex_food .ex_tagBox .ex_tag.country {
	color: #d79964;
}
.ex_item.ex_history .ex_tagBox .ex_tag.country {
	color: #d45980;
}
.ex_item.ex_train .ex_tagBox .ex_tag.country {
	color: #7092ad;
}
.ex_contentBlock {
	padding: 12px 10px 25px;
}
.ex_contentBlock figure {
	position: relative;
	max-width: 260px;
	margin: 0 auto;
	border-radius: 5px;
	overflow: hidden;
}
.ex_contentBlock figcaption {
	position: absolute;
	bottom: 3px;
	right: 7px;
	font-size: 1.3rem;
	text-align: right;
	color: #fff;
	text-shadow: rgba(0, 0, 0, .8) 1px 0 2px, rgba(0, 0, 0, .8) .5403px .84147px 2px, rgba(0, 0, 0, .8) -.41615px .9093px 2px, rgba(0, 0, 0, .8) -.98999px .14112px 2px, rgba(0, 0, 0, .8) -.65364px -.7568px 2px, rgba(0, 0, 0, .8) .28366px -.95892px 2px, rgba(0, 0, 0, .8) .96017px -.27942px 2px;
}
.ex_contentBlock .ex_course_detailBox {
	margin-top: 10px;
}
.ex_contentBlock .ex_courseIcon {
	position: relative;
	display: inline-block;
	padding: 3px 9px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	background: #ddd;
}
.ex_contentBlock .ex_courseIcon::after {
	content: '';
  position: absolute;
  top: 50%;
  right: -29px;
  transform: translateY(-50%);
  border: 13px solid transparent;
  border-left: 16px solid #ddd;
}
.ex_item.ex_art .ex_contentBlock .ex_courseIcon {
	background: #8ba789;
}
.ex_item.ex_art .ex_contentBlock .ex_courseIcon::after {
  border-left: 16px solid #8ba789;
}
.ex_item.ex_craft .ex_contentBlock .ex_courseIcon {
	background: #d98d8a;
}
.ex_item.ex_craft .ex_contentBlock .ex_courseIcon::after {
  border-left: 16px solid #d98d8a;
}
.ex_item.ex_music .ex_contentBlock .ex_courseIcon {
	background: #81b6cb;
}
.ex_item.ex_music .ex_contentBlock .ex_courseIcon::after {
  border-left: 16px solid #81b6cb;
}
.ex_item.ex_dance .ex_contentBlock .ex_courseIcon {
	background: #a582a0;
}
.ex_item.ex_dance .ex_contentBlock .ex_courseIcon::after {
  border-left: 16px solid #a582a0;
}
.ex_item.ex_life .ex_contentBlock .ex_courseIcon {
	background: #6da7a7;
}
.ex_item.ex_life .ex_contentBlock .ex_courseIcon::after {
  border-left: 16px solid #6da7a7;
}
.ex_item.ex_food .ex_contentBlock .ex_courseIcon {
	background: #E5AE7F;
}
.ex_item.ex_food .ex_contentBlock .ex_courseIcon::after {
  border-left: 16px solid #E5AE7F;
}
.ex_item.ex_history .ex_contentBlock .ex_courseIcon {
	background: #E087A3;
}
.ex_item.ex_history .ex_contentBlock .ex_courseIcon::after {
  border-left: 16px solid #E087A3;
}
.ex_item.ex_train .ex_contentBlock .ex_courseIcon {
	background: #96AFC3;
}
.ex_item.ex_train .ex_contentBlock .ex_courseIcon::after {
  border-left: 16px solid #96AFC3;
}
.ex_contentBlock .ex_courseTit{
	margin-top: 8px;
	font-size: 1.4rem;
	font-weight: bold;
}
.no_items {
	margin: 20px auto;
  font-size: 2rem;
  font-weight: bold;
	text-align: center;
}

@media (min-width: 768px) {
	.experienceArea .input_wrap label:hover {
		color: #fff;
		transition: .3s;
	}
	.experienceArea .input_wrap label.label_allVisible:hover {
		background: #a0a0a0;
	}
	.experienceArea .input_wrap label.label_art:hover {
		background: #759473;
	}
	.experienceArea .input_wrap label.label_craft:hover {
		background: #e87791;
	}
	.experienceArea .input_wrap label.label_music:hover {
		background: #5fadcd;
	}
	.experienceArea .input_wrap label.label_dance:hover {
		background: #957794;
	}
	.experienceArea .input_wrap label.label_life:hover {
		background: #64acae;
	}
	.experienceArea .input_wrap label.label_food:hover {
		background: #d79964;
	}
	.experienceArea .input_wrap label.label_history:hover {
		background: #d45980;
	}
	.experienceArea .input_wrap label.label_train:hover {
		background: #7092ad;
	}
	.experienceArea .ex_item a:hover {
		color: #cc0d21;
	}
}

@media screen and (max-width:767.98px) {
	.experienceArea h2 {
		overflow: hidden;
	}
	.experienceArea h2 span {
		font-size: 2rem;
	}
	.experienceArea h2 span::before,
	.experienceArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.experienceArea h2 span::before {
		left: -370%;
	}
	.experienceArea h2 span::after {
		right: -370%;
	}
	.experienceArea .radioBox {
		flex-wrap: wrap;
		gap: 9px;
		margin-top: 30px;
		padding: 0 10px;
	}
	.experienceArea .input_wrap {
		width: calc((100% - 18px)/3);
	}
	.experienceArea .input_wrap label {
		min-height: 42px;
		width: 100%;
		padding: 5px 10px 8px;
		font-size: 1.7rem;
	}
	.experienceArea .ex_itemBox {
		display: block;
		margin-top: 30px;
		padding: 5px 10px 50px;
	}
	.experienceArea .ex_item {
		width: 100%;
		margin-bottom: 20px;
	}
	.experienceArea .ex_item:last-of-type {
		margin-bottom: 0;
	}
	.ex_contentBlock figure {
		max-width: 150px;
    max-height: 86px;
	}
	.ex_contentBlock figcaption {
		font-size: 1rem;
	}
	.experienceArea .ex_titBlock {
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.ex_tagBox {
		display: block;
	}
	.ex_tagBox .ex_tag {
		width: 75px;
		padding: 3px 4px;
		font-size: 1rem;
		line-height: 1.4;
		letter-spacing: -.5px;
	}
	.ex_tagBox .ex_tag.country {
		margin-top: 5px;
	}
	.experienceArea .ex_titBlock .ex_tit {
		display: flex;
		align-items: center;
		max-width: 73%;
		margin-top: 0;
		font-size: 1.5rem;
		text-align: left;
	}
	.ex_contentBlock {
		display: flex;
		gap: 10px;
		padding: 10px;
	}
	.ex_contentBlock .ex_courseIcon::after {
		right: -24px;
		border: 11px solid transparent;
	}
	.ex_item.ex_art .ex_contentBlock .ex_courseIcon::after {
		border-left: 14px solid #8ba789;
	}
	.ex_item.ex_craft .ex_contentBlock .ex_courseIcon::after {
		border-left: 14px solid #d98d8a;
	}
	.ex_item.ex_music .ex_contentBlock .ex_courseIcon::after {
		border-left: 14px solid #81b6cb;
	}
	.ex_item.ex_dance .ex_contentBlock .ex_courseIcon::after {
		border-left: 14px solid #a582a0;
	}
	.ex_item.ex_life .ex_contentBlock .ex_courseIcon::after {
		border-left: 14px solid #6da7a7;
	}
	.ex_item.ex_food .ex_contentBlock .ex_courseIcon::after {
    border-left: 14px solid #E5AE7F;
	}
	.ex_item.ex_history .ex_contentBlock .ex_courseIcon::after {
		border-left: 14px solid #E087A3;
	}
	.ex_item.ex_train .ex_contentBlock .ex_courseIcon::after {
		border-left: 14px solid #96AFC3;
	}
	.ex_contentBlock .ex_courseTit {
		margin-top: 5px;
		font-size: 1.3rem;
		line-height: 1.4;
	}
	.ex_contentBlock .ex_course_detailBox {
		max-width: 52%;
		margin-top: 0;
	}
	.ex_contentBlock .ex_courseIcon {
		padding: 2px 6px 3px;
		font-size: 1rem;
	}
	.no_items {
    margin: 20px auto;
    font-size: 1.8rem;
	}
}
/*=====================*/



/*readMoreBtn
=======================*/
.ex_itemBox_wrap {
  position: relative;
}
.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 105px;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
  z-index: 2;
}
.readMore__button {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
  display: none;
  width: 240px;
  margin: 30px auto;
	z-index: 5;
}
.readMore__button__type {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 2px solid #b4b4b4;
  border-radius: 50px;
  outline: none;
  background-color: #ededed;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .1);
	color: #686868;
	font-weight: bold;
  cursor: pointer;
	transition: .2s;
}
.readMore__button__label {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
}
.label_after {
  position: relative;
}
.label_after:after, .readMore__button__label:before {
  right: 16px;
  width: 20px;
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  height: 2px;
  background: #6f6f6f;
  content: "";
}
.label_after:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
 
@media screen and (min-width: 768px) {
  .readMore__button__type:hover {
    border-color: #fff;
    color: #fff;
    background: #9c9c9c;
    transition: .2s;
    box-shadow: none;
  }
  .readMore__button__type:hover .label_after:after, .readMore__button__type:hover .readMore__button__label:before {
    background: #fff;
    transition: 0.2s;
  }
}
@media screen and (max-width: 767.98px) {
  .readMore__button,
  .readMore__button__type {
    width: 95%;
  }
  .readMore__button {
		margin: 10px 0;
  }
  .readMore__button__type {
    margin: 0 auto;
  }
  .readMore__button__label {
    padding: 5px 20px;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .readmore-content::before {
    height: 60px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 15%, rgba(255,255,255,0.8) 50%, #fff 60%);
  }
}
/*=======================*/



/*confirmedCourseArea
=======================*/
.confirmedCourseArea {
  margin-top: 70px;
}
.confirmedCourseArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.confirmedCourseArea h2 span {
	position: relative;
}
.confirmedCourseArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.confirmedCourseArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.confirmedCourseItemsWrap {
	margin-top: 30px;
}
.courseItem_upperBox {
	display: flex;
	gap: 25px;
}
.confirmedCourseArea .courseItem_innerBox {
	margin-top: 10px;
}
.courseItem_date {
	color: #333;
	font-size: 1.5rem;
	font-weight: bold;
}
.courseItem_iconBox {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
}
.courseItem_iconBox p {
	min-width: 93px;
	min-height: 24px;
	padding: 0 15px;
}
.courseItem_iconBox .icon_area {
	width: 93px;
	height: 24px;
	padding: 0;
}
.courseItem_iconBox .icon_confirmed {
	color: #fff;
	background: #d61a3d;
	border-radius: 5px;
}
.courseItem_iconBox .icon_adult {
	padding: 1px;
	background: rgb(2,180,191);
	background: -webkit-linear-gradient(bottom, rgba(2,180,191,1) 0%, rgba(0,83,103,1) 100%);
	background: -o-linear-gradient(bottom, rgba(2,180,191,1) 0%, rgba(0,83,103,1) 100%);
	background: linear-gradient(to top, rgba(2,180,191,1) 0%, rgba(0,83,103,1) 100%);
	border-radius: 5px;
}
.courseItem_iconBox .icon_adult .icon_adult_inner {
	display: block;
	width: 100%;
	color: #005367;
	background: #fff;
	border-radius: 5px;
}
.courseItem_iconBox .icon_conductor {
	padding: 0 10px;
	color: #5e5e5e;
	background: #fff;
	border: 1px solid #5e5e5e;
	border-radius: 4px;
}

@media screen and (max-width:767.98px) {
	.confirmedCourseArea {
		margin-top: 30px;
	}
	.confirmedCourseArea h2 {
		overflow: hidden;
	}
	.confirmedCourseArea h2 span {
		font-size: 2rem;
	}
	.confirmedCourseArea h2 span::before,
	.confirmedCourseArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.confirmedCourseArea h2 span::before {
		left: -370%;
	}
	.confirmedCourseArea h2 span::after {
		right: -370%;
	}
	.confirmedCourseItemsWrap {
		padding: 0 10px;
	}
	.courseItem_iconBox {
		flex-wrap: wrap;
		font-size: 1.3rem;
	}
}
/*=====================*/


/*area_button
=======================*/
.area_button{
  text-align: center;
  margin: 40px 0;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.area_button .contents_wrap{
  justify-content: center;
  flex-wrap: wrap;
}
.area_button__titbox__fukidashi{
  position: relative;
  display: inline-block;
  border-bottom: solid 1px #cc0d20;
  padding: 5px 0;
  color: #cc0d20;
  font-weight: bold;
  font-size: 18px;
}
.area_button__titbox__fukidashi:before,
.area_button__titbox__fukidashi:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area_button__titbox__fukidashi:before {
  border: solid 9px transparent;
  border-top: solid 14px #cc0d20;
}
.area_button__titbox__fukidashi:after {
  border: solid 11px transparent;
  border-top: solid 17px #fff;
  margin-top: -5px;
}
.area_button__titbox__tit{
  font-size: 2.4rem;
  color: #333333;
  margin: 15px 5px;
}
.area_button__link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 760px;
}
.area_button__link li{
  width: 100%;
}
.area_button__link li a{
  text-align: center;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: bold;
  border: 2px solid #cc0d20;
  border-radius: 5px;
  padding: 10px 36px 9px 9px;
  width: 100%;
  color: #333333;
  box-shadow: 0 1px 1px 1px rgb(0 0 0 / 10%);
}
.area_button__link li a:before{
	display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #cc0d21;
  content: "";
  width: 27px;
}
.area_button__link li a:after{
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  top: calc(50% - 4px);
  right: 10px;
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
	.area_button {
		margin-top: 0;
	}
	.area_button__link li{
		max-width: 138px;
	}
	.area_button__link li a:hover{
		opacity: 0.7;
	}
}
@media screen and (max-width:767.98px) {
	.area_button__link {
		margin: 0 10px 0;
	}
  .area_button__link li a {
    padding: 10px 36px 9px 9px;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
}
/*=====================*/


/*pageTopBtn
=======================*/
.pageTopBtn {
	display: inline-block;
  width: 52px;
  /*left: calc(100vw - 5em);*/
	left: 93%;
	position: sticky;
	bottom: 30px;
	text-align: right;
	opacity: 0;
	z-index: 10;
}
.pageTopBtn_inner {
	margin: auto;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
	background: #aaaaaa;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
	cursor: default;
}
.pageTopBtn a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pageTopBtn.-show {
	opacity: 1;
}
.pageTopBtn.-show a {
	cursor: pointer;
}
.pageTopBtn.-transition500 {
	transition: .2s ease;
}

@media screen and (min-width:768px) {
	.pageTopBtn a:hover {
		background: #c2c2c2;
	}
}

@media screen and (max-width:767.98px) {
	.pageTopBtn a {
		width: 45px;
    height: 45px;
	}
	.pageTopBtn a:before {
		width: 16px;
    height: 16px;
	}
}
/*=====================*/


/*themefeaturesArea
=======================*/
.themefeaturesArea {
	margin-top: 90px;
}
.themefeaturesArea_inner {
	max-width: 1160px;
	margin: 35px auto 0;
}
.themefeaturesArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.themefeaturesArea h2 span {
	position: relative;
}
.themefeaturesArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.themefeaturesArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}

@media screen and (max-width:767.98px) {
	.themefeaturesArea {
		margin-top: 50px;
	}
	.themefeaturesArea h2 {
		overflow: hidden;
	}
	.themefeaturesArea h2 span {
		font-size: 2rem;
	}
	.themefeaturesArea h2 span::before,
	.themefeaturesArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.themefeaturesArea h2 span::before {
		left: -370%;
	}
	.themefeaturesArea h2 span::after {
		right: -370%;
	}
}

.slider.slick-initialized {
	display: block;
}

/*-----slider-----*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
  /*slick-initializedが付与されたら表示*/
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
/*----------------*/

.relationList {
  display: flex;
  justify-content: center;
  width: 87.4%;
  max-width: 990px;
  margin: 0 auto !important;
}
.relationList li {
  box-sizing: border-box;
  width: 33.3%;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .relationList li {
    width: 50%;
  }
}
.relationList li a {
  display: block;
  margin: 0 6%;
  transition: opacity .3s ease-out;
}
.relationList li a:hover {
  opacity: .7;
}
.relationList__nav {
  display: none;
  margin-top: 10px;
  text-align: center;
}

.relationList__nav > div {
  position: relative;
  display: inline-block;
  padding: 0 75px;
}
@media screen and (max-width: 767px) {
  .relationList__nav > div {
    padding: 0 52px;
  }
}
.relationList__nav .slick-arrow {
  width: 35px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .relationList__nav .slick-arrow {
    width: 40px;
  }
}
.relationList__nav .slick-arrow:before {
  content: '';
  display: block;
  padding-top: 100%;
  background: url(../img/btn_arrow_01.png) no-repeat 0 0/contain;
  opacity: 1;
}
.relationList__nav .slick-next {
  right: 0;
}
.relationList__nav .slick-next:before {
  transform: rotateZ(180deg);
}
.relationList__nav .slick-prev {
  left: 0;
}
.relationList__nav .slick-dots {
  position: static;
  display: inline-block;
  line-height: 1;
}
.relationList__nav .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background: #ccc;
  border-radius: 50%;
  overflow: hidden;
}
.relationList__nav .slick-dots button {
  width: 100%;
  height: 0;
  padding: 100% 0 0;
  text-indent: -9999px;
}
.relationList__nav .slick-dots .slick-active button {
  background: #008e9d; /*テーマごとの色へ変更*/
}

.relationList.slider + .relationList__nav {
  display: block;
}

.relationList.slider + .relationList__nav.add_none {
  display: none;
}
@media screen and (max-width: 767px) {
  .relationList.slider + .relationList__nav.add_none{
    display: block;
  }
	.otherFeaturesBox > li {
		width: 168px;
		margin: 2%;
	}
}
/*=====================*/
.scroll-hint-icon {
	z-index: 5;
}


/*seminarArea
=======================*/
.seminarArea {
	margin-top: 90px;
}
.seminarArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.seminarArea h2 span {
	position: relative;
}
.seminarArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.seminarArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.seminarArea .seminarBtn_wrap {
  margin-top: 40px;
	font-family: 'Noto Serif Japanese', 'Hiragino Mincho ProN、ヒラギノ明朝 ProN', serif;
}
.seminarArea .seminarBtn {
	position: relative;
	width: 680px;
  min-height: 90px;
  cursor: pointer;
  transition: all linear .2s;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
	margin: 0 auto;
  background-color: #762627;
  box-shadow: 0 4px 0px 0px #521818;
}
.seminarArea .seminarBtn::after {
	position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  width: 25px;
  height: 25px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.seminar_itemBox {
	display: flex;
	justify-content: space-between;
	gap: 130px;
	max-width: 870px;
	margin: 20px auto 0;
}
.seminar_itemBox .seminar_item {
	width: 100%;
}
.seminar_itemBox .seminar_item h3 {
	display: flex;
	align-items: center;
	margin: 0 0 15px 0;
	font-size: 2rem;
}
.seminar_itemBox .seminar_item h3 span {
	margin-left: 15px;
	padding: 0 10px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: normal;
	font-family: 'Noto Serif Japanese', 'Hiragino Mincho ProN、ヒラギノ明朝 ProN', serif;
	background: #762627;
	border-radius: 5px;
}
.consultation_box {
	display: flex;
  align-items: center;
  gap: 25px;
}
.consultation_box p {
	font-size: 1.7rem;
}
.consultation_box figure {
	max-width: 110px;
}
.seminarArea .seminarBtn a {
	display: inline-block;
  width: 100%;
  padding: 20px 50px 20px 40px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
}
.seminarArea .seminarBtn span {
  background: #fff;
  color: #762627;
  padding: 0 10px;
  border-radius: 5px;
}
.ebook_box {
  display: flex;
  justify-content: space-between;
}
.ebook_box a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
	min-height: 90px;
	margin: 15px 0;
	padding-left: 90px;
  background: #ffffff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333333 !important;
  border-radius: 5px;
  border: 1px solid #dedede;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.1));
}
.ebook_box a .ebook_img {
  position: absolute;
	left: 10px;
}
.ebook_box a .ebook_img img {
  max-width: 80px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border: #dedede 1px solid;
}
.ebook_box a:first-child {
  margin-right: 0;
}
.ebook_box a .ebook_tit {
  display: inline-block;
  padding-right: 16px;
  font-size: 1.7rem;
  width: 100%;
}
.ebook_box a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.seminar_item button {
  display: flex;
  max-width: 85%;
  width: 100%;
  margin: 15px auto 15px 0;
  background: #008e9d;
  border: none;
  border-radius: 50px;
  filter: drop-shadow(0px 2px 0px rgba(0, 105, 116, 1));
  transition: all .2s;
}
.seminar_item.consultation button {
  background: #762627;
  filter: drop-shadow(0px 2px 0px rgba(82, 24, 24, 1));
}
.seminar_item button a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 7px 30px 5px 20px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.seminar_item button a::after {
  position: absolute;
  content: '';
  top: 47%;
  right: 12px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: transparent;
  transform: rotate(-45deg) translateY(-47%);
}

@media screen and (min-width:768px) {
	.seminarArea .seminarBtn:hover {
    box-shadow: 0px 0px 0px rgba(213, 154, 129, 0.5);
    transform: translate(0, 4px);
    text-decoration: none;
    transition: .2s ease;
	}
	.ebook_box a:hover,
	.ebook_link:hover {
    opacity: 0.7;
  }
  .seminar_item button:hover {
    filter: drop-shadow(0px 0px 0px rgba(0, 142, 157, 1));
    transform: translate(1px, 3px);
    transition: all .2s;
  }
}

@media screen and (max-width: 767px) {
	.seminarArea {
    margin-top: 50px;
	}
	.seminarArea h2 {
		overflow: hidden;
	}
	.seminarArea h2 span {
		font-size: 2rem;
	}
	.seminarArea h2 span::before,
	.seminarArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.seminarArea h2 span::before {
		left: -370%;
	}
	.seminarArea h2 span::after {
		right: -370%;
	}
	.seminar_itemBox .seminar_item h3 {
		margin: 0px 0 10px 0;
		font-size: 1.7rem;
	}
	.seminar_itemBox .seminar_item h3 span {
		padding: 0 10px 1px;
		font-size: 1.3rem;
	}
	.consultation_box p {
    font-size: 1.4rem;
	}
	.seminarArea .seminarBtn_wrap {
  	margin-top: 20px;
		padding: 0 10px;
	}
	.seminarArea .seminarBtn {
		width: 100%;
	}
	.seminarArea .seminarBtn a {
    padding: 15px 40px 15px 25px;
    font-size: 1.8rem;
		line-height: 1.4;
		text-align: center;
	}
	.seminarArea .seminarBtn::after {
    right: 20px;
	}
	.ebook_box {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .ebook_box a {
    background: #ffffff;
    max-width: 510px;
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333333;
    border-radius: 5px;
    border: 1px solid #dedede;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.1));
    margin-bottom: 5px;
  }
  .ebook_box a:first-child {
    margin-right: 0px;
  }
  .ebook_box a .ebook_tit {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
		font-size: 1.6rem;
  }
  .ebook_box a .ebook_tit::before {
    right: 5px;
  }
  .ebook_box a img {
    max-width: 100px;
  }
	.seminar_itemBox .seminar_item:nth-of-type(n+2) {
		margin-top: 40px;
	}
	.seminar_itemBox {
		display: block;
		padding: 0 10px;
	}
  .seminar_item button {
    max-width: 510px;
    margin: 20px auto 10px;
  }
	.seminar_item button a {
		padding: 7px 30px 3px 20px;
	}
}
/*=====================*/



/*courseItem_accordion
=======================*/
.courseItem_accordion {
  margin-top: 20px;
  border: 1px solid #23c0ca;
}
.courseItem_accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}
.courseItem_accordion-header {
  position: relative;
  cursor: pointer;
  padding: 5px 45px 5px 10px;
  color: #23c0ca;
  font-size: 1.7rem;
  background-color: #e5f3f5;
	transition: .2s;
}
.courseItem_accordion-header::before, .courseItem_accordion-header::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #23c0ca;
  border-radius: 5px;
  top: 47%;
  right: 15px;
  bottom: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.courseItem_accordion-header::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.courseItem_accordion-header.active::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.courseItem_accordion-header.active {
  border-bottom: 1px solid #23c0ca;
}
.courseItem_accordion .contentsBox {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px;
}
.courseItem_accordion .txtBlock {
  max-width: 75%;
  width: 100%;
}
.courseItem_accordion .txtBlock p {
  margin-top: 5px;
  color: #5b5b5b;
  font-size: 1.3rem;
}
.courseItem_accordion .txtBlock p.txt_tit {
  display: inline-block;
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, #caf0f2 60%, #caf0f2 100%);
}
.courseItem_accordion .txtBlock p.txt_tit:nth-of-type(n+2) {
  margin-top: 10px;
}
.courseItem_accordion .courseBtn {
  display: flex;
  max-width: 70%;
  width: 100%;
  margin: 20px auto;
  background: #23c0ca;
  border: none;
  border-radius: 50px;
  filter: drop-shadow(0px 2px 0px rgba(0, 142, 157, 1));
  transition: all .2s;
}
.courseItem_accordion .courseBtn a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 3px 30px 3px 20px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.courseItem_accordion .courseBtn a::after {
  position: absolute;
  content: '';
  top: 47%;
  right: 12px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: transparent;
  transform: rotate(-45deg) translateY(-47%);
}
.courseItem_accordion .contentsBox figure {
  position: relative;
  max-width: 213px;
  max-height: 160px;
  margin: 0 auto;
}
.courseItem_accordion .contentsBox figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.courseItem_accordion .contentsBox figure figcaption {
  position: absolute;
  right: 5px;
  bottom: 2px;
  color: #fff;
  font-size: 1.2rem;
	line-height: 1.4;
  text-shadow: rgba(0, 0, 0, .8) 1px 0 2px, rgba(0, 0, 0, .8) .5403px .84147px 2px, rgba(0, 0, 0, .8) -.41615px .9093px 2px, rgba(0, 0, 0, .8) -.98999px .14112px 2px, rgba(0, 0, 0, .8) -.65364px -.7568px 2px, rgba(0, 0, 0, .8) .28366px -.95892px 2px, rgba(0, 0, 0, .8) .96017px -.27942px 2px;
  text-align: right;
}

@media screen and (min-width: 768px) {
	.courseItem_accordion-header:hover {
		color: #fff;
		background: #23c0ca;
		transition: .2s;
	}
	.courseItem_accordion-header:hover::before, .courseItem_accordion-header:hover::after {
		background-color: #fff;
	}
  .courseItem_accordion .courseBtn:hover {
    filter: drop-shadow(0px 0px 0px rgba(0, 142, 157, 1));
    transform: translate(1px, 3px);
    transition: all .2s;
  }
}

@media screen and (max-width: 767.98px) {
  .courseItem_accordion-header {
    padding: 3px 35px 3px 10px;
    font-size: 1.4rem;
  }
  .courseItem_accordion-header::before, .courseItem_accordion-header::after {
    right: 10px;
    width: 15px;
    height: 2px;
  }
  .courseItem_accordion .contentsBox {
    display: block;
  }
  .courseItem_accordion .txtBlock {
    max-width: 100%;
  }
  .courseItem_accordion .contentsBox figure {
    max-width: 240px;
    max-height: 140px;
    margin-top: 15px;
  }
  .courseItem_accordion .courseBtn {
    max-width: 100%;
    margin: 20px auto 10px;
  }
  .courseItem_accordion .txtBlock p {
    font-size: 1.2rem;
  }
  .courseItem_accordion .txtBlock p.txt_tit {
    font-size: 1.3rem;
  }
	.courseItem_accordion .contentsBox figure figcaption{
		font-size: 1.1rem;
	}
}
/*=====================*/
.ebook_box .prep_dp{
padding-left: 0;
justify-content: center;
pointer-events: none;
background-color: #d7d7d7;
}
.ebook_box .prep_dp::before{
display:none;
}
@media screen and (max-width: 767px) {
.ebook_box .prep_dp{
font-size: 1.8rem;
}
.menuNav .navItem, .menuNav .navItem.narrow {
width: calc(100% / 2);
}
.menuNav .navItem:nth-child(2), .menuNav .navItem.narrow:nth-child(2){
border:none;
}
