@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.6rem;
  color: #323232;
  line-height: 1.7;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
#main img{
	vertical-align:top;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
@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;
  overflow: hidden;
}
.kv {
  /*height: 470px;*/
  /*height: 100%;*/
  margin: 0;
}
.kvTitWrap {
  position: absolute;
  top: 38%;
  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 {
    height: 100%;
  }
  .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: #d1ebff;
}
.menuNav_inner {
  display: flex;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
}
.menuNav .navItem {
  font-size: 2rem;
  text-align: center;
  background: #138eeb;
}
.menuNav .navItem a {
  display: block;
  width: 100%;
  padding: 20px;
  color: #fff;
}
.menuNav .navItem a span {
  position: relative;
}
.menuNav .navItem a span::after {
  position: absolute;
  content: '';
  top: 40%;
  right: -25px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 768px) {
  .menuNav .navItem {
    transition: 0.2s ease all;
    width: 100%;
    border-right: 2px solid #fff;
  }
  .menuNav .navItem:last-of-type {
    border-right: none;
  }
  .menuNav .navItem a:hover {
    background: #d2ebff;
    color: #138eeb;
    opacity: .8;
    transition: 0.2s ease all;
  }
  .menuNav .navItem a:hover span::after {
    border-right: 2px solid #138eeb;
    border-bottom: 2px solid #138eeb;
  }
}

@media screen and (max-width:767.98px) {
  .menuNav_inner {
    display: flex;
    flex-wrap: wrap;
  }
  .menuNav .navItem {
    font-size: 1.5rem;
  }
  .menuNav .navItem {
    width: calc(100% / 2);
  }
  .menuNav .navItem:nth-of-type(1) {
    width: 100%;
    border-bottom: 2px solid #fff;
  }
  .menuNav .navItem:last-of-type {
    border-left: 2px solid #fff;

  }
  /*.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;
  }
}
/*=====================*/

/*h2
=======================*/
h2 {
	margin: 0;
	text-align: center;
	font-size: 3.0rem;
  color: #138eeb;
}
h2 span {
	position: relative;
}
h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #138eeb;
	transform: translateY(-50%);
}
h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #138eeb;
	transform: translateY(-50%);
}
@media screen and (max-width:767.98px) {
  h2 {
    overflow: hidden;
  }
  h2 span {
    font-size: 2rem;
  }
  h2 span::before,
  h2 span::after {
    height: 1px;
    width: 350%;
  }
  h2 span::before {
    left: -370%;
  }
  h2 span::after {
    right: -370%;
  }
}
/*=====================*/

/*courseArea
=======================*/
.courseArea {
	margin-top: 100px;
	padding-top: 35px;
	background: #efefef;
}
.courseArea_inner {
	max-width: 1160px;
	margin: 0 auto;
}
.courseArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.courseArea h2 span {
	position: relative;
}
.courseArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.courseArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}

@media screen and (max-width:767.98px) {
	.courseArea {
		margin-top: 50px;
	}
  .courseArea_inner {
    padding-bottom: 40px;
  }
	.courseArea h2 {
		overflow: hidden;
	}
	.courseArea h2 span {
		font-size: 2rem;
	}
	.courseArea h2 span::before,
	.courseArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.courseArea h2 span::before {
		left: -370%;
	}
	.courseArea h2 span::after {
		right: -370%;
	}
}

/*---areaMenu---*/
.areaMenu {
	position: sticky;
	top: 0;
	margin-top: 30px;
	background: #d7d7d7;
	box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .1);
	z-index: 10;
}
.areaMenu ul {
	display: flex;
	max-width: 1160px;
	margin: 0 auto;
}
.areaMenu li {
	width: 100%;
	text-align: center;
}
.areaMenu li a {
	display: block;
	width: 100%;
	padding: 12px 0;
	color: #323232;
	font-size: 1.8rem;
}
.areaMenu li a span {
	position: relative;
	padding-left: 10px;
}
.areaMenu li a span::after {
	position: absolute;
	content: '';
	top: 45%;
	left: -8px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #323232;
	border-bottom: 2px solid #323232;
	transform: translateY(-45%) rotate(45deg);
}
@media (min-width: 768px) {
	.areaMenu li a {
		position: relative;
		overflow: hidden;
		transition: 0.2s ease all;
	}
	.areaMenu li a:hover {
		background: #fff;
		opacity: .8;
		transition: 0.2s ease all;
	}
}

@media screen and (max-width:767.98px) {
	.areaMenu ul {
		justify-content: center;
		flex-wrap: wrap;
		overflow: hidden;
	}
	.areaMenu li {
		justify-content: center;
		flex-wrap: wrap;
		width: calc(100% / 3);
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
	}
  .areaMenu li:first-of-type {
    border-left: none;
  }
  .areaMenu li:last-of-type {
    border-left: none;
    border-bottom: none;
    width: 100%;
  }
	.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: -13px;
    width: 8px;
    height: 8px;
		transform: translateY(-35%) rotate(45deg);
	}
}

/*---courseItemsBox---*/
.areaBlock {
	padding-bottom: 74px;
}
.areaBlock:first-of-type {
	margin-top: 52px;
}
.areaBlock h3 {
	margin: 0;
	padding: 10px 0;
	font-size: 2.4rem;
	text-align: center;
	background: #d7d7d7;
}
.courseItemsBox {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.courseItem {
  width: calc((100% - 32px) / 3);
  margin-right: 16px;
}
.courseItem:nth-of-type(3n) {
	margin-right: 0;
}
.courseItem:nth-of-type(n+4) {
	margin-top: 30px;
}
.courseItem a {
  display: block;
  border-radius: 5px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.course__card {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.course__card__tagBox {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 5;
}
.course__card__tagBox ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.course__card__tagBox ul li {
	margin: 0 10px 10px 0;
	padding: 3px 12px;
	color: #fff;
	font-size: 1.3rem;
	background: rgb(0 0 0 / .5);
	border-radius: 30px;
}
.course__card__img__caption {
  position: absolute;
	right: 12px;
  bottom: 9px;
  padding-left: 12px;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: rgba(0, 0, 0, .8) 1px 0 2px, rgba(0, 0, 0, .8) .5403px .84147px 2px, rgba(0, 0, 0, .8) -.41615px .9093px 2px, rgba(0, 0, 0, .8) -.98999px .14112px 2px, rgba(0, 0, 0, .8) -.65364px -.7568px 2px, rgba(0, 0, 0, .8) .28366px -.95892px 2px, rgba(0, 0, 0, .8) .96017px -.27942px 2px;
  text-align: right;
}
.course__card__body {
	padding: 18px 18px 15px;
	background: #fff;
}
.course__card__codeArea__box {
	display: flex;
}
.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;
  }
}
/*=====================*/

/*mapArea
=======================*/

.mapArea_inner {
  max-width: 1198px;
  height: 471px;
  margin: 0 auto;
}
.mapArea .mapArea_inner ul li a {
  font-size: 3.0rem;
  color: #fff;
  font-weight: 700;
  background-color: #138eeb;
  border: 3px solid #f97e2b;
  border-radius: 50px;
  padding: 5px 45px 5px 20px;
}
.mapArea .mapArea_inner ul li .no_course {
  background-color: #d7d7d7;
  border: 3px solid #6b6b6b;
  color: #6b6b6b;
  padding: 5px 20px 5px 20px;
  text-align: center;
  pointer-events: none;
}
.mapArea {
  background-image: repeating-linear-gradient(125deg, #dceefc, #dceefc 5px, #e5f2fd 5px, #e5f2fd 10px);
  width: 100%;
  height: auto;
  padding: 130px 0;
  position: relative; 
}
.mapArea::before,
.mapArea::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 217px; /* マスクの高さ */
  background-color: #fff; /* マスク画像の下に隠れる背景色 */
}
/* 上部のマスク */
.mapArea::before {
  top: 0;
  -webkit-mask-image: url('/med/feature/domestic/okinawa/img/wave_top.webp'); /* 上部のマスク画像 */
  mask-image: url('/med/feature/domestic/okinawa/img/wave_top.webp');
  -webkit-mask-size: cover;
  mask-size: cover;
}
/* 下部のマスク */
.mapArea::after {
  bottom: 0;
  -webkit-mask-image: url('/med/feature/domestic/okinawa/img/wave_btm.webp'); /* 下部のマスク画像 */
  mask-image: url('/med/feature/domestic/okinawa/img/wave_btm.webp');
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (max-width: 767.98px){
  .mapArea {
    padding: 50px 0; 
  }
  .mapArea::before,
  .mapArea::after {
    width: 100vw;
    height: 11vw;/* マスクの高さ */
  }
}
@media (max-width: 465px){
  .mapArea {
    padding: 30px 0; 
  }
}
@media (min-width: 768px) {
  .mapArea .mapArea_inner ul li a {
    position: relative;
  }
  .mapArea .mapArea_inner ul li a::before {
    position: absolute;
    content: '';
    top: 35%;
    right: 18px;
    width: 18px;
    height: 18px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateY(-35%) rotate(45deg);
  }
  .mapArea .mapArea_inner ul li .no_course::before {
    display: none;
  }
  .mapArea .mapArea_inner ul li a:hover {
    color: #f97e2b;
    transition: 0.2s ease all;
  }
  .mapArea .mapArea_inner ul li a:hover::before {
    border-right: 3px solid #f97e2b;
    border-bottom: 3px solid #f97e2b;
    transition: 0.2s ease all;
  }
  .mapArea_inner {
    position: relative;
  }
  .mapArea .mapArea_inner ul .map_other {
    position: absolute;
    top: 20%;
    left: 43%
  }
  .mapArea .mapArea_inner ul .map_miyako {
    position: absolute;
    top: 37%;
    left: 26%;
  }
  .mapArea .mapArea_inner ul .map_yaeyama {
    position: absolute;
    top: 47%;
    left: 0;
  }
  .mapArea .mapArea_inner ul .map_hontou {
    position: absolute;
    bottom: 23%;
    right: 16%;
  }
}

@media screen and (max-width:767.98px) {
  .mapArea_inner {
    width: 100%;
    height: auto;
  }
  .mapArea .mapArea_inner ul li a {
    font-size: 1.5rem;
    padding: 2px 10px;
    border-radius: 5px;
    border: 2px solid #f97e2b;
  }
  .mapArea .mapArea_inner ul li .no_course {
    font-size: 1.5rem;
    padding: 2px 10px;
    border-radius: 5px;
    border: 2px solid #6b6b6b;
  }
  .mapArea_inner form {
    display: inline-block;
    display: flex;
    justify-content: center;
    margin: 8px 0 15px;
  }
  .mapArea_inner select {
    font-family: ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
    background-color: #138eeb;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #f97e2b;
    width: 90%;
    padding: 5px 0;
  }
  .mapArea_inner form option {
    background: #fff;
    color: #333;
  }
  
}
@media screen and (max-width:767.98px) and (min-width:500px) {
  .mapArea_inner {
    position: relative;
  }
  .mapArea .mapArea_inner ul .map_other {
    position: absolute;
    top: 20%;
    left: 13%;
  }
  .mapArea .mapArea_inner ul .map_miyako {
    position: absolute;
    bottom: 23%;
    left: 46%;
  }
  .mapArea .mapArea_inner ul .map_yaeyama {
    position: absolute;
    bottom: 7%;
    left: 7%;
  }
  .mapArea .mapArea_inner ul .map_hontou {
    position: absolute;
    bottom: 38%;
    right: 9%;
  }
}
@media screen and (max-width:499px) {
  .mapArea_inner {
    position: relative;
  }
  .mapArea .mapArea_inner ul .map_other {
    position: absolute;
    top: 22%;
    left: 5%;
  }
  .mapArea .mapArea_inner ul .map_miyako {
    position: absolute;
    bottom: 20%;
    left: 46%;
  }
  .mapArea .mapArea_inner ul .map_yaeyama {
    position: absolute;
    bottom: 4%;
    left: 4%;
  }
  .mapArea .mapArea_inner ul .map_hontou {
    position: absolute;
    bottom: 36%;
    right: 7%;
  }
}
@media screen and (max-width:409px) {
  .mapArea .mapArea_inner ul .map_hontou {
    bottom: 34%;
    right: 5%;
  }
}
@media screen and (max-width:355px) {
  .mapArea .mapArea_inner ul .map_miyako {
    bottom: 18%;
  }
  .mapArea .mapArea_inner ul .map_hontou {
    bottom: 33%;
    right: 3%;
  }
  .mapArea .mapArea_inner ul li a {
    font-size: 1.3rem;
  }
}

/*=====================*/

/*eventArea
=======================*/
.eventArea {
  max-width: 1160px;
  margin: 0 auto;
}
.event_wrap {
  margin: 50px 0 80px;
}
.event_wrap .mori_box {
  background: url("/med/feature/domestic/okinawa/img/morinonigiwai_bg.webp") repeat-y;
  padding: 20px;
}
.event_wrap .junglia_box {
  background: url("/med/feature/domestic/okinawa/img/junglia_bg.webp") repeat-y;
  padding: 20px;
}
.event_wrap .junglia_box {
  margin-top: 40px;
}
.event_wrap div .eventinfo_wrap {
  display: flex;
  justify-content: center;
}

.event_wrap div .eventinfo_wrap .eventinfo_txt {
  width: 58%;
  color: #fff;
}
.event_wrap div .eventinfo_wrap .eventinfo_txt .eventinfo_lo {
  font-size: 1.5rem;
  display: inline-block;
  border: 1px solid #fff;
  padding: 0 10px;
}
.event_wrap div .eventinfo_wrap .eventinfo_txt .eventinfo_t {
  text-align: center;
}
.event_wrap .mori_box .eventinfo_wrap .eventinfo_txt .eventinfo_t {
  margin: 0 auto;
}
.event_wrap .junglia_box .eventinfo_wrap .eventinfo_txt .eventinfo_t {
  margin: 15px auto;
}
.event_wrap div .eventinfo_wrap .eventinfo_txt .eventinfo_t {
  margin: 0 auto;
  text-align: center;
}
.event_wrap div .eventinfo_wrap .eventinfo_txt .eventinfo_p {
  background-color: rgba(0,0,0,0.46);
  padding: 5px 8px;
}
.event_wrap div .eventinfo_wrap .eventinfo_img {
  width: 40%;
  margin-left: 20px;
}
.event_wrap div .eventinfo_wrap .eventinfo_img p {
  font-size: 1.2rem;
  color: #fff;
  text-align: right;
}
.event_wrap .courseItemsBox .noCourseTxt {
  color: #fff;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .eventArea {
    margin: 0 auto 120px;
  }
}
@media screen and (max-width:767.98px) {
  .event_wrap .mori_box {
    margin: 0 10px;
  }
  .event_wrap .junglia_box {
    margin: 20px 10px 0;
    padding: 10px;
  }
  .event_wrap .mori_box {
    padding: 10px;
  }
  .event_wrap div .eventinfo_wrap {
    flex-direction: column;
  }
  .event_wrap div .eventinfo_wrap .eventinfo_txt {
    width: 100%;
  }
  .event_wrap div .eventinfo_wrap .eventinfo_img {
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }
  .event_wrap div .eventinfo_wrap .eventinfo_txt .eventinfo_t {
    margin: 5px auto;
  }
  .event_wrap .mori_box .eventinfo_wrap .eventinfo_txt .eventinfo_t img {
    width: 60%;
  }
  .event_wrap div .eventinfo_wrap .eventinfo_txt .eventinfo_p {
    font-size: 1.2rem;
  }
  .event_wrap .courseItemsBox {
    padding: 0;
    margin-top: 10px;
  }
}
/*=====================*/

/*destinationArea
=======================*/
.destinationArea {
  background: #dceefc;
  width: 100%;
  height: auto;
  padding: 130px 0;
  position: relative; 
}
.destinationArea::before,
.destinationArea::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 217px; /* マスクの高さ */
  background-color: #fff; /* マスク画像の下に隠れる背景色 */
}
/* 上部のマスク */
.destinationArea::before {
  top: 0;
  -webkit-mask-image: url('/med/feature/domestic/okinawa/img/wave_top.webp'); /* 上部のマスク画像 */
  mask-image: url('/med/feature/domestic/okinawa/img/wave_top.webp');
  -webkit-mask-size: cover;
  mask-size: cover;
}
/* 下部のマスク */
.destinationArea::after {
  bottom: 0;
  -webkit-mask-image: url('/med/feature/domestic/okinawa/img/wave_btm.webp'); /* 下部のマスク画像 */
  mask-image: url('/med/feature/domestic/okinawa/img/wave_btm.webp');
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (max-width: 767.98px){
  .destinationArea {
    padding: 50px 0; 
  }
  .destinationArea::before,
  .destinationArea::after {
    width: 100vw;
    height: 11vw;/* マスクの高さ */
  }
}
@media (max-width: 465px){
  .destinationArea {
    padding: 30px 0; 
  }
}
.destinationArea .areaMenu {
  background: #138eeb;
  box-shadow: none;
}
.destinationArea .areaMenu li a {
  color: #fff;
  background-color: #138eeb;
  font-size: 1.8rem;
}
.destinationArea .areaMenu li a span::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.destinationArea .areaBlock {
  background-color: #fff;
  padding: 10px 20px 35px 20px;
  margin: 25px 0;
}
.destinationArea .areaBlock h3 {
  color: #fff;
  font-size: 3.5rem;
  text-stroke: 4px #138eeb;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: #138eeb;
  paint-order: stroke;
  letter-spacing: 2px;
  background: none;
}
.destinationArea .areaBlock .des_t {
  text-align: center;
  font-weight: 700;
  margin: 0 0 25px;
}
.destinationArea .areaBlock .courseBlock {
  margin: 10px 0;
}
.destinationArea .areaBlock .areablock_header {
  margin: 10px 0;
  padding: 3px 0;
	color: #138eeb;
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	border-top: 2px solid #138eeb;
	border-bottom: 2px solid #138eeb;
}
.destinationArea .areaBlock .courseBlock .courseItemsBox {
  margin: 30px 0;
}
.destinationArea .areaBlock .courseBlock .noCourseTxt {
  margin: 10px auto;
}

@media (min-width: 768px) {
  .destinationArea .areaMenu li a:hover {
    background: #ffffff80;
    opacity: .8;
    transition: 0.2s ease all;
  }
}
@media screen and (max-width:767.98px) {
  .destinationArea .areaMenu li a {
    font-size: 1.4rem;
    padding: 7px 0;
  }
  .destinationArea .areaBlock {
    padding: 10px 10px 20px 10px;
    margin: 10px 10px;
  }
  .destinationArea .areaBlock h3 {
    font-size: 1.8rem;
  }
  .destinationArea .areaBlock .des_t {
    font-size: 1.2rem;
  }
  .destinationArea .areaBlock .areablock_header {
    font-size: 1.4rem;
  }
  .destinationArea .areaMenu li:first-of-type a::after {
    background: none;
  }
  .destinationArea .areaBlock .courseBlock .courseItemsBox {
    padding: 0;
  }
}
/*=====================*/


/*selectdiv(pulldown)
=======================*/
/*.select_label {
  padding: 28px 0 0;
  font-weight: bold;
}*/
.selectdiv {
  position: relative;
  top: 0;
  max-width: 250px;
  width: 100%;
  margin: 40px auto 20px;
  transition: .2s ease all;
  z-index: 100;
}
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;
  pointer-events: none;
  z-index: 10;
}
.selectdiv::after {
  content: '';
  display: inline-block;
  padding: 0;
  position: absolute;
  pointer-events: none;
}
.selectdiv select {
  pointer-events: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 280px;
  height: 58px;
  margin: 5px auto;
  padding: 0 30px 0 20px;
  color: #232323;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  -ms-word-break: normal;
  word-break: normal;
  border: 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;
  pointer-events: none;
}
.selectdiv .decoration::before {
  top: 20px;
  transform: rotate(-135deg);
}
.selectdiv .decoration::after {
  top: 28px;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .selectdiv:hover select {
    border: 1px solid #cc0d21;
    transition: .2s ease all;
  }
}

@media screen and (max-width:767.98px) {
  .selectdiv {
    max-width: 205px;
    margin: 20px auto 10px;
  }
  .selectdiv select {
    height: 48px;
    padding: 4px 30px 0 20px;
    font-size: 1.5rem;
  }
  .selectdiv .decoration::before {
    top: 17px;
  }
  .selectdiv .decoration::after {
    top: 24px;
  }
  /*---iPhone only---*/
  .iPhone .selectdiv select {
    padding-top: 0;
  }
  /*-----------------*/
}
/*=====================*/


/*area_button
=======================*/
.area_button{
  text-align: center;
  margin: 40px 0;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.area_button .contents_wrap{
  justify-content: center;
  flex-wrap: wrap;
}
.area_button__titbox__fukidashi{
  position: relative;
  display: inline-block;
  border-bottom: solid 1px #cc0d20;
  padding: 5px 0;
  color: #cc0d20;
  font-weight: bold;
  font-size: 18px;
}
.area_button__titbox__fukidashi:before,
.area_button__titbox__fukidashi:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area_button__titbox__fukidashi:before {
  border: solid 9px transparent;
  border-top: solid 14px #cc0d20;
}
.area_button__titbox__fukidashi:after {
  border: solid 11px transparent;
  border-top: solid 17px #fff;
  margin-top: -5px;
}
.area_button__titbox__tit{
  font-size: 2.4rem;
  color: #333333;
  margin: 15px 5px;
}
.area_button__link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 760px;
}
.area_button__link li{
  width: 100%;
}
.area_button__link li a{
  text-align: center;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: bold;
  border: 2px solid #cc0d20;
  border-radius: 5px;
  padding: 10px 36px 9px 9px;
  width: 100%;
  color: #333333;
  box-shadow: 0 1px 1px 1px rgb(0 0 0 / 10%);
}
.area_button__link li a:before{
	display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #cc0d21;
  content: "";
  width: 27px;
}
.area_button__link li a:after{
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  top: calc(50% - 4px);
  right: 10px;
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
	.area_button {
		margin-top: 0;
	}
	.area_button__link li{
		max-width: 138px;
	}
	.area_button__link li a:hover{
		opacity: 0.7;
	}
}
@media screen and (max-width:767.98px) {
	.area_button__link {
		margin: 0 10px 0;
	}
  .area_button__link li a {
    padding: 10px 36px 9px 9px;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
}
/*=====================*/


/*pageTopBtn
=======================*/
.pageTopBtn {
	display: inline-block;
  width: 52px;
  /*left: calc(100vw - 5em);*/
	left: 93%;
	position: sticky;
	bottom: 30px;
	text-align: right;
	opacity: 0;
	z-index: 10;
}
.pageTopBtn_inner {
	margin: auto;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
	background: #138eeb;
  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: 58%;
  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 {
    opacity: 0.65;
    transition: .25s;
	}
}

@media screen and (max-width:767.98px) {
	.pageTopBtn a {
		width: 45px;
    height: 45px;
	}
	.pageTopBtn a:before {
		width: 16px;
    height: 16px;
	}
}
/*=====================*/


.slider.slick-initialized {
	display: block;
}

/*-----slider-----*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
  /*slick-initializedが付与されたら表示*/
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
/*----------------*/

/*=====================*/
.scroll-hint-icon{
  z-index: 5;
}


/*spot_slider
=======================*/
.spot_slider_item {
  margin: 0 5px;
}
.spot_slider_item .slider_txt {
  position: relative;
  background-color: #f7f7f7;
  padding: 20px 10px;
}
.spot_slider_item .slider_txt .slider_tit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 5px;
}
.spot_slider_item .slider_txt .slider_tit span {
  font-size: 1.3rem;
}
.spot_slider_item .slider_txt .slider_txt_c {
  position: absolute;
  right: 5px;
  bottom: 3px;
  text-align: right;
  font-size: 1.2rem;
}
@media screen and (max-width:767.98px) {
  .spot_slider_item {
    width: 225px;
  }
  .spot_slider_item .slider_txt {
    padding: 10px;
  }
  .spot_slider_item .slider_txt {
    font-size: 1.3rem;
  }
  .spot_slider_item .slider_txt .slider_tit {
    font-size: 1.3rem;
  }
  .spot_slider_item .slider_txt .slider_tit span {
    font-size: 1.2rem;
  }
  .spot_slider_item .slider_txt .slider_txt_c {
    font-size: 1.0rem;
  }

}

/*hontou_spot
=======================*/
/*---arrow---*/
@media screen and (min-width:768px) {
  .spot_slider_wrap {
    position: relative;
  }
  .spot_slider_wrap .slick-arrow {
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    content: ">";
    color: #fff;
    background-color: #138eeb;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
  }
  .spot_slider_wrap .slick-arrow::after {
    position: absolute; 
    top: 50%;
    content: "";
    width: 14px;
    height: 14px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    z-index: 5;
  }
  .spot_slider_wrap .prev-arrow {
    left: -3.5%;
  }
  .spot_slider_wrap .prev-arrow::after {
    left: 57%;
    transform: translate(-50%, -50%) rotate(-135deg);
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  }
  .spot_slider_wrap .next-arrow {
    right: -3.5%;
  }
  .spot_slider_wrap .next-arrow::after {
    left: 42%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }
}
/*-----------*/  
    
    
/* Dots */
.spotBlock01 .slick-dotted.slick-slider {
  margin: 30px 0;
}
.spot_slider_wrap {
  position: relative;
  width: 95%;
  margin: 0 auto;
}
.spotBlock01 .slick-dots {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -10%);
  display: flex;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.spotBlock01 .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.spotBlock01 .slick-dots li button {
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.spotBlock01 .slick-dots li button:before {
  font-family: 'slick';
  font-size: 40px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  /*content: '•';*/
	content: '\2022';
  text-align: center;
  color: #ccc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.spotBlock01 .slick-dots li.slick-active button:before {
  color: #138eeb;
}

@media screen and (min-width:768px) {
  .spotBlock01 .slick-dots li button:hover,
  .spotBlock01 .slick-dots li button:focus {
    outline: none;
  }

  .spotBlock01 .slick-dots li button:hover:before,
  .spotBlock01 .slick-dots li button:focus:before {
    opacity: 1;
  }
  .spotBlock01 .slick-dots li button:hover:before {
  color: #138eeb;
  opacity: 0.75;
  transition: .25s;
  }
}
@media screen and (max-width:767.98px) {
  .spot_slider_wrap {
    width: 100%;
  }
}
/*----------------*/

/*miyako_spot
=======================*/
/* Dots */
.spotBlock02 .slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.spot_slider_wrap02 {
  position: relative;
  width: 95%;
  margin: 0 auto;
}
.spotBlock02 .slick-dots {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -10%);
  display: flex;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.spotBlock02 .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.spotBlock02 .slick-dots li button {
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.spotBlock02 .slick-dots li button:before {
  font-family: 'slick';
  font-size: 40px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  /*content: '•';*/
	content: '\2022';
  text-align: center;
  color: #ccc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.spotBlock02 .slick-dots li.slick-active button:before {
  color: #138eeb;
}

@media screen and (min-width:768px) {
  .spotBlock02 .slick-dots li button:hover,
  .spotBlock02 .slick-dots li button:focus {
    outline: none;
  }

  .spotBlock02 .slick-dots li button:hover:before,
  .spotBlock02 .slick-dots li button:focus:before {
    opacity: 1;
  }
  .spotBlock02 .slick-dots li button:hover:before {
  color: #138eeb;
  opacity: 0.75;
  transition: .25s;
  }
}
/*----------------*/

/*yaeyama_spot
=======================*/
/* Dots */
.spotBlock03 .slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.spot_slider_wrap03 {
  position: relative;
  width: 95%;
  margin: 0 auto;
}
.spotBlock03 .slick-dots {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -10%);
  display: flex;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.spotBlock03 .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.spotBlock03 .slick-dots li button {
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.spotBlock03 .slick-dots li button:before {
  font-family: 'slick';
  font-size: 40px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  /*content: '•';*/
	content: '\2022';
  text-align: center;
  color: #ccc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.spotBlock03 .slick-dots li.slick-active button:before {
  color: #138eeb;
}

@media screen and (min-width:768px) {
  .spotBlock03 .slick-dots li button:hover,
  .spotBlock03 .slick-dots li button:focus {
    outline: none;
  }

  .spotBlock03 .slick-dots li button:hover:before,
  .spotBlock03 .slick-dots li button:focus:before {
    opacity: 1;
  }
  .spotBlock03 .slick-dots li button:hover:before {
  color: #138eeb;
  opacity: 0.75;
  transition: .25s;
  }
}
/*----------------*/

/*other_spot
=======================*/
/* Dots */
.spotBlock04 .slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.spot_slider_wrap04 {
  position: relative;
  width: 95%;
  margin: 0 auto;
}
.spotBlock04 .slick-dots {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -10%);
  display: flex;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.spotBlock04 .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.spotBlock04 .slick-dots li button {
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.spotBlock04 .slick-dots li button:before {
  font-family: 'slick';
  font-size: 40px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  /*content: '•';*/
	content: '\2022';
  text-align: center;
  color: #ccc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.spotBlock04 .slick-dots li.slick-active button:before {
  color: #138eeb;
}

@media screen and (min-width:768px) {
  .spotBlock04 .slick-dots li button:hover,
  .spotBlock04 .slick-dots li button:focus {
    outline: none;
  }

  .spotBlock04 .slick-dots li button:hover:before,
  .spotBlock04 .slick-dots li button:focus:before {
    opacity: 1;
  }
  .spotBlock04 .slick-dots li button:hover:before {
  color: #138eeb;
  opacity: 0.75;
  transition: .25s;
  }
}
/*----------------*/


/*stayArea
=======================*/
.stayArea .stay_txt {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  margin: 30px 0;
}
.stayArea .courseItemsBox {
  margin-top: 0;
}
@media screen and (max-width:767.98px) {
  .stayArea .stay_txt {
    font-size: 1.2rem;
  }
  .stayArea .areaBlock {
    padding-bottom: 20px;
  }
}

/*=====================*/
/*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;
    font-family:游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  }
  .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;
  }
}
/*=====================*/



/*おすすめコース
=======================*/

.recommendArea_inner {
  width: 1160px;
  margin: 0 auto;
}
