@charset "UTF-8";

/*common
===============================*/
#main{
	box-sizing: border-box;
	font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, 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;
}
.spOnly {
	display: none;
}
@media screen and (max-width:767.98px) {
	.pcOnly {
		display: none;
	}
	.spOnly {
		display: block;
	}
}
/*=============================*/


/*kvArea
===============================*/
.kvArea h1 {
	margin: 0;
}
@media screen and (max-width:767.98px) {
}
/*=============================*/



/*charm_box
/*===============================*/
.charm_box {
  /*padding: 20px auto;*/
  /*margin: auto;*/
  text-align: center;
}
.charm_box p {
  display: inline-block;
  border-radius: 10px;
  padding:10px 20px;
  margin: 30px auto;
}

.tc_color .charm_box p {
  border: 2px solid #32cb80;
}
.fr_color .charm_box p {
  border: 2px solid #6ed65e;
}


@media print, screen and (min-width: 768px) {
  .charm_box p {
    width: 75%;
    font-size: 1.8rem;
  }
}
@media screen and (max-width:767.98px) {
.charm_box {
    width: 95%;
    margin: auto;
  }
  .charm_box p {
    margin: 30px auto;
    font-size: 1.2rem;
    padding: 5px 3px;
  }
}



/*===============================*/


/*anc
/*=============================*/

.stickyBar {
  position: sticky;
  top: 92px;
  z-index: 150;
  background: #e4f8ee;
  height: 90px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stickyBar ul {
  display: flex;
  align-items: center;
}
.stickyBar ul li a {
  color: #fff;
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  border-image-slice: 1;
  width: 350px;
  position: relative;
  transition: all 0.4s ease-out;
}
.tc_link {
  background-color: #32cb80;
}
.fr_link {
  background-color: #6ed65e;
}
.stickyBar ul li a::after {
  content: "";
  vertical-align: baseline;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 3px;
}

.stickyBar ul li:nth-child(n+2){
  margin-left: 60px;
}
.stickyBar ul li {
  box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.2);
}
.stickyBar ul li:hover {
  opacity: 0.7;
}
.stickyBar ul li:active {
  margin-top: 0.4em;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}


@media print, screen and (min-width: 768px) {
  
}
@media screen and (max-width:767.98px) {
  .stickyBar {
    top: 50px;
    height: 70px;
  }
  .stickyBar ul {
    padding: 20px 0;
  }
  .stickyBar ul li {
    box-shadow: none;
}
  .stickyBar ul li:nth-child(n+2){
    margin-left: 20px;
}
  .stickyBar ul li a {
    height: 40px;
    width: 160px;
    font-size: 1.4rem;
  }
  .stickyBar ul li a::after {
    width: 10px;
    height: 10px;
    margin-left: 15px;
}
}

/*------------*/

/*=============================*/


/*courseArea
===============================*/
.courseArea h2 {
	margin: 0;
	padding: 16px 0;
	font-size: 2.6rem;
	text-align: center;
}
.tc_color h2 {
  background: #32cb80;
}
.fr_color h2 {
  background: #6ed65e;
}
/*.courseArea h2 span {
	position: relative;
	padding-right: 47px;
}
.courseArea h2 span::after {
	position: absolute;
	content: '';
	top: 0;
	right: -5px;
	width: 48px;
	height: 34px;
	background: url("../images/ic_01.png") no-repeat;
}*/
/*.courseArea .eachArea:nth-of-type(n+2) {
	margin-top: 30px;
}*/
.courseArea h2 {
  margin-top: 40px;
}
.courseArea .eachArea h3 {
	position: sticky;
	margin: 0;
	padding-bottom: 10px;
	font-size: 4rem;
	text-align: center;
	line-height: 1;
	background: #fff;
	letter-spacing: -1px;
	z-index: 5;
}
.tc_color h3 {
  color: #32cb80;
}
.fr_color h3 {
  color: #6ed65e;
}
.courseArea .eachArea h3 span {
	font-size: 3rem;
}
@media screen and (max-width:767.98px) {
	.courseArea h2 {
		padding: 10px 0;
		font-size: 1.8rem;
	}
	/*.courseArea h2 span {
		padding-right: 35px;
	}
	.courseArea h2 span::after {
		width: 31px;
		height: 22px;
		background: url("../images/ic_01.png") no-repeat;
		background-size: contain;
	}*/
  .tc_color h2 span::after {
		top: 28px;
	}
  .fr_color h2 span::after {
		top: 0;
	}
	.courseArea .eachArea h3 {
		font-size: 2.4rem;
	}
	.courseArea .eachArea h3 span {
		font-size: 1.5rem;
	}
}

/*---courseBox---*/
.courseBox {
	padding: 30px 0;
}
.tc_color .courseBox {
  background: #e2fff1;
}
.fr_color .courseBox {
	background: #e6ffe2;
}
.courseBox {
	margin-top: 10px;
}
.courseBox .courseBox_inner {
	display: flex;
	flex-wrap: wrap;
	max-width: 1500px;
	margin: 0 auto;
}
.recommend__item {
	max-width: 360px;
	margin-right: 20px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.recommend__item:nth-of-type(4n),
.recommend__item:last-of-type {
	margin-right: 0;
}
.recommend__item:nth-of-type(n+5) {
	margin-top: 30px;
}
.recommend__card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.recommend__card__body {
	padding: 30px 30px 20px;
}
.recommend__card__iconBox {
	display: flex;
	align-items: center;
}
.recommend__card__code {
  display: inline-block;
  padding: 3px 10px;
  border: 2px solid #ddd;
  color: #000;
  text-align: center;
	min-width: 90px;
  font-size: 1.8rem;
  line-height: 20px;
}
.recommend__card__dateIcon {
	margin-left: 20px;
	padding: 0 16px;
	color: #fff;
  font-size: 1.8rem;
	border-radius: 13px;
}
.tc_color .recommend__card__dateIcon {
  background: #32cb80;
}
.fr_color .recommend__card__dateIcon {
  background: #6ed65e;
}
.recommend__card__title {
	margin-top: 8px;
  color: #000;
  font-size: 2.2rem;
  font-weight: 700;
  transition: color .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
.recommend__card__sub {
  margin-top: 5px;
}
.recommend__card__unit {
	margin-top: 15px;
	font-size: 1.4rem;
  color: #707070;
  text-align: right;
}
.recommend__card__price {
	margin-top: 10px;
	font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #cc0d21;
  text-align: right;
}
.recommend__card__img {
  position: relative;
}
.recommend__card__img__caption {
  position: absolute;
  color: #fff;
  text-shadow: rgba(0, 0, 0, .8) 1px 0 2px, rgba(0, 0, 0, .8) 0.5403px 0.84147px 2px, rgba(0, 0, 0, .8) -0.41615px 0.9093px 2px, rgba(0, 0, 0, .8) -0.98999px 0.14112px 2px, rgba(0, 0, 0, .8) -0.65364px -0.7568px 2px;
  text-align: right;
	right: 12px;
  bottom: 9px;
  padding-left: 12px;
  font-size: 1.6rem;
}
.recommend__card__img img {
	border-radius: 20px 20px 0 0;
}

@media print, screen and (max-width: 1499px) and (min-width:768px) {
	.courseBox .courseBox_inner {
		max-width: 1200px;
	}
	.recommend__item {
    max-width: 285px;
	}
	.recommend__card__img__caption {
		font-size: 1.4rem;
	}
	.recommend__card__code {
    min-width: 80px;
    font-size: 1.6rem;
	}
	.recommend__card__dateIcon {
    font-size: 1.6rem;
	}
	.recommend__card__body {
    padding: 20px 25px 15px;
	}
	.recommend__card__unit {
    font-size: 1.1rem;
	}
	.recommend__card__title,
	.recommend__card__price {
    font-size: 2rem;
	}
}
@media print, screen and (min-width: 768px) {
	.recommend__item a:hover {
		opacity: .7;
	}
}
@media print, screen and (max-width:767.98px) and (min-width:660px) {
	.recommend__item {
		margin-right: 20px!important;
	}
	.recommend__item:nth-of-type(2) {
		margin-top: 0;
	}
	.recommend__item:nth-of-type(2n),
	.recommend__item:last-of-type {
		margin-right: 0!important;
	}
	.recommend__card__img__caption {
		font-size: 1.4rem;
	}
	.recommend__card__code {
    min-width: 80px;
    font-size: 1.6rem;
	}
	.recommend__card__dateIcon {
    font-size: 1.6rem;
	}
	.recommend__card__body {
    padding: 20px 25px 15px;
	}
	.recommend__card__unit {
    font-size: 1.1rem;
	}
	.recommend__card__title,
	.recommend__card__price {
    font-size: 2rem;
	}
}
@media screen and (max-width:767.98px) {
	.courseBox {
		padding: 25px 10px;
	}
	.courseBox .courseBox_inner {
		justify-content: center;
	}
	.recommend__item {
		max-width: 300px;
	}
	.recommend__item,
	.recommend__item:nth-of-type(n+4) {
		margin-top: 35px;
		margin-right: 0;
	}
	.recommend__item:first-of-type {
		margin-top: 0;
	}
	.recommend__card__img__caption {
		font-size: 1.3rem;
	}
	.recommend__card__body {
		padding: 15px 16px 20px;
	}
	.recommend__card__code,
	.recommend__card__dateIcon {
		font-size: 1.4rem;
	}
	.recommend__card__code {
		padding: 1px 8px;
	}
	.recommend__card__dateIcon {
		padding-left: 18px;
	}
	.recommend__card__title {
		font-size: 1.8rem;
	}
	.recommend__card__unit {
		margin-top: 10px;
		font-size: 1.3rem;
	}
	.recommend__card__price {
		font-size: 2.2rem;
	}
	.iPhone .recommend__card__price {
		font-size: 1.8rem;
	}
  .courseArea h2 {
  margin-top: 30px;
}
  .courseArea .eachArea h3 {
    margin: 0;
  }
  
}
@media screen and (max-width:359px) {
	.recommend__card__price {
		font-size: 2.1rem;
	}
	.iPhone .recommend__card__price {
		font-size: 2rem;
	}
}
/*=============================*/


/*other
===============================*/
@media print, screen and (min-width: 768px) {
	.Footer {
    margin-top: 75px;
	}
}
@media screen and (max-width:767.98px) {
	.Footer {
    margin-top: 50px;
	}
}

/*-------scrollanimation-------*/
.scroll_up {
  transition: 1.5s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.fadeIn{
animation-name:fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.rweb2404{
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    margin-top: 15px;
}
.rweb2404 a{
    font-size: 1.6rem;
    font-weight: bold;
    
}
.rweb2404 a:hover{
   text-decoration: underline;
}



/*courseArea
=======================*/
.courseArea {
	/*margin-top: 100px;*/
	padding-top: 35px;
	background: #fff;
}
.courseArea_inner {
	max-width: 1160px;
	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: 50px;
	}*/
	.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: #32cb80;
	box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .1);
	z-index: 10;
}
.areaMenu ul {
	display: flex;
  /*max-width: 1160px;*/
	max-width: 1350px;
	margin: 0 auto;
}
.areaMenu li {
	width: 100%;
	text-align: center;
}
.areaMenu li a {
	display: block;
	width: 100%;
	padding: 12px 0;
	color: #fff;
	font-size: 1.8rem;
}
.areaMenu li a span {
	position: relative;
	padding-left: 12px;
}
.areaMenu li a span::after {
	position: absolute;
	content: '';
	top: 40%;
	left: -4px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translateY(-40%) rotate(45deg);
}
@media (min-width: 768px) {
	.areaMenu li a {
		position: relative;
		overflow: hidden;
		transition: 0.2s ease all;
	}
	.areaMenu li a:hover {
		background: #98d5b7;
		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: 6px 12px 6px 12px;
		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: -12px;
    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;
	font-size: 2.4rem;
	text-align: center;
	background: #32cb80;
  color: #fff;
}
.courseItemsBox {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.courseItem {
  width: calc((100% - 32px) / 3);
  margin-right: 16px;
}
.courseItem:nth-of-type(3n) {
	margin-right: 0;
}
.courseItem:nth-of-type(n+4) {
	margin-top: 30px;
}
.courseItem a {
  display: block;
  border-radius: 5px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.course__card {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.course__card__tagBox {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 5;
}
.course__card__tagBox ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.course__card__tagBox ul li {
	margin: 0 10px 10px 0;
	padding: 3px 12px;
	color: #fff;
	font-size: 1.3rem;
	background: rgb(0 0 0 / .5);
	border-radius: 30px;
}
.course__card__img__caption {
  position: absolute;
	right: 12px;
  bottom: 9px;
  padding-left: 12px;
  font-size: 1.4rem;
  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;
  text-align: right;
}
.course__card__body {
	padding: 18px 18px 15px;
	background: #fff;
}
.course__card__codeArea__box {
	display: flex;
  flex-wrap: wrap;
}
.course__card__code {
	position: relative;
  display: inline-block;
	min-width: 90px;
  padding: 0 10px 0 15px;;
  border: 1px solid #ddd;
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  line-height: 20px;
}
.course__card__code::after {
	position: absolute;
	content: '';
	top: -1px;
	left: -1px;
	width: 6px;
	height: 22px;
	background: #c51f1f;
}
.course__card__code02 {
  margin-left: 5px;
}
.course__card__area__label {
	display: inline-block;
  min-width: 90px;
	margin-left: 10px;
  padding: 1px 10px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 20px;
}
.course__card__title {
  margin-top: 8px;
	color: #000000;
  font-size: 1.8rem;
  font-weight: 700;
	transition: all .3s;
}
.course__card__sub {
	margin-top: 5px;
}
.course__card__area {
  line-height: 1;
  text-align: right;
}
.course__card__unit {
  margin-top: 15px;
  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;
}
main [class*="course__card__head"] {
	padding-top: 52%;
	background-image: url(/med/app-files/img/tabimono_img.png);
  background-size: 60% auto;
  background-position: center;
  background-color: #C1C1C1;
  background-repeat: no-repeat;
  height: 0;
  position: relative;
  overflow: hidden;
}
main [class*="js_rweb2404_img_"] {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
}
main [class*="js_rweb2404_img_"]::after {
	top: 0;
}
main [class*="js_rweb2404_caption_"] {
	z-index: 2;
}
.noCourseTxt {
	margin: 0 auto;
	font-size: 1.6rem;
}
.courseArea_inner .noCourseTxt_all {
    margin: 0 auto;
	font-size: 1.6rem;
    text-align: center;
    padding-bottom: 50px;
}
.courseItemsBox .noCourseTxt_all{
    margin: 0 auto;
	font-size: 1.6rem;
    text-align: center;
    padding-bottom: 50px;
}
@media (min-width: 768px) {
	.courseItem a:hover .course__card__title {
		color: #cc0d21;
		text-decoration: underline;
		transition: all .3s;
	}
}
@media screen and (max-width:767.98px) {
	.areaBlock {
		padding-bottom: 47px;
	}
	.areaBlock h3 {
		padding: 8px 0;
		font-size: 1.7rem;
	}
	.courseItemsBox {
		display: block;
		margin-top: 24px;
		padding: 0 10px;
	}
	.courseItem {
		width: 100%;
		margin-right: 0;
	}
	.courseItem:nth-of-type(n+2) {
		margin-top: 15px;
	}
	.course__card {
		display: flex;
		background: #fff;
	}
	main [class*="course__card__head"] {
		padding-top: 0;
		padding-left: 34%;
	}
	main [class*="js_rweb2404_img_"]::after {
		background-size: cover;
	}
	main [class*="bgContain js_rweb2404_img_"]::after {
		background-size: contain!important;
	}
	.course__card__img__caption {
		right: 8px;
    bottom: 5px;
		font-size: 1rem;
	}
	.course__card__tagBox {
		position: static;
	}
	.course__card__tagBox ul {
		margin-top: 8px
	}
	.course__card__tagBox ul li {
		margin: 0 5px 5px 0;
		padding: 2px 7px;
		font-size: 1rem;
	}
	.course__card__body {
		width: 100%;
		padding: 8px 10px;
	}
	.course__card__code {
		min-width: 62px;
		font-size: 1.2rem;
	}
  .course__card__code02 {
    margin-left: 5px;
  }
	.course__card__area {
		text-align: left;
	}
	.course__card__area__label {
		min-width: 60px;
		font-size: 1rem;
	}
	.course__card__title {
		font-size: 1.5rem;
	}
	.course__card__unit {
		margin-top: 5px;
		font-size: 1.1rem;
	}
	.course__card__price {
		margin-top: 5px;
		font-size: 1.7rem;
	}
	.noCourseTxt {
		font-size: 1.3rem;
		text-align: center;
	}
    .courseItemsBox .noCourseTxt_all{
         font-size: 1.3rem;
		text-align: center;
    padding-bottom: 35px;
}
}
/*=====================*/

/*---------大阪万博コース---------*/
.expo_img_area {
    content: "";
    display: block;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-color: #C1C1C1;
}

@media (min-width: 768px) {
  .expo__body {
    position: relative;
}
  .expo_course {
    display: inline-block;
    font-size: 1.2rem;
    color: #707070;
    text-align: end;
    position: absolute;
    top: 0;
    right: 5px;
  }
}
@media screen and (max-width:767.98px) {
  .expo__body {
    position: relative;
}
  .expo_course {
    display: inline-block;
    font-size: 1.0rem;
    color: #707070;
    position: absolute;
    left: 5px;
    bottom: 0;
    text-align: left;
  }
  .expo_img_area {
    content: "";
    display: flex;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-color: #C1C1C1;
    align-items: center;
  }
  .expo__body .course__card__price  {
    width: 50%;
    margin-left: 50%;
  }
}
/*---------大阪万博コース---------*/

/*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: #32cb80;
	 pointer-events: none;
	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: 2px solid #32cb80;
	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 #32cb80;
  border-bottom: 2px solid #32cb80;
	 pointer-events: none;
}
.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;
	}
	/*-----------------*/
}
/*=====================*/


/*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;
  }
}
/*=====================*/

/*--コース番号2つ--*/
@media screen and (max-width: 351px) {
  .course__card__area__label03 {
    margin-top: 10px;
    margin-left: 0!important;
  }
}
/*----------------------------------*/

/*----------------------------------*/
/*--大阪万博コース--*/
.course__card__body {
  position: relative;
}
.expo_img_area {
  content: "";
  display: block;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-color: #C1C1C1;
}
@media screen and (min-width:768px) {
  .expo__body {
    position: relative;
  }
  .expo_course {
    display: inline-block;
    font-size: 1.2rem;
    color: #707070;
    text-align: end;
    position: absolute;
    top: 0;
    right: 5px;
  }
}
@media screen and (max-width: 768px) {
  .expo__body {
    position: relative;
  }
  .expo_course {
    display: inline-block;
    font-size: 1.0rem;
    color: #707070;
    position: absolute;
    left: 5px;
    bottom: 0;
    text-align: left;
  }
  .expo_img_area {
    content: "";
    display: flex;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-color: #C1C1C1;
      align-items: center;
  }
}
/*----------------------------------*/
