@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;
}
#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;
}
@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: 470px;
	margin: 0;
}
.kvTitWrap {
	position: absolute;
	top: 40%;
	left: 50%;
	max-width: 1160px;
	width: 100%;
	transform: translate(-50%, -40%);
	text-align: center;
	z-index: 5;
}
.kvArea h1 {
	position: relative;
	margin: 0;
	font-size: 3.4rem;
}
.kvArea .introTxt {
	margin-top: 45px;
	padding: 20px 50px;
	color: #fff;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 85%, rgba(255,255,255,0) 100%);
}
.kv .slider-item {
	height: 470px;
}
.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 15px;
		font-size: 1.5rem;
		font-weight: normal;
	}
	.kvArea .introTxt {
		margin-top: 18px;
		padding: 8px 30px;
		font-size: 1.2rem;
	}
}
/*=====================*/


/*menuNav
=======================*/
.menuNav {
	background: #efefef;
}
.menuNav_inner {
	display: flex;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
}
.menuNav .navItem {
	width: 100%;
	font-size: 2rem;
	text-align: center;
	background: #d7d7d7;
	border-right: 2px solid #a9a9a9;
}
.menuNav .navItem:last-of-type {
	border-right: none;
}
.menuNav .navItem a {
	display: block;
	width: 100%;
	padding: 20px;
  color: #323232;
}
.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 #323232;
	border-bottom: 2px solid #323232;
	transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 768px) {
	.menuNav .navItem {
		transition: 0.2s ease all;
	}
	.menuNav .navItem a:hover {
		background: #fff;
		opacity: .8;
		transition: 0.2s ease all;
	}
}

@media screen and (max-width:767.98px) {
	.menuNav .navItem {
		font-size: 1.5rem;
	}
	.menuNav .navItem a {
		padding: 20px 35px 20px 20px;
	}
	.menuNav .navItem a span::after {
		top: 30%;
    right: -20px;
		transform: translateY(-30%) rotate(45deg);
	}
}

@media screen and (max-width:359px) {
	.menuNav .navItem {
		font-size: 1.2rem;
	}
}
/*=====================*/


/*pointArea
=======================*/

/*-----pointArea_commonParts-----*/
.pointArea {
	margin-top: 90px;
}
.pointArea_inner {
	max-width: 1160px;
	margin: 0 auto;
}
.pointArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.pointArea h2 span {
	position: relative;
}
.pointArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.pointArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.pointArea .sub_info {
	position: relative;
  margin-left: 3.5em;
  margin-top: 15px;
  font-size: 1.6rem;
}
.pointArea .sub_info.dots::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  top: 14px;
  left: -43px;
  background: #cccccc;
  transform: translateY(-50%);
  border-radius: 50%;
}
.pointArea .txt_note {
  font-size: 1.3rem;
  color: #7e7e7e;
}
.pointArea .emphasisTxt {
  color: #7e7e7e;
  font-weight: bold;
  font-size: 2.4rem;
}

@media screen and (max-width:767.98px) {
	.pointArea {
		margin-top: 55px;
	}
	.pointArea h2 {
		font-size: 2rem;
		overflow: hidden;
	}
	.pointArea h2 span::before,
	.pointArea h2 span::after {
		height: 1px;
		width: 100%;
	}
	.pointArea h2 span::before {
		left: -105%;
	}
	.pointArea h2 span::after {
		right: -105%;
	}
	.pointArea .sub_info {
		margin-left: 3.7em;
    font-size: 1.4rem;
  }
	.pointArea .sub_info.dots::after {
    top: 11px;
    left: -40px;
  }
	.pointArea .emphasisTxt {
		font-size: 1.8rem;
	}
}
/*-------------------------------*/


/*-------pointArea_3column-------*/
.pointBox01_wrap {
	display: flex;
	flex-wrap: wrap;
	margin-top: 35px;
	counter-reset: num;
}
.pointBox01 {
	width: 350px;
	margin-right: 55px;
}
.pointBox01:nth-of-type(3n) {
	margin-right: 0;
}
.pointBox01:nth-of-type(n+4) {
	margin-top: 60px;
}
.pointBox01 .pointBox_img {
  max-width: 350px;
  max-height: 210px;
  width: 100%;
  height: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.pointBox01 .pointBox_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pointBox01_txt {
	position: relative;
	margin-top: 25px;
	padding: 0 30px;
	font-size: 1.8rem;
}
.pointBox01_txt::before {
	position: absolute;
	counter-increment: num;
	content: counter(num, decimal-leading-zero);
	top: -40px;
	right: 30px;
	color: #ebebeb;
	font-family: 'Roboto', sans-serif;
	font-size: 10rem;
	z-index: -1;
}

@media screen and (max-width:767.98px) {
	.pointBox01_wrap {
		display: block;
		padding: 0 10px;
	}
	.pointBox01 {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin-right: 0;
	}
	.pointBox01:nth-of-type(n+2) {
		margin-top: 33px;
	}
	.pointBox01 .pointBox_img {
		max-width: 210px;
		width: 42%;
		aspect-ratio: 1 / 1;
		border-radius: 12px;
	}
	.pointBox01_txt {
		width: 58%;
		margin-top: 0;
    padding: 0 10px 0 20px;
		font-size: 1.4rem;
	}
	.pointBox01_txt::before {
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		font-size: 11rem;
	}
}
@media screen and (max-width:767.98px) and (min-width:550px) {
	.pointBox01_txt::before {
		right: 10%;
		transform: translateY(-50%);
		font-size: 15rem;
	}
}
@media screen and (max-width:359px) {
	.pointBox01_txt::before {
		font-size: 9rem;
	}
}
/*-------------------------------*/

/*-----pointArea_flexReverse-----*/
.pointBox02_wrap {
	margin-top: 35px;
}
.pointBox02 {
	display: flex;
	align-items: center;
}
.pointBox02:nth-of-type(2n) {
	flex-direction: row-reverse;
}
.pointBox02:nth-of-type(n+2) {
	margin-top: 40px;
}
.pointBox02 .pointBox_img {
	max-width: 520px;
	max-height: 310px;
	width: 100%;
	aspect-ratio: 1.6774 / 1;
	border-radius: 10px;
	overflow: hidden;
}
.pointBox02:nth-of-type(2n) .pointBox_img {
	margin-left: 120px;
}
.pointBox02:nth-of-type(2n+1) .pointBox_img  {
	margin-right: 120px;
}
.pointBox02 .pointBox_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.pointBox02 .pointBox02_txtWrap {
	max-width: 560px;
}
.pointBox02 .pointBox02_txt {
	text-indent: -7.5em;
	margin-left: 7.5em;
	line-height: 2;
	font-size: 1.8rem;
}
.pointBox02 .pointBox02_txt.noLeader {
	text-indent: -3em;
	margin-left: 3em;
}
.pointBox02 .pointBox02_txt:nth-of-type(n+2) {
	margin-top: 40px;
}
.pointBox02 .pointBox02_txt span.num {
	position: relative;
	margin-right: 95px;
	padding: 8px 10px;
	font-size: 1.8rem;
	font-weight: bold;
	background: #cccccc;
	border-radius: 50%;
}
.pointBox02 .pointBox02_txt span.num:not(.noLeader)::after {
	position: absolute;
	content: '・・・';
	top: 56%;
	right: -140px;
	transform: translateY(-50%);
	color: #ccc;
	font-size: 5rem;
	font-weight: bold;
	letter-spacing: -30px;
}
.pointBox02 .pointBox02_txt span.num.noLeader {
  margin-right: 13px;
}

@media screen and (max-width:767.98px) {
	.pointBox02_wrap {
		padding: 0 45px;
	}
	.pointBox02 {
		display: block;
	}
	.pointBox02:nth-of-type(n+2) {
		margin-top: 35px;
	}
	.pointBox02 .pointBox_img {
		display: inline-block;
		max-width: 100%;
		max-height: 100%;
		overflow: hidden;
	}
	.pointBox02:nth-of-type(2n) .pointBox_img {
		margin-left: 0;
	}
	.pointBox02:nth-of-type(2n+1) .pointBox_img {
		margin-right: 0;
	}
	.pointBox02 .pointBox_img img {
		opacity: 1;
	}
	.pointBox02 .pointBox02_txtWrap {
		margin-top: 25px;
	}
	.pointBox02 .pointBox02_txt {
		text-indent: -3.3em;
		margin-left: 3.3em;
		font-size: 1.4rem;
	}
	.pointBox02 .pointBox02_txt.noLeader {
		text-indent: -3.5em;
		margin-left: 3.5em;
	}
	.pointBox02 .pointBox02_txt:nth-of-type(n+2) {
		margin-top: 25px;
	}
	.pointBox02 .pointBox02_txt span.num {
		margin-right: 10px;
		font-size: 1.4rem;
	}
	.pointBox02 .pointBox02_txt span.num::after {
		display: none;
	}
	/*---iPhone only---*/
	.iPhone .pointBox02 .pointBox02_txt {
		text-indent: -3.5em;
		margin-left: 3.5em;
	}
	.iPhone .pointBox02 .pointBox02_txt.noLeader {
		text-indent: -3.8em;
		margin-left: 3.8em;
	}
	.iPhone .pointBox02 .pointBox02_txt span.num {
		padding: 12px 10px;
	}
	/*-----------------*/
}
/*-------------------------------*/

/*--------pointArea_noImg--------*/
.pointBox03_wrap {
	margin-top: 35px;
}
.pointBox03_wrap .pointBox03_txtWrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 145px;
	border-radius: 8px;
	box-shadow: 0 2px 5px 3px rgba(0, 0, 0, .1);
}
.pointBox03_wrap .pointBox03_txt {
  text-indent: -7.3em;
  margin-left: 7.3em;
	line-height: 2;
	font-size: 1.8rem;
}
.pointBox03_wrap .pointBox03_txt:nth-of-type(n+2) {
	margin-top: 40px;
}
.pointBox03_wrap .pointBox03_txt.noLeader {
	text-indent: -3em;
	margin-left: 3em;
}
.pointBox03_wrap .pointBox03_txt span.num {
	position: relative;
	margin-right: 90px;
	padding: 8px 10px;
	font-size: 1.8rem;
	font-weight: bold;
	background: #cccccc;
	border-radius: 50%;
}
.pointBox03_wrap .pointBox03_txt span.num:not(.noLeader)::after {
	position: absolute;
	content: '・・・';
	top: 56%;
	right: -135px;
	transform: translateY(-50%);
	color: #ccc;
	font-size: 5rem;
	font-weight: bold;
	letter-spacing: -30px;
}
.pointBox03_wrap .pointBox03_txt span.num.noLeader {
  margin-right: 13px;
}

@media screen and (max-width:767.98px) {
	.pointBox03_wrap {
		padding: 0 10px;
	}
	.pointBox03_wrap .pointBox03_txtWrap {
		max-width: 100%;
		padding: 25px 20px;
	}
	.pointBox03_wrap .pointBox03_txt {
		text-indent: -7.5em;
		margin-left: 7.5em;
		font-size: 1.4rem;
		line-height: 1.8;
	}
	.pointBox03_wrap .pointBox03_txt:nth-of-type(n+2) {
		margin-top: 30px;
	}
	.pointBox03_wrap .pointBox03_txt.noLeader {
		text-indent: -3.7em;
		margin-left: 3.7em;
	}
	.pointBox03_wrap .pointBox03_txt span.num {
		margin-right: 66px;
		font-size: 1.4rem;
	}
	.pointBox03_wrap .pointBox03_txt span.num:not(.noLeader)::after {
		top: 58%;
		right: -100px;
		font-size: 4rem;
		letter-spacing: -23px;
	}
	.pointArea .pointBox03_wrap .sub_info {
    position: relative;
    margin-left: 3.7em;
    margin-top: 15px;
    font-size: 1.4rem;
	}
	.pointArea .pointBox03_wrap .sub_info.dots::after {
		top: 12px;
    left: -40px;
	}
	/*---iPhone only---*/
	.iPhone .pointBox03_wrap .pointBox03_txt span.num {
		padding: 12px 10px;
	}
	.iPhone .pointBox03_wrap .pointBox03_txt span.num::after {
		top: 52%;
		right: -118px;
	}
	/*-----------------*/
}
/*-------------------------------*/

/*=========ポイント下注釈============*/

.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;
  }
}

/*=====================*/




/*---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 h3 {
	margin: 0;
	padding: 10px 0;
	font-size: 2.4rem;
	text-align: center;
	background: #d7d7d7;
}
.courseItemsBox {
	display: flex;
	flex-wrap: wrap;
}
.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;
}
.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__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;
}
.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: 70px;
		font-size: 1.2rem;
	}
	.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;
}
}
/*=====================*/


/*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;
	}
	/*-----------------*/
}
/*=====================*/


/*area_button
=======================*/
.area_button{
  text-align: center;
  margin: 50px 0 40px;
  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__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: 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;
	}
}
/*=====================*/

.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.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;
    }

/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:768px) {
   
  .tab-label {
    height: 56px;
    margin-right: 5px;
    margin-left: 5px;
  }
}

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
	justify-content: center;
	max-width: 1120px;
  margin: 20px auto 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #aa9969;
  display: block;
  order: -1;
}
.caution-block > h2 {
	margin-bottom: 1px;
	padding-bottom: 5px;
	font-family: "Noto Serif JP",serif;
  text-align: center;
	border-bottom: 2px solid #AA9C66;
}
.caution-block > h2 > span {
  display: inline-block;
  color: #B43030;
  font-size: 2.4rem;
  line-height: 1.1;
  background: url(/med/feature/asia/cmn/img/top/tit_r.png) left center no-repeat,url("/med/feature/asia/cmn/img/top/tit_r.png") right center no-repeat;
  background-size: 72px auto, 72px auto;
  padding: 5px 130px;
  margin: 20px 0 15px;
}
.caution-block .wrap_conts01 {
  position: relative;
  background-color: #FEFFF2;
  box-sizing: border-box;
  border: 1px solid #AA9C66;
  padding: 2.678% 2% 30px;
	line-height: 1.7;
}

.h1-supplement{
	margin: 25px 0;
	text-align: center;
  color: #5A4700;
	font-family: "Noto Serif JP",serif;
  font-size: 2.4rem;
}
.tab-label {
	display: flex;
  align-items: center;
  justify-content: center;
	max-width: 272px;
	width: 15.5%;
	margin-bottom: 10px;
	padding: 7px .5em;
  color: #FFFFFF;
  background: LightGray;
	font-family: "Noto Serif JP", serif;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
	font-size: 1.4rem;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 8px;
	border: 1px solid #fff;
	transition: .4s;
}
.tab-label:hover{
	border: 1px solid #125687;
	background-color: #ffffff;
	color: #125687;
	transition: .4s;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
	text-align: center;
}
.tab-switch:checked+.tab-label {
  background: #325A8C;
}
.tab-switch:checked+.tab-label:hover {
	border: 1px solid #fff;
	color: #ffffff;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 20px 10px 50px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.tab-switch {
  display: none;
}

@media screen and (max-width:1000px) and (min-width:768px) {
	.tab-label {
    width: 18.5%;
		padding: 1em 0.5em;
		font-size: 1.15rem;
	}
}

@media screen and (max-width:767px) {
    
	.spOnly{
		display: block;
	}
    
    .pcOnly{
  display: none;
	}
  .tab-wrap {
	  justify-content: space-between;
		margin: 15px 5% 0;
	}
	.tab-label {
		width: 49%;
        margin-bottom: 5px;
        padding: 0.8em .5em;
		font-size: 1.3rem;
	}
	.tab-switch:checked+.tab-label+.tab-content{
		padding-bottom: 30px;
	}
	
	.h1-supplement{
		margin: 15px 0;
		font-size: 1.7rem;
	}
	.caution-block > h2 > span {
		margin: 15px 0 7px;
		padding: 5px 80px;
		background: url(/med/feature/europe/cmn/img/tit_l.svg) left center no-repeat, url(/med/feature/asia/cmn/img/top/tit_r.png) right center no-repeat;
    background-size: 70px auto, 70px auto;
	}
	.caution-block .wrap_conts01 {
		padding: 20px 3% 20px;
	}
	.caution-block .wrap_conts01 p {
		margin-bottom: 8px;
	}
	
}
@media screen and (max-width:374px) {
	.tab-label {
		font-size: 1.15rem;
	}
	.h1-supplement{
		font-size: 1.5rem;
	}
}


/*---▼タブ・コンテンツ内▼---*/
.tab-content h2{
	font-family: "Noto Serif JP", serif;
  display: inline-block;
  padding: 10px 130px;
  font-size: 2.4rem;
	font-weight: bold;
  line-height: 1.1;
  color: #B43030;
  background: url(/med/feature/europe/cmn/img/tit_l.svg) left center no-repeat, url(/med/feature/asia/cmn/img/top/tit_r.png) right center no-repeat;
  background-size: 72px auto, 72px auto;
}

.tab-content .wrap_crs01{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 25px;
  border: 2px solid #AA9C66;
  position: relative;
  padding: 50px 20px;
}

.tab-content .wrap_crs01:before{
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  top: 1px;
  left: 1px;
  border: 1px solid #AA9C66;
}
.tab-content-supplement {
	margin: 15px 0;
	text-align: center;
  color: #5A4700;
	font-family: "Noto Serif JP",serif;
  font-size: 2.4rem;
}
.wrap_crs01 > .ul_crs01 {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.wrap_crs01 > .crs_kado01 > img {
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: #fff;
}
.wrap_crs01 > .crs_kado01 > img:nth-of-type(1) {
  top: -10px;
  left: -10px;
}
.wrap_crs01 > .crs_kado01 > img:nth-of-type(2) {
  top: -10px;
  right: -10px;
}
.wrap_crs01 > .crs_kado01 > img:nth-of-type(3) {
  bottom: -10px;
  left: -10px;
}
.wrap_crs01 > .crs_kado01 > img:nth-of-type(4) {
  bottom: -10px;
  right: -10px;
}

.wrap_crs01 > .ul_crs01 {
  position: relative;
  z-index: 10;
}
.wrap_crs01 > .ul_crs01 > li {
  border-top: 1px dotted #999;
  padding-top: 30px;
  margin-bottom: 30px;
  text-align: left;
  overflow: hidden;
}
.wrap_crs01 > .ul_crs01 > li:nth-of-type(1) {
  border-top: none;
}
.wrap_crs01 > .ul_crs01 > li a {
  text-decoration: none;
  font-weight: bold;
}
.wrap_crs01 > .ul_crs01 > li .number-box{
	display: flex;
}
.wrap_crs01 > .ul_crs01 > li .crs_num01 {
  font-size: 1.2rem;
  width: 75px;
  border-left: 5px solid #FFB500;
	margin-bottom: 15px;
  padding: 5px 3px 3px 5px;
  line-height: 1.1;
}
.wrap_crs01 > .ul_crs01 > li .crs_tit01 {
  font-size: 2.2rem;
  line-height: 1.5;
  margin: -5px 0 5px;
}
.wrap_crs01 > .ul_crs01 > li .crs_eda01,
.wrap_crs01 > .ul_crs01 > li .crs_txt01{
	margin-bottom: 5px;
	line-height: 1.5;
	font-size: 1.5rem;
}
.course_plan_cond_box span.course_plan_cond{
    text-align: left;
    font-weight: normal;
}
.js_courseBox_tokyo .iconbox{
    display: flex;
    justify-content: flex-start;
}
.iconbox p img{
    width: auto;
    height: 22px;
}
.wrap_crs01 > .ul_crs01 > li .crs_price01 {
  font-size: 2.2rem;
  line-height: 1.5;
  color: #CC0000;
  font-weight: bold;
}


@media (max-width: 767px){
	.tab-content h2 {
    background: url(/med/feature/europe/cmn/img/tit_l.svg) left center no-repeat, url(/med/feature/asia/cmn/img/top/tit_r.png) right center no-repeat;
    background-size: 70px auto, 70px auto;
    padding: 5px 80px;
		font-size: 1.8rem;
	}
	.tab-content-supplement {
		margin: 10px 0;
		font-size: 1.8rem;
	}
	.tab-content .wrap_crs01{
		margin: 0;
		padding: 40px 10px;
		border-right: 0;
		border-left: 0;
	}
	.tab-content .wrap_crs01:before {
    border-right: none;
    border-left: none;
	}
	.crs_kado01{
		display: none;
	}
	.wrap_crs01 > .ul_crs01{
		width: 100%;
	}
	.wrap_crs01 > .ul_crs01 > li:first-of-type {
		padding-top: 0;
	}
	.wrap_crs01 > .ul_crs01 > li:last-of-type {
		margin-bottom: 0;
	}
	.wrap_crs01 > .ul_crs01 > li .crs_num01 {
		margin-bottom: 10px;
	}
	.wrap_crs01 > .ul_crs01 > li .crs_tit01 {
		font-size: 1.8rem;
		line-height: 1.4;
	}
	.wrap_crs01 > .ul_crs01 > li .crs_eda01,
	.wrap_crs01 > .ul_crs01 > li .crs_txt01 {
		margin-bottom: 5px;
		line-height: 1.5;
		font-size: 1.4rem;
	}
}

@media screen and (max-width:359px) {
	.tab-content-supplement {
		font-size: 1.6rem;
	}
	.tab-content h2 {
		padding: 5px 70px;
		font-size: 1.6rem;
		background-size: 60px auto, 60px auto;
	}
}

.linkBtn-box {
	margin-bottom: 50px;
}
.tab-back-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 54px;
	background-color: #c45d14;
	transition: .4s;
}
.tab-back-btn::before {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid #ffffff;
}
.tab-back-btn:hover {
	opacity: 0.8;
	transition: .4s;
}

.tab-btn2 {
  justify-content: space-between;
}

@media screen and (max-width:767px) {
	.linkBtn-box {
		margin: 0 4.8% 50px;
	}
}
@media print, screen and (min-width: 768px) {
    .rweb2404{
        font-size: 1.5rem;
         display: inline-block;
        margin-top: 4px;
    }
    .rweb2404 a{
    font-size: 2.0rem;
    text-decoration: underline;
        color: #125687;
    }
 .rweb2404 a:hover{
        text-decoration: none;
    }
}
@media print, screen and (max-width: 767px) {
    .rweb2404{
        display: inline-block;
        font-size: 1.6rem;
        margin-top: 8px;
    }
    .rweb2404 a{
    font-size: 1.6rem;
        color: #125687;
  }
}


/*半自動化画像反映用
========================*/
.ul_crs01 .flexBox {
  display: flex;
  justify-content: space-between;
}
.ul_crs01 .courseInfoBox {
  width: 67%;
  padding-right: 10px;
}
.ul_crs01 .courseImgBox {
  position: relative;
  margin-right: 40px;
}
.courseImg {
  position: relative;
  width: 250px;
  height: 168px;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.courseImg::before, .courseImg::after {
  content: "";
  position: absolute;
  background-image: inherit;
  background-repeat: inherit;
  background-position: inherit;
}
.courseImg::before {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background-size: cover;
  filter: blur(8px);
}
.courseImg::after {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-color: #00000020;
}
.courseImg_caption {
  display: inline-block;
  position: absolute;
  bottom: 2%;
  right: 0;
  max-width: 275px;
  padding: 0 5px;
  text-align: right;
  text-shadow: 1px 1px 1px #000, 1px 0px 1px #000, 1px -1px 1px #000, 0px -1px 1px #000, -1px 1px 1px #000, -1px -1px 1px #000;
  color: #fff;
  font-size: 1.1rem;
	z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .ul_crs01 .flexBox {
    display: block;
  }
  .ul_crs01 .courseInfoBox {
    width: 100%;
    padding-right: 0;
  }
  .ul_crs01 .courseImgBox {
    max-width: 400px;
    margin: 20px auto 0;
  }
  .courseImg {
    max-height: 200px;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
  }
}
@media screen and (max-width: 359px) {
  .courseImg {
    height: 15vh;
  }
}
/*======================*/


/*aタグエリア拡大用
========================*/
.wrap_crs01 > .ul_crs01 > li .crs_num01,
.course_plan_cond_box .course_plan_cond {
  color: #333;
  font-weight: normal;
}
.wrap_crs01 > .ul_crs01 > li a .crs_tit01 {
  transition: all .3s;
}
.wrap_crs01 > .ul_crs01 > li a:hover .crs_tit01 {
  color: #CC0000;
  transition: all .3s;
}
/*======================*/

.tab-btn1 {
  margin: 20px 0;
}
.tab-btn2 {
  display: flex;
  margin: 20px auto;
    max-width: 1160px;
    
}
.tab-back-btn::before {
  border-radius: 7px;
}
.tab-btn1 a {
  width: 100%;
  border-radius: 10px;
}
.tab-btn2 a {
  width: 100%;
    max-width: 575px;
  border-radius: 10px;
    color: #ffffff;
}
.tab-btn1 a::after, .tab-btn2 a::after {
    content: "";
    display: block;
    position: absolute;
    right: 14px;
    width: 15px;
    height: 15px;
    top: calc(50% - 12px);
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(315deg);
    transition: .3s;
}
.tab-reco_more p {
  text-align: center;
}

.tab_h2 {
  padding: 0 10px;
  font-size: 3.2rem;
	font-weight: bold;
  line-height: 1.1;
  color: #B43030;
  text-align: center;
}
.tab_h2 p{
 position: relative;
    display: inline-block;
}
.tab_h2 p::before {
  position: absolute;
  content: "";
  background: url(/med/feature/asia/cmn/img/top/tit_r.png) no-repeat;
  background-size: contain;
  width: 72px;
  height: 41px;
  top: calc(50% - 19px);
  left: -110px;
}
.tab_h2 p::after {
  position: absolute;
  content: "";
  background: url(/med/feature/asia/cmn/img/top/tit_r.png) no-repeat;
  background-size: contain;
  width: 72px;
  height: 41px;
  top: calc(50% - 19px);
  right: -110px;
}
.h2_sub{
    text-align: center;
    margin: 20px;
}
.tab-reco p {
  padding-bottom: 30px;
  border-bottom: 2px solid #AA9C66;
}
.courseArea_inner {
  background-color: #fff0d9;
  box-sizing: border-box;
  border: 1px solid #8c683f;
	line-height: 1.7;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .br_sp {
    display: none;
  }
  .tab-reco {
    padding: 10px 30px;
  }
}

@media screen and (max-width:767.98px) {
  .br_sp {
    display: none;
  }
  .tab-btn1 {
    width: 90%;
    margin: 20px auto;
  }
    .tab-btn2{
        gap:10px;
        padding: 0 10px;
    }
  .tab-btn1 a::after, .tab-btn2 a::after {
    width: 12px;
    height: 12px;
      top: auto;
      bottom: 9px;
    right: 45%;
      
  }
  .tab-reco {
    padding: 10px 10px 20px 10px;
  }
  .tab_h2 {
    font-size: 2.2rem;
    padding: 0;
  }
  .tab_h2 p::before {
    content: "";
    width: 60px;
    height: 60px;
    top: calc(50% - 15px);
    left: -70px;
  }
  .tab_h2 p::after {
    content: "";
    width: 60px;
    height: 60px;
    top: calc(50% - 15px);
    right: -70px;
  }
  
  .tab-reco p {
    padding-bottom: 20px;
  }
  
  .areaBlock:first-of-type {
    padding: 0;
  }
  #wrap_main01 .sec_area01 .tit_area01 {
    margin-top: 15px;
  }
}

@media screen and (max-width:365px) {
  .br_sp {
    display: block;
  }
  .tab_h2::before {
    content: "";
    width: 40px;
    height: 40px;
    top: calc(50% - 5px);
    left: 10px;
  }
  .tab_h2::after {
    content: "";
    width: 40px;
    height: 40px;
    top: calc(50% - 5px);
    right: 10px;
  }
  .tab_h2::before {
    content: "";
    width: 40px;
    height: 40px;
    top: calc(50% - 5px);
    left: 40px;
  }
  .tab_h2::after {
    content: "";
    width: 40px;
    height: 40px;
    top: calc(50% - 5px);
    right: 40px;
  }
  
}


/*courseArea
=======================*/
.courseArea {
	margin-top: 50px;
	padding-top: 0px;
}
.courseArea_inner {
	max-width: 1160px;
	margin: 0 auto;
}

.course_note{
    font-size: 1.4rem;
    text-align: center;
    color: #707070;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
    margin-top: 10px;
}
.course_note span{
    text-align: center;
    color: #fff;
    padding: 3px 12px;
    font-size: 1.3rem;
    background: rgb(0 0 0 / .5);
    border-radius: 30px;
}
@media screen and (max-width:767.98px) {
	.courseArea {
		margin-top: 50px;
	}
	
    .course_note{
    display: inline-block;
        margin: 10px 10px 0;
        line-height: 1.4;
}
    .course_note span{
        display: inline-block;
    padding: 3px 12px;
    font-size: 1rem;
        margin-top: -2px;
}
}


/*---courseItemsBox---*/
.areaBlock {
	padding-bottom: 74px;
}

@media (min-width: 768px) {
	.areaBlock:first-of-type {
  padding: 10px 20px;
}
}
.areaBlock h3 {
	margin: 0;
	padding: 10px 0;
	font-size: 2.4rem;
	text-align: center;
	background: #d5b47f;
    color: #fff;
}

.courseItems4 .courseItem {
  width: calc((100% - 48px) / 4);
 
}
.courseItem {
  width: calc((100% - 32px) / 3);
 
}
.courseItem:nth-of-type(3n) {
	margin-right: 0;
}
.courseItem:nth-of-type(n+4) {
	margin-top: 30px;
}
.courseItems4 .courseItem:nth-of-type(n+4) {
  margin-top: 0;
 
}
.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-bottom: 10px;
	padding: 3px 12px;
	color: #fff;
	font-size: 1.3rem;
	background: rgb(0 0 0 / .5);
	border-radius: 30px;
}
.course__card__tagBox ul li + li {
	margin-left: 10px;
}
.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;
}
.courseItems4 .course__card__body {
		width: 100%;
		padding: 12px 12px 10px;
	}
.course__card__codeArea__box {
	display: flex;
}
.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__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;
}
.courseItems4 .course__card__unit{
    font-size: 1.3rem;
}
.courseItems4 .course__card__price {
  font-size: 2.2rem;
}
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;
  border-bottom: none!important;
}

@media (min-width: 768px) {
	.courseItem a:hover .course__card__title {
		color: #cc0d21;
		text-decoration: underline;
		transition: all .3s;
	}
    .btnwrap {
        gap:10px;
    }
    .btnwrap .btn02,.btnwrap .btn03{
        width: 40%;
    }
    .btnwrap .btn02 a,.btnwrap .btn03 a{
        width: 100%;
        padding-top: 0;
        margin: 0;
    }
}
@media screen and (max-width:767.98px) {
	.areaBlock {
		padding-bottom: 47px;
	}
	.areaBlock h3 {
		padding: 8px 0;
		font-size: 1.7rem;
	}

	.courseItem {
		width: 100%;
		margin-right: 0;
	}
    .courseItems4 .courseItem {
  width: 100%;
 
}
	.courseItem:nth-of-type(n+2) {
		margin-top: 15px;
	}
    .courseItems4 .courseItem:nth-of-type(n+4){
		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 0 5px;
		padding: 2px 7px;
		font-size: 1rem;
	}
	.course__card__tagBox ul li + li {
		margin-left: 5px;
	}
	.course__card__body {
		width: 100%;
		padding: 8px 10px;
	}

	.course__card__code {
		min-width: 70px;
		font-size: 1.2rem;
	}
	.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;
	}
    .courseItems4 .course__card__price {
		margin-top: 5px;
		font-size: 1.7rem;
	}
	.noCourseTxt {
		font-size: 1.3rem;
		text-align: center;
    padding: 10px 0;
	}
    .btnwrap{
        gap:10px;
        margin: 20px 0;
        padding: 0 5px;
    }
    .btnwrap .btn02 a,.btnwrap .btn03 a{
       padding: 10px;
        margin: 0;
    }
}
/*=====================*/



/*otherFaetures slick adjust
==============================*/
.slick-dots {
	position: static;
}
.themefeaturesArea .slick-dots li button:before {
	opacity: 1;
}
.themefeaturesArea {
	margin: 100px auto 30px;
}
@media screen and (max-width:767.98px) {
	.themefeaturesArea {
		margin-top: 50px;
	}
}
/*============================*/
#wrap_main01 {
  max-width: 100%;
  margin: 0 auto;
        font-family: "Noto Sans JP", sans-serif;
}
#wrap_main01 .wrap_KV {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: wrapKvAnm 1s linear .5s 1 normal forwards
}

@keyframes wrapKvAnm {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
#wrap_main01 .imgKv {
  width: 100%;
  background-color: #000
}
#wrap_main01 .imgKv img {
  opacity: .75;
  height: 350px;
}
@media (max-width: 767px) {
    .pcOnly{
        display: none;
    }
    #wrap_main01 .imgKv img {
    height: 160px;
}
  #wrap_main01 .imgKv {
    width: 200%
  }
}
.kvbox{
    
    position: absolute;
     top: 50%;
  left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 1120px;
}
.kvbox p{
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("/med/feature/europe/cmn/img/kv_com.webp") no-repeat;
    background-size: 492px 225px;
    width: 492px;
    height: 225px;
    color: #622900;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8;
}
.wrap_KV .kv_ready p{
    background-size: 540px 218px;
    width: 540px;
    height: 218px;
    padding: 20px;
}
.wrap_KV .kv_ready p img{
    padding: 0 0 20px;
}
#wrap_main01 .tit_h1 {
  width: 100%;
  max-width: 460px;
  font-size: 0;
  line-height: 0
}
@media (max-width: 767px) {
    .kvbox{
    
    position: absolute;
     top: 50%;
  left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
        flex-wrap: wrap;
    width: 100%;
}
.kvbox p{
  display: none;
}
    .kvbox p br{
        display: none;
    }
  #wrap_main01 .tit_h1 {
    width: 190px;
  }
}
#wrap_main01 .sec_area01 {
  max-width: 940px;
  padding: 0 10px;
  margin: 50px auto 50px;
  text-align: center
}
@media (max-width: 767px) {
  #wrap_main01 .sec_area01 {
    padding: 0
  }
}
#wrap_main01 .sec_area01 .tit_area01 {
  color: #c45d14;
  font-size: 2.4rem;
  padding-left: 1.25em;
  line-height: 1;
  background: url("/med/feature/asia/cmn/img/top/icon_air01.svg") left center no-repeat;
  background-size: contain;
  display: inline-block;
  margin: 40px 0 15px;
}

#wrap_main01 .sec_area01 .wrap_map01 {
  position: relative;
  box-sizing: border-box;
  max-width: 920px;
  margin-bottom: 30px;
  font-size: 0;
  line-height: 0;
  padding-top: 48.370%;
  background: url("/med/feature/asia/cmn/img/top/map/img_map_asia.webp") center center no-repeat;
  background-size: contain
}
@media (max-width: 767px) {
  #wrap_main01 .sec_area01 .wrap_map01 {
    padding: 0;
    background: none!important;
  }
    #wrap_main01 .sec_area01 .tit_area00 {
  padding-left: 2em;
    background-size: 30px;
    max-width: 310px;
    text-align: left;
    font-size: 1.8rem;
}
}

#wrap_main01 .sec_area01 .wrap_map01.li_uzb {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_uzbekistan.png") center center no-repeat;
  background-size: contain;
}
#wrap_main01 .sec_area01 .wrap_map01.li_tha_lao {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_thai.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_vnm_khm {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_vn_kh.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_ind_lka {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_india.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_mys {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_malaysia.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_sgp {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_asia.webp") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_mgl {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_mongolia.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_chn {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_china.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .hokkaido_area01 .wrap_map01.li_chn {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_china_hokkaido.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .hokkaido_area01 .wrap_map01.li_kor {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_korea_hokkaido.webp") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_kor {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_korea.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_hkg_mac {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_asia.webp") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_twn {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_taiwan.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .hokkaido_area01 .wrap_map01.li_twn {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_taiwan_hokkaido.webp") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_mmr_npr_bgd {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_myanmar.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_phl {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_philippines.png") center center no-repeat;
  background-size: contain
}
#wrap_main01 .sec_area01 .wrap_map01.li_idn {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_indonesia.png") center center no-repeat;
  background-size: contain
}

#wrap_main01 .sec_area01 .wrap_map01.li_asia_resort {
  background: url("/med/feature/asia/cmn/img/top/map/img_map_asia.webp") center center no-repeat;
  background-size: contain
}

.noArea{
    pointer-events: none;
    position: relative;
}
.noArea::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0,0,0,0.30);
    border-radius: 3px;
}
.noArea a{
    pointer-events: none;
}

#wrap_main01 .sec_area01 .wrap_map01 .ul_area01 {
  width: 100%;
  height: 100%
}
@media (min-width: 768px) {
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
    .noArea{
    display: none !important;
}
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 {
    display: flex;
    flex-flow: row wrap;
      padding: 0;
    border-top: 1px solid #ccc
  }
}
@media (min-width: 768px) {
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li {
    display: inline-block;
    position: absolute
  }
}
@media (max-width: 767px) {
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li {
    width: 50%;
    box-sizing: border-box;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-flow: row nowrap
  }
/*  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li:nth-of-type(2n) {
    border-right: none
  }*/
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li:last-of-type {
    border-right: none;
    width: 100%
  }
}
#wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li a {
  font-family: "Noto Serif JP", serif;
  color: #111
}
@media (min-width: 768px) {
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li a {
      display: block;
      text-align: left;
    padding: 7px 7px 7px 15px;
    background: #fff url("/med/feature/europe/cmn/img/icon_arw01.svg") 2px 10px no-repeat;
    background-size: 10px;
    border-radius: 3px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.75);
    font-size: 1.7rem;
    line-height: 1;
    transition: .5s ease
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li a:hover {
    color: #fff;
    transition: .2s ease;
    text-decoration: none;
    background: #214CAE url("/med/feature/europe/cmn/img/icon_arw01.svg") 2px 10px no-repeat;
    background-size: 10px
  }

#wrap_main01 .sec_area01 .hokkaido_area01 .wrap_map01{
	background: url(/med/feature/asia/cmn/img/top/map/img_map_asia_hokkaido.png) center center no-repeat;
 }
}


@media (max-width: 767px) {
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li a {
    width: 100%;
    font-size: 1.6rem;
    text-align: left;
    padding: 10px 2px 10px 16px;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    background: #f6f6f6 url("/med/feature/europe/cmn/img/icon_arw01.svg") 2px center no-repeat;
    background-size: 10px;
    line-height: 1.4
  }
}
#wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li a span {
  display: inline-block
}
#wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li a span small{
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_uzb {
    top: 10%;
    left: 10%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_tha_lao {
    top: 37%;
    left: 2.5%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_vnm_khm {
    top: 67.5%;
    left: 6%
  }
    #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_ind_lka {
    top: 68%;
    left: 26%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_mys {
    top: 69.5%;
    left: 39.8%
  }
     #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_sgp {
    top: 78.5%;
    left: 39.8%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_mgl {
    top: 8.5%;
    left: 48%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_chn {
    top: 28%;
    left: 43.5%
  }
    #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_kor {
    top: 23%;
    left: 64.5%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_hkg_mac {
    top: 38.5%;
    left: 52.5%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_twn {
    top: 46.5%;
    left: 65.5%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_mmr_npr_bgd {
    top: 54.5%;
    left: 51.7%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_phl {
    top: 65%;
    left: 69.5%
  }
  #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_idn {
    top: 77%;
    left: 78.5%
  }
     #wrap_main01 .sec_area01 .wrap_map01 .ul_area01 li.li_asia_resort {
    top: 38%;
    left:77.5%
  }
    
}
@media (min-width: 768px) {
  #wrap_main01 .txt_slct01 {
    display: none
  }
}
@media (min-width: 768px) {
  #wrap_main01 .sec_eurlist01 {
    display: none
  }
}
#wrap_main01 .sec_intr01 {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center
}
#wrap_main01 .sec_intr01 h2 {
  display: inline-block;
  background: url("/med/feature/europe/cmn/img/stit_l.png") left center no-repeat, url("/med/feature/europe/cmn/img/stit_r.png") right center no-repeat;
  padding: 0 50px;
  font-size: 2.4rem;
  color: #504700;
  font-family: "Noto Serif JP", serif;
  margin: 50px auto 15px;
}
@media (max-width: 767px) {
    #wrap_main01 .sec_intr01 {
        margin: 0 10px;
    }
  #wrap_main01 .sec_intr01 h2 {
    font-size: 1.8rem;
    margin: 25px auto 15px;
  }
}
#wrap_main01 .sec_intr01 p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 40px
}

#wrap_main01 .sec_intr01 p span {
  display: inline-block
}
@media (max-width: 767px) {
  #wrap_main01 .sec_intr01 p {
    padding: 0 10px;
    font-size: 1.4rem;
  }
    #wrap_main01 .sec_intr01 p br{
    display: none
}
  #wrap_main01 .sec_intr01 p span {
    display: inline
  }
}
#wrap_main01 .sec_intr01 .wrap_img01 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center
}
#wrap_main01 .sec_intr01 .wrap_img01 div {
  width: 33.33%
}
.secBnr01 {
  max-width: 1120px;
  margin: 15px auto
}
.secBnr01__tit01 {
  font-size: 1.4rem;
  line-height: 1;
  padding: 10px 15px;
  color: #fff;
  background-color: #0078FF;
  margin-bottom: 10px
}
.secBnr01__ul01 {
  padding: 0 15px;
  display: flex;
  flex-flow: row wrap
}
@media (max-width: 767px) {
  .secBnr01__ul01 {
    justify-content: center
  }
}
.secBnr01__ul01 li {
  max-width: 217px;
  font-size: 0;
  line-height: 0;
  margin-right: 10px
}
@media (max-width: 767px) {
  .secBnr01__ul01 li {
    margin-right: 0;
    margin-bottom: 10px
  }
}

.cmn_imgAnnotation {
	margin: 10px auto 0;
	font-size: 1.2rem;
	text-align: right;
}
.point_area ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.point_area ul li{
    display:flex;
  justify-content: center;
    align-items: center;
    background: url("/med/feature/europe/cmn/img/point_bg01.png") no-repeat;
    list-style: none;
    width: 360px;
    height: 230px;
}
@media (max-width: 767px) {
    .point_area ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
        flex-wrap: wrap;
    padding: 0;
}
  .point_area ul li{
      position: relative;
    background-image: url("/med/feature/europe/cmn/img/point_bg01_2.png"),url("/med/feature/europe/cmn/img/point_bg01_2_3.png"),url("/med/feature/europe/cmn/img/point_bg01_2_2.png");
      background-repeat: no-repeat, no-repeat, repeat-y;
  background-position: top, bottom, center;
      background-size: 100%;
    width: 100%;
      padding: 36px 20px;
      margin-bottom: 10px;
      height: auto;
}
    .point_area ul li::before{
        position: absolute;
        display: block;
        content: "";
        top: -20px;
        background: url("/med/feature/europe/cmn/img/point_bg01_2.png") no-repeat;
        max-width: 100%;
        height: auto;
        z-index: 5;
    }
    .point_area ul li p br{
        display: none;
    }
}
.point_area ul li h4{
    font-size:1.8rem;
    font-family: "Noto Serif JP",serif;
    color: #a19155;
    margin-bottom: 10px;
    margin-top: 0;
}
#wrap_main01 .sec_intr01 .point_area ul li div p{
    font-size:1.3rem;
    margin: 0;
}
.anchor_link{
    background: #3f3b2e;
    padding: 10px;
    display: flex;
    justify-content: center;
    margin: 20px 0 0;
    gap:20px;
}
.anchor_link li{
    list-style: none;
}
.anchor_link li a{
    display: block;
    background-color: #ffffff;
    border-radius: 5px;
    color: #45350e;
    padding: 10px 20px 10px 10px;
    font-size: 1.7rem;
    position: relative;
    font-family: "Noto Serif JP", serif;
    width:230px;
    text-align: center;
}
.anchor_link li a:hover{
opacity: 0.8;
}
.anchor_link li a::after{
        content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-color: transparent transparent #45350e #45350e;
    transform: rotate(-135deg);
    transition: .3s;
}
.anchor_link li:first-child a::after{
    content: "";
    display: block;
    position: absolute;
    right: 10px;
    width: 10px;
    height: 10px;
    top: calc(50% - 7px);
    border: 2px solid;
    border-color: transparent transparent #45350e #45350e;
    transform: rotate(315deg);
    transition: .3s;
}
@media (max-width: 767px) {
    .anchor_link{
    background: #3f3b2e;
    padding: 10px 5px;
    display: flex;
    justify-content: space-between;
        flex-wrap: wrap;
    margin: 10px 0 0;
        width: 100%;
        gap:10px;
}
     .anchor_link li:first-child{
    width: 100%;
}
    .anchor_link_2 li:first-child{
        width: 48%;
    }
     
    .anchor_link li:first-child a::after{
        right: 5px;
    }
    .anchor_link li a::after{
        right: 5px;
    }
    .anchor_link li{
        width: 48%;
        letter-spacing: -0.7px;
    }
    .anchor_link li a{
    font-size: 1.2rem;
    padding: 5px;
        text-align: left;
        width: 100%;
}
    .anchor_link li a{
    text-align: center;
}
    .anchor_link li:nth-child(2),.anchor_link li:last-child{
        width: 48%;
        margin: 0;
    }
    .anchor_link li:nth-child(2) a,.anchor_link li:last-child a{
       margin: 0 auto;
        width: 100%;
        max-width: 500px;
        padding: 5px 15px 5px 5px 
    }
    .anchor_link li:first-child a::after,.anchor_link li a::after{
    right: 5px;
}
}
/*----------------------------------------------------*/
.offseason_cmn{
    font-family: "Noto Serif JP", serif;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(0deg, rgba(226,238,255,1) 0%, rgba(251,234,209,1) 100%);
    padding-top: 20px;
}
.titwrap{
    
    background: #FFFFFF;
    position: relative;
}
.titwrap::after {
    content:"";
    position:absolute;
    top:0; right:0; bottom:0; left:0;
    box-shadow:inset 0 1px 20px rgba(236,206,174,0.5);
}
.titwrap::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    background-image: url("/med/feature/europe/cmn/img/leaf.png");
    background-repeat: no-repeat;
    width: 141px;
    height: 106px;
}
.titwrap .titwrap_inline{
    border:1px solid #c06800;
    width: 1100px;
    padding: 30px;
    margin: 10px;
    
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .titwrap::before{
        background-size: 40px auto;
    width: 40px;
    height: 30px;
    bottom: -5px;
}
    .titwrap{
    width: 100%;
        margin: 0 5px;
    }
    .titwrap .titwrap_inline{
    border:1px solid #c06800;
    width: 95%;
    padding: 10px;
    margin: 10px;
    
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
}
.titwrap p{
    font-size: 2.5rem;
    color: #df431a;
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 0;
}
.titwrap p::before,
.titwrap p::after {
    position: absolute;
    top: 0.2rem;
    height: 3rem;
    content: '';
}

.titwrap p::before {
    border-left: solid 2px;
    left: -15px;
    transform: rotate(-30deg);
}

.titwrap p::after {
    border-right: solid 2px;
    right: -15px;
    transform: rotate(30deg);
}
.titwrap h2{
    font-size: 3.8rem;
    color: #333333;
    text-align: center;
    width: 100%;
    margin: 0;
}

.titwrap h2 .font_orange{
    font-size:6.2rem;
    color: #ff9d0d;
}
.titwrap h2 .font_snowblue{
    font-size:6.2rem;
    color: #89bbff;
}
.titwrap h2 .font_mid{
    font-size: 4.5rem;
}
@media (max-width: 767px) {
    .titwrap p{
    font-size: 1.3rem;
}
    .titwrap h2{
    font-size: 1.7rem;
}

.titwrap h2 .font_orange{
    font-size:3.1rem;
}
.titwrap h2 .font_snowblue{
    font-size:3.1rem;
}
.titwrap h2 .font_mid{
    font-size: 2.1rem;
}
}
/*-*/
.offseason_cmn_point_wrap{
    margin: 30px 0;
    width: 1120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.offseason_cmn_point_wrap li{
    font-family: "Noto Serif JP", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    width: 340px;
    height: 277px;
}
.offseason_cmn_point_wrap li:first-child{
    background-image: url("/med/feature/europe/cmn/img/offseason_cmn_point_01.png");
    background-repeat: no-repeat; 
}
.offseason_cmn_point_wrap li:nth-child(2){
    background-image: url("/med/feature/europe/cmn/img/offseason_cmn_point_02.png");
    background-repeat: no-repeat; 
}
.offseason_cmn_point_wrap li:last-child{
    background-image: url("/med/feature/europe/cmn/img/offseason_cmn_point_03.png");
    background-repeat: no-repeat; 
}
.offseason_cmn_point_wrap li h4{
    font-size: 2rem;
    color: #df431a;
   
    margin: 0 0 10px 0;
}
.offseason_cmn_point_wrap li p{
    font-size: 1.3rem;
    margin: 0;
}
@media (max-width: 767px) {
    .offseason_cmn_point_wrap{
    margin: 30px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
        flex-wrap: wrap;
        padding: 0;
}
.offseason_cmn_point_wrap li{
    font-family: "Noto Serif JP", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    height:125px;
    padding: 0 15px;
    margin: 0 10px 10px;
}
.offseason_cmn_point_wrap li:first-child{
    background-image: url("/med/feature/europe/cmn/img/offseason_cmn_point_01_2.png");
    background-size: 100% 125px;
}
.offseason_cmn_point_wrap li:nth-child(2){
    background-image: url("/med/feature/europe/cmn/img/offseason_cmn_point_02_2.png");
    background-size: 100% 125px;
}
.offseason_cmn_point_wrap li:last-child{
    background-image: url("/med/feature/europe/cmn/img/offseason_cmn_point_03_2.png");
    background-size: 100% 125px;
}
.offseason_cmn_point_wrap li h4{
    font-size: 1.7rem;
    color: #df431a;
    margin: 0 0 5px 0;
     line-height: 1.2;
}
.offseason_cmn_point_wrap li p{
    font-size: 1.2rem;
    margin: 0;
}
    .offseason_cmn_point_wrap li p br{
        display: none;
    }
}

.coursewrap{
    background: #ffffff;
    width: 1120px;
    padding: 30px 10px 100px;
    margin: 0 auto 40px;
    background-image: url("/med/feature/europe/cmn/img/course_bg.png"),url("/med/feature/europe/cmn/img/course_bg02.png"),url("/med/feature/europe/cmn/img/course_bg03.png"),url("/med/feature/europe/cmn/img/course_bg04.png");
    background-repeat: no-repeat;
    background-position: top 10px left 10px,top 10px right 10px,bottom 10px right 10px,bottom 10px left 10px;
}
.coursewrap h2{
    font-size: 4rem;
    color: #503417;
    text-align: center;
    font-weight: bold;
}
@media (max-width: 767px) {
    .coursewrap h2{
    font-size: 1.6rem;
}
    .coursewrap{
    background: #ffffff;
    width: 100%;
    padding: 50px 10px 50px;
    margin: 0 auto 40px;
     background-image: url("/med/feature/europe/cmn/img/course_bg.png"),url("/med/feature/europe/cmn/img/course_bg02.png"),url("/med/feature/europe/cmn/img/course_bg03.png"),url("/med/feature/europe/cmn/img/course_bg04.png");
        background-size: 50px auto;
    background-repeat: no-repeat;
    background-position: top 10px left 10px,top 10px right 10px,bottom 10px right 10px,bottom 10px left 10px;
}
}
.sec_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
    border-top: 1px solid #9c8e56;
      border-bottom: 1px solid #9c8e56;
}
@media screen and (max-width: 1000px) {
  .sec_nav {
    display: block;
  }
}
@media print, screen and (max-width: 767px) {
  .sec_nav {
    margin-bottom: 20px;
  }
    .sec_area.sec_area7 ul li{
    margin-left: 10px;
}
    .sec_area.sec_area7 ul li:nth-child(6n){
    margin-left: 10px;
}
    .sec_area.sec_area7 ul li:nth-child(2n+1){
    margin-left: 0;
}
    
}
.sec_nav_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .sec_nav_item {
    display: block;
    width: auto;
  }
}
.sec_nav .nav_tit {
  width: 205px;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .sec_nav .nav_tit {
    text-align: center;
    margin: 0 auto;
  }
}
.sec_nav .nav_tit a {
  width: 80%;
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 5px 12% 5px 5%;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.1em;
  background: #028bcc;
}
@media print, screen and (max-width: 767px) {
  .sec_nav .nav_tit a {
    width: 70%;
    padding: 5px 15px;
    font-size: 1.4rem;
  }
  .sec_nav_item {
    padding: 0;
  }
}
.sec_nav .nav_tit a:hover {
  text-decoration: none;
}
.sec_nav .nav_tit a:hover::after {
  -webkit-animation: MoveArrow .5s ease forwards;
  animation: MoveArrow .5s ease forwards;
}
@-webkit-keyframes MoveArrow {
  0% {
    top: 50%;
  }
  100% {
    top: 60%;
  }
}
@keyframes MoveArrow {
  0% {
    top: 50%;
  }
  100% {
    top: 60%;
  }
}
.sec_nav .nav_tit a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(135deg) translateY(100%);
  transform: rotate(135deg) translateY(100%);
}
@media print, screen and (max-width: 767px) {
  .sec_nav .nav_tit a::after {
    right: 4px;
  }
}
.sec_nav .nav_tit.nav_tit02 a {
  background: #ec738c;
}
.sec_nav .nav_tit.nav_titPDF {
  width: 280px;
}
@media print, screen and (max-width: 767px) {
  .sec_nav .nav_tit.nav_titPDF {
    width: 250px;
  }
}
.sec_nav .nav_tit.nav_titPDF a {
  background: #ec738c;
  padding: 5px 10% 5px 5%;
}
.sec_nav .nav_tit.nav_titPDF a:hover {
  text-decoration: none;
}
.sec_nav .nav_tit.nav_titPDF a:hover::after {
  -webkit-animation: MoveArrow2 .5s ease forwards;
  animation: MoveArrow2 .5s ease forwards;
}
@-webkit-keyframes MoveArrow2 {
  0% {
    right: 15px;
  }
  100% {
    right: 12px;
  }
}
@keyframes MoveArrow2 {
  0% {
    right: 15px;
  }
  100% {
    right: 12px;
  }
}


.sec_nav .nav_tit.nav_titPDF a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 46%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg) translateY(0%);
  transform: rotate(45deg) translateY(0%);
}
.sec_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 0;
}

@media print, screen and (max-width: 767px) {
  .sec_nav .nav_tit.nav_titPDF a::after {
    top: 43%;
  }
    .sec_nav ul {
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
    }
}
@media screen and (max-width: 1000px) {
  .sec_nav ul {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
    
}
@media screen and (min-width: 1000px) {
  .course_asia .sec_nav ul,.course_europe .sec_nav ul {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
      
    }
    
}
.sec_nav ul li {
  text-align: center;
  position: relative;
    padding: 5px 10px;
    margin: 0 0 10px;
    list-style: none;
}
.sec_nav ul li:nth-child(-n+3){
    margin: 10px 0 10px; 
}
.sec_nav ul li:last-of-type::after {
  content: none;
}
.sec_nav ul li a {
  display: block;
  padding: 0px 5px;
  font-size: 1.7rem;
    font-weight: 600;
    color: #9c8e56;
}
.sec_nav ul li a::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(135deg) translateY(60%);
  transform: rotate(135deg) translateY(60%);
    border-top: 1px solid #9c8e56;
    border-right: 1px solid #9c8e56;
}
.dot {
  display: inline-block;
}
.sec_nav ul li:nth-of-type(4n)::after {
  content: none;
}
@media print, screen and (max-width: 767px) {
    .sec_nav ul {
        margin: 0;
    }
    .sec_nav ul li {
    margin: 0;
}
    .sec_nav ul li:nth-child(-n+4){
    margin: 0; 
}
  .sec_nav ul li a {
    width: 100%;
  }
  .dot {
    display: none;
  }
  .sec_nav ul li::after {
    content: none;
  }
  .sec_nav ul li a {
    position: relative;
    display: block;
    padding: 5px 10px;
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .sec_nav ul li a::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 10%;
  }
  .sec_nav ul {
    flex-grow: 1;
  }
  .sec_nav ul li {
    width: 50%;
    position: relative;
    margin-bottom: 0;
      border-bottom: 1px solid #bababa;
  }
    .sec_nav ul li:nth-of-type(-n+2) {
        border-top: 1px solid #bababa;
    }
  .sec_nav ul li:nth-of-type(2n+1) {
    border-right: 1px solid #bababa;
  }
}
.sec_nav ul li a:hover {
  text-decoration: underline;
}
.sec_nav ul li.notCrs {
  width: 100%;
  padding: 0 5%;
  font-size: 1.4rem;
  text-align: left;
  color: #adadad;
}
@media screen and (max-width: 1000px) {
  .sec_nav ul li.notCrs {
    text-align: center;
  }
}
.sec_nav ul li.notCrs::after {
  content: none;
}
.sec_nav.not-navTit .sec_nav_item {
  width: 100%;
}
.sec_nav.not-navTit .sec_nav_item ul {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .sec_nav.not-navTit .sec_nav_item ul {
    width: 70%;
    max-width: none;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    align-items: stretch;
  }
  .sec_nav_item ul {
    align-items: stretch;
  }
  .sec_nav_item ul li {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media print, screen and (max-width: 767px) {
  .sec_nav.not-navTit .sec_nav_item ul {
    width: 100%;
    max-width: 400px;
  }
}
.sec_nav.not-navTit .sec_nav_item ul li {
  width: 15%;
}
@media screen and (max-width: 1000px) {
  .sec_nav.not-navTit .sec_nav_item ul li {
    width: 33.3%;
  }
  .sec_nav.not-navTit .sec_nav_item ul li:nth-of-type(3n)::after {
    content: none;
  }
}
@media print, screen and (max-width: 767px) {
  .sec_nav.not-navTit .sec_nav_item ul li {
    width: 50%;
  }
  .sec_nav.not-navTit .sec_nav_item ul li:nth-of-type(3n)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 0.7em;
    background: #bababa;
  }
  .sec_nav.not-navTit .sec_nav_item ul li:nth-of-type(2n)::after {
    content: none !important;
  }
  .sec_nav.not-navTit .sec_nav_item ul li:last-of-type::after {
    content: none;
  }
}
.sec_nav.not-navTit .sec_nav_item ul li:nth-of-type(2n)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 0.7em;
  background: #bababa;
}
.sec_nav.not-navTit .sec_nav_item ul li:last-of-type::after {
  content: none;
}
.areawrap{
    margin: 20px;
}
.areawrap h3{
    font-size: 2rem;
    text-align: center;
    background: #aa9c66;
    color: #ffffff;
    font-weight: bold;
    position: relative;
    
}
@media (max-width: 767px) {
    .areawrap{
    margin: 0;
}
    .areawrap h3{
    font-size: 1.5rem;
    
}
}
.areawrap h3:before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: 0;
    right: 0;
    border-top: 14px solid #fff;
    border-left: 11px solid transparent;
    border-bottom: 19px solid #fff;
}
.areawrap h3:after{
content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    border-top: 14px solid #fff;
    border-right: 11px solid transparent;
    border-bottom: 19px solid #fff;
}
@media (max-width: 767px) {
.areawrap h3:before{
    content: '';
    position: absolute;
    display: block;
    border-top: 12px solid #fff;
    border-left: 6px solid transparent;
    border-bottom: 13px solid #fff;
}
.areawrap h3:after{
    border-top: 12px solid #fff;
    border-right: 6px solid transparent;
    border-bottom: 13px solid #fff;
}
}
.coursebox{
    
}
.coursebox li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}
.coursebox li p{
    border: 1px solid #aa9c66;
    padding: 2px 10px;
    font-size: 1.5rem;
    margin: 0;
    color: #333333;
    text-align: center;
    min-width: 58px;
  
}
.coursebox li p.course_no {
  white-space: nowrap;
}
.coursebox li a{
    display: inline-block;
    font-size: 2rem;
    color: #125687;
    margin-left: 10px;
    
}
.coursebox li a:hover{
    text-decoration: underline;
}
@media (max-width: 767px) {
.coursebox{
    padding: 0;
}
.coursebox li{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}
.coursebox li p{
    border: 1px solid #aa9c66;
    font-size: 1.3rem;
    margin: 0;
    min-width: 65px;
}
.coursebox li a{
    display: inline-block;
    font-size: 1.6rem;
    color: #125687;
    margin-left: 10px;
    
}
.coursebox li a:hover{
    text-decoration: underline;
}
}
/*-*/
.btnwrap{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px 0 0;
}
.btn03 a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff !important;
    font-weight: 500;
    background: linear-gradient(0deg, rgba(0,155,99,1) 0%, rgba(14,200,133,1) 100%);
    border-radius: 100px;
    position: relative;
    height: 84px;
    width: 800px;
    border: 6px solid #ffffff;
    box-shadow: 0px 5px 5px #0000005e;
    line-height: 1;
     padding-top: 5px;margin:10px;
}
.btn02 a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff !important;
    font-weight: 500;
    background: linear-gradient(0deg, rgba(0,88,164,1) 0%, rgba(0,120,223,1) 100%);
    border-radius: 100px;
    position: relative;
    height: 84px;
    width: 800px;
    border: 6px solid #ffffff;
    box-shadow: 0px 5px 5px #0000005e;
    line-height: 1;
    padding-top: 5px;
    margin: 10px;
}
.btn03 a p span{
    display: inline-block;
    margin-right: 10px;
}
.btn02 a::after,.btn03 a::after{
     content: '';
  width: 20px;
  height: 20px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 50%;
 right: 20px;
  margin-top: -10px;
  transform: rotate(45deg);
}
.btn02 a:hover,.btn03 a:hover{
    opacity: 0.6;
}
.btn02 a .btn02_main,.btn03 a .btn03_main{
    font-size: 3rem;
    line-height: 1.5;
    margin: 0;
}
.btn02 a .btn02_main span{
        margin-right: 10px;
    }
@media (max-width: 767px) {
    .btnwrap{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}
    .btn03,.btn02{
        width: 100%;
    }
.btn03 a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    background: linear-gradient(0deg, rgba(0,155,99,1) 0%, rgba(14,200,133,1) 100%);
    border-radius: 100px;
    position: relative;
    height: auto;
    width: 100%;
    border: 6px solid #ffffff;
    box-shadow: 0px 5px 5px #0000005e;
    line-height: 1.2;
    padding: 20px;
    margin:10px 0;
}
.btn02 a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    background: linear-gradient(0deg, rgba(0,88,164,1) 0%, rgba(0,120,223,1) 100%);
    border-radius: 100px;
    position: relative;
    height: auto;
    width: 100%;
    border: 6px solid #ffffff;
    box-shadow: 0px 5px 5px #0000005e;
    line-height: 1.2;
    padding: 20px;
    margin: 10px 0;
}
.btn03 a p span,.btn02 a p span{
    display: inline-block;
    margin-right: 10px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    left: 10px;
    width: 30px;
    height: auto;
}
.btn02 a::after,.btn03 a::after{
     content: '';
  width: 20px;
  height: 20px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 50%;
 right: 20px;
  margin-top: -10px;
  transform: rotate(45deg);
}
.btn02 a:hover,.btn03 a:hover{
    opacity: 0.6;
}
    
.btn02 a .btn02_main,.btn03 a .btn03_main{
    font-size: 2rem;
    line-height: 1.2;
}
}
/*--*/
.coursebox li{
    justify-content: flex-start;
    align-items: flex-start;
    border-top: 1px solid #C7C7C7;
    margin: 0;
    padding: 10px 10px;
    width: 100%;
}
.coursebox li:first-of-type{
    border:none;
}
.coursebox li a{
    min-width: 560px;
    line-height: 1.5;
}
.coursebox li p.course_plan_cond_box{
    border:none;
    line-height: 1.3;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 390px;
    width: 100%;
    margin-left: auto;
}
.course_plan_cond_box span.course_plan_cond{
    font-weight: 700;
    display: block;
    font-size: 1.2rem;
    text-align: end;
}
.coursebox li .course_plan_cond_box span.course_price {
  width: 100%;
}
@media (min-width: 768px) {
  .coursebox li .course_plan_cond_box span.course_price {
    text-align: right;
  }
}
@media screen and (max-width:767px) {
  .coursebox li .course_plan_cond_box span.course_price {
    text-align: left;
  }
}
.course_plan_cond_box span.course_price{
    font-size: 2.4rem;
    color: #cc0d21;
}
@media screen and (max-width:767px) {
	.coursebox li{
        justify-content: flex-start;
    flex-wrap: wrap;
}
    .coursebox li a{
        width: 100%;
        min-width:100%;
        margin-left: 0;
        font-size: 1.9rem;
        margin: 10px 0;
    }
    .coursebox li p.course_plan_cond_box{
        width: 100%;
        padding: 0;
        justify-content: flex-start;
    }
    .course_plan_cond_box span.course_plan_cond{
    text-align: start;
}
    .course_plan_cond_box span.course_price{
    font-size: 2rem;
}
}
.icon_flex{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap:10px;
	margin-bottom: 10px;
}
 
/*---------------------*/
.eachAreaWrap h3{
    text-align: center;
    color: #622900;
}
.eachAreaWrap h3 p{
    position: relative;
    display: inline-block;
}
.eachAreaWrap h3 p::before{
    position: absolute;
    content:"ー";
    font-size: 20px;
    font-weight: bold;
    top: calc(50% - 17px);
    left: -30px;
}
.eachAreaWrap h3 p::after{
    position: absolute;
    content:"ー";
    font-size: 20px;
    font-weight: bold;
    top: calc(50% - 17px);
    right: -30px;
}



/*=====================*/

/*pick up
=======================*/
.assist-banner {
  position: fixed;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .1);
  transition: right .8s cubic-bezier(.4, 0, .2, 1) 0s;
  z-index: 9997;
}
.assist-banner__inner {
  overflow: hidden;
  background: #fff;
}
.assist-banner__pickup {
  display: flex;
  position: absolute;
  left: 0;
  justify-content: center;
  width: 100%;
}
.assist-banner__pickup__inner {
  border-radius: 50px;
  background: #fc0;
}
.assist-banner__pickup__inner:after {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fc0 transparent transparent;
  content: "";
}
button:not([disabled]), input[type=submit] {
	cursor: pointer;
}
.assist-banner__block {
  display: flex;
}
.assist-banner__close {
  top: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
}
.assist-banner__img {
  flex-shrink: 0;
  transition: opacity .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
/*.assist-banner__detail {
	font-weight: bold;
}*/
.assist-banner__detail .smaller {
  font-size: 1.1rem;
}
.assist-banner__text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #000;
}
.assist-banner__title {
	transition: color .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
.assist-banner__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  padding: 0;
  border: none;
  border-radius: 0 0 0 5px;
  outline: none;
  background: #ba0c1e;
  text-indent: -9999px;
  cursor: pointer;
}
.assist-banner__close:after, .assist-banner__close:before {
  display: block;
  position: absolute;
  height: 1px;
  background: #fff;
  content: "";
}
.assist-banner__close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.assist-banner__close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.assist-banner__text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #000;
}

@media print, screen and (min-width: 768px) {
  .assist-banner.is-show {
    right: 22px;
  }
  .assist-banner {
    right: -320px;
    bottom: 230px;
    width: 320px;
    border: 5px solid #ba0c1e;
    border-radius: 5px 0 5px 5px;
  }
  .assist-banner__inner {
    padding: 12px 15px 12px 12px;
  }
	.assist-banner__pickup__inner {
		padding: 0 18px;
	}
	.assist-banner__pickup__inner:after {
    bottom: -7px;
    left: calc(50% - 4.5px);
    border-width: 7px 4.5px 0;
  }
	.assist-banner__close {
    top: -5px;
    right: -5px;
    width: 26px;
    height: 26px;
  }
  .assist-banner__close:after, .assist-banner__close:before {
    top: 50%;
    left: 6px;
    width: 14px;
  }
	.assist-banner__pickup {
		top: -25px;
  }
	.assist-banner__img {
    width: 100px;
    margin-right: 18px;
  }
  .assist-banner__detail {
    margin-top: 5px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
	.assist-banner__title {
		font-weight: 700;
		letter-spacing: -1px;
    line-height: 1.2;
	}
}

@media screen and (max-width:767.98px) {
	.assist-banner.is-show {
		right: 15px;
  }
  .assist-banner {
    right: calc(-100% + 30px);
    bottom: 5px;
    width: calc(100% - 30px);
    border: 4px solid #ba0c1e;
  }
  .assist-banner__inner {
    padding: 10px 33px 10px 10px;
	}
	.assist-banner__pickup {
		top: -17px;
  }
	.assist-banner__pickup__inner {
    padding: 2px 15px 1px;
    font-size: 1.1rem;
  }
	.assist-banner__pickup__inner:after {
    bottom: -7px;
    left: calc(50% - 4.5px);
    border-width: 7px 4.5px 0;
  }
  .assist-banner__close {
    top: -4px;
    right: -4px;
    width: 35px;
    height: 35px;
  }
  .assist-banner__close:after, .assist-banner__close:before {
    top: 50%;
    left: 10px;
    width: 15px;
  }
	.assist-banner__close:after, .assist-banner__close:before {
    display: block;
    position: absolute;
    height: 1px;
    background: #fff;
    content: "";
	}
	.assist-banner__img {
    width: 82px;
    margin-right: 11px;
  }
	.assist-banner__detail {
    margin-top: 5px;
    font-size: 1.2rem;
  }
	.assist-banner__detail span {
    font-size: 1.1rem;
	}
  .assist-banner__title {
    font-size: 1.5rem;
    font-weight: 700;
		line-height: 1.4;
  }
}