@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 10px;
}
@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;
  position: relative;
}
.kv .slider-item p {
  position: absolute;
  bottom: 5px;
  right: 1%;
  color: #fff;
  font-size: 1.4rem;
}
.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: 235px;
    margin: 0 auto;
		padding: 0;
		font-size: 1.5rem;
		font-weight: normal;
	}
	.kvArea .introTxt {
		margin-top: 0;
		padding: 4px 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(156,36,69);
	background: radial-gradient(circle, rgba(156,36,69) 0%, rgba(216,115,158,1) 80%);
}
.waveWrap .wave.-two {
  opacity: 1;
	background: rgb(156,36,69);
	background: radial-gradient(circle, rgba(156,36,69) 0%, rgba(216,115,158,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: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 130%;
    margin-top: 0;
		border-radius: 50%;
		animation: slide-skew 1.5s;
	}
  .kv .slider-item p {
    font-size: 1.0rem;
    bottom: 3px;
  }
}
/*----------*/
/*=====================*/


/*menuNav
=======================*/
.menuNav {
	position: sticky;
  top: 0;
  background: #ffe4ec;
  z-index: 50;
}
.menuNav_inner {
	display: flex;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
}
.menuNav .navItem {
	width: 100%;
	font-size: 1.6rem;
	text-align: center;
	background: #bc5073;
}
.menuNav .navItem.narrow {
	width: 85%;
	font-size: 1.8rem;
}
.nav_01 {
  border-right: 2px solid #fff;
}
.menuNav .navItem a {
  display: flex;
  justify-content: center;
  align-items: center;
	width: 100%;
	height: 100%;
	padding: 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: #bc5073;
		background: #fff;
		opacity: .8;
		transition: 0.2s ease all;
	}
	.menuNav .navItem a:hover span::after {
		border-right: 2px solid #bc5073;
		border-bottom: 2px solid #bc5073;
	}
}

@media screen and (max-width:767.98px) {
	.menuNav_inner {
		flex-wrap: wrap;
	}
	/*.menuNav .navItem,
	.menuNav .navItem.narrow {
		width: calc(100% / 3);
		font-size: 1.3rem;
	}*/
	.menuNav .navItem,
	.menuNav .navItem.narrow {
		width: 50%;
		font-size: 1.3rem;
	}
	.menuNav .navItem:nth-of-type(2n) {
		border-right: none;
	}
	.menuNav .navItem:nth-of-type(3) {
		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: 10px 15px;
	}
	.menuNav .navItem a span {
		position: static;
		line-height: 1.2;
	}
	.menuNav .navItem a span::after {
		display: none;
		top: auto;
    right: auto;
		bottom: 10px;
		left: 50%;
		transform: translate(-50%, 0) rotate(45deg);
	}
}

@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 30px;
	padding: 7px 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;
  text-align: center;
}
.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%);
}
.introductionArea h3 {
  color: #bc5073;
  font-size: 2.7rem;
}
.introductionArea p {
  font-size: 2.0rem;
}
.introductionArea .theme_box {
  margin: 50px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.introductionArea .theme_box .theme_wrap {
  width: 38%;
}
.introductionArea .theme_box .theme_wrap .border {
  background: #fff0f5;
  text-align: center;
  padding: 5px 25px 15px;
  border-radius: 80px;
  position: relative;
}
.introductionArea .theme_box .theme_wrap .b_02,
.introductionArea .theme_box .theme_wrap .b_04 {
  margin-top: 75px;
}
.introductionArea .theme_box .theme_wrap .border::before {
  position: absolute;
  content: "";
  border: 3px solid #d0849d70;
  border-radius: 80px;
  width: 100%;
  height: 100%;
  top: -6px;
  left: 0;
}
.introductionArea .theme_box .theme_wrap .b_01,
.introductionArea .theme_box .theme_wrap .b_02,
.introductionArea .theme_box .theme_wrap .b_03,
.introductionArea .theme_box .theme_wrap .b_04 {
  position: relative;
  
}
.introductionArea .theme_box .theme_wrap .border .theme_p {
  font-size: 1.7rem;
}
.bd_Height {
  align-items: center;
}

.introductionArea .theme_box .theme_wrap .b_01 .theme_p,
.introductionArea .theme_box .theme_wrap .b_02 .theme_p,
.introductionArea .theme_box .theme_wrap .b_03 .theme_p,
.introductionArea .theme_box .theme_wrap .b_04 .theme_p {
  position: relative;
  display: grid;
}
.introductionArea .theme_box .theme_wrap .b_01 .theme_p::after {
  position: absolute;
  color: #d0849d;
  background: #fff;
  content: "01";
  font-size: 3.5rem;
  top: -41px;
  left: 3%;
  padding: 0 5px;
  line-height: 1;
  font-weight: bold;
}
.introductionArea .theme_box .theme_wrap .b_02 .theme_p::after {
  position: absolute;
  color: #d0849d;
  background: #fff;
  content: "02";
  font-size: 3.5rem;
  top: -41px;
  left: 3%;
  padding: 0 5px;
  line-height: 1;
  font-weight: bold;
}
.introductionArea .theme_box .theme_wrap .b_03 .theme_p::after {
  position: absolute;
  color: #d0849d;
  background: #fff;
  content: "03";
  font-size: 3.5rem;
  top: -41px;
  left: 3%;
  padding: 0 5px;
  line-height: 1;
  font-weight: bold;
}
.introductionArea .theme_box .theme_wrap .b_04 .theme_p::after {
  position: absolute;
  color: #d0849d;
  background: #fff;
  content: "04";
  font-size: 3.5rem;
  top: -41px;
  left: 3%;
  padding: 0 5px;
  line-height: 1;
  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%;
	}
  .introductionArea h3 {
    font-size: 1.5rem;
    margin: 10px 5px 5px 5px;
  }
  .introductionArea p {
    font-size: 1.3rem;
    margin-top: 10px;
  }
  /*.introductionArea .theme_wrap li {
    width: 100%;
    margin: 5px 0 0 0;
    padding: 10px 5px 10px 5px;
    background: rgb(43,107,81);
    background: linear-gradient(90deg, rgba(43,107,81,1) 0%, rgba(51,126,96,1) 21%, rgba(115,163,143,1) 29%, rgba(217,232,226,1) 33%, rgba(227,239,234,1) 100%);
  }
  .introductionArea .theme_wrap li h4 {
    font-size: 2.1rem;
    width: 38%;
  }
  .introductionArea .theme_wrap li p {
    font-size: 1.2rem;
    line-height: 1.2;
    width: 84%;
    margin-top: 0;
  }*/
  .introductionArea .theme_box {
    flex-direction: column;
  }
  .introductionArea .theme_box .theme_wrap {
    width: 95%;
    margin: 0 auto;
  }
  .introductionArea .theme_box .theme_wrap .border {
    padding: 3px 5px 10px;
  }
  .introductionArea .theme_box .theme_wrap .b_02,
  .introductionArea .theme_box .theme_wrap .b_03,
  .introductionArea .theme_box .theme_wrap .b_04 {
    margin-top: 40px;
  }
  /*.introductionArea .theme_box .theme_wrap .b_01::after,
  .introductionArea .theme_box .theme_wrap .b_02::after,
  .introductionArea .theme_box .theme_wrap .b_03::after,
  .introductionArea .theme_box .theme_wrap .b_04::after {
    font-size: 2.8rem;
  }
  .introductionArea .theme_box .theme_wrap .b_01::after,
  .introductionArea .theme_box .theme_wrap .b_02::after,
  .introductionArea .theme_box .theme_wrap .b_04::after {
    top: -77%;
  }
  .introductionArea .theme_box .theme_wrap .b_03::after {
    top: -46%;
  }*/
  .introductionArea .theme_box .theme_wrap .b_01 .theme_p::after,
  .introductionArea .theme_box .theme_wrap .b_02 .theme_p::after,
  .introductionArea .theme_box .theme_wrap .b_03 .theme_p::after,
  .introductionArea .theme_box .theme_wrap .b_04 .theme_p::after {
    font-size: 2.8rem;
    top: -38px;
    left: 8%;
  }
  .introductionArea .theme_box .theme_wrap .border .theme_p {
    font-size: 1.5rem;
    margin: 5px 0;
  }
}
@media screen and (max-width:360px) {
  .introductionArea .theme_box .theme_wrap .border .theme_p {
    font-size: 1.3rem;
  }
  
}

/*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;
}
.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_innerBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 5px;
}
.courseItem_innerBox .courseItem_innerItem {
	max-width: 660px;
}
.courseItem_innerBox .courseItem_innerItem + .courseItem_innerBox .courseItem_innerItem {
  max-width: 700px;
}
.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.5rem;
  font-weight: 700;
  line-height: 1.2;
	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;
	}
	.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;
	}
	/*-----------------*/
}
/*=====================*/



/*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 .courseItem_area {
	width: 93px;
	height: 24px;
	padding: 0;
}
.courseItem_iconBox .icon_confirmed {
	color: #fff;
	background: #d61a3d;
	border-radius: 5px;
}
.courseItem_iconBox .icon_tsunagaritabi {
	padding: 1px;
	background: rgb(156,36,69);
	background: -webkit-linear-gradient(bottom, rgba(216,115,158,1) 0%, rgba(156,36,69) 100%);
	background: -o-linear-gradient(bottom, rgba(216,115,158,1) 0%, rgba(156,36,69) 100%);
	background: linear-gradient(to top, rgba(216,115,158,1) 0%, rgba(156,36,69) 100%);
	border-radius: 5px;
}
.courseItem_iconBox .icon_tsunagaritabi .icon_tsunagaritabi_inner {
	display: block;
	width: 100%;
	color: #9c2445;
	background: #fff;
	border-radius: 5px;
}
.courseItem_iconBox .icon_conductor {
	padding: 0 10px;
	color: #5e5e5e;
	background: #fff;
	border: 1px solid #5e5e5e;
	border-radius: 4px;
}


/*.courseItem_iconBox .courseItem_country {
  color: #fff;
  background-color: #0058a4;
	border-radius: 5px;
}*/
.courseItem_iconBox .courseItem_area {
  max-width: 93px;
}
.courseItem_iconBox .courseItem_hiking {
  color: #6ea13f;
	border-radius: 5px;
  border: 1px solid #6ea13f;
	background: #fff;
}
.courseItem_iconBox .courseItem_nature {
  color: #356f3e;
	border-radius: 5px;
  border: 1px solid #356f3e;
	background: #fff;
}
.courseItem_iconBox .courseItem_unexplored {
  color: #1f5f3c;
	border-radius: 5px;
  border: 1px solid #1f5f3c;
	background: #fff;
}
.courseItem_iconBox .courseItem_wildlife {
  color: #62953e;
	border-radius: 5px;
  border: 1px solid #62953e;
	background: #fff;
}

@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: #909090; /*テーマごとの色へ変更*/
}

.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: 0;
}
.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: #bc5073;
  border: none;
  border-radius: 50px;
  filter: drop-shadow(0px 2px 0px rgba(160, 63, 95, 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: 0;
	}
	.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 #bc5073;
}
.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: #bc5073;
  font-size: 1.7rem;
  background-color: #ffe4ec;
	transition: .2s;
}
.courseItem_accordion-header::before, .courseItem_accordion-header::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #bc5073;
  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 #bc5073;
}
.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%, #FFCEDC 60%, #FFCEDC 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: #bc5073;
  border: none;
  border-radius: 50px;
  filter: drop-shadow(0px 2px 0px rgba(160, 63, 95, 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: #bc5073;
		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;
}
}
